Initial commit

This commit is contained in:
Debian repository 2022-12-03 16:23:47 +01:00 committed by Benjamin Renard
commit 173aca68df
9 changed files with 64 additions and 0 deletions

4
.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
*~
trustdb.gpg
secring.gpg
zionetrix-archive-keyring.gpg

4
debian/.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
zionetrix-archive-keyring
*substvars
*debhelper.log
files

5
debian/changelog vendored Normal file
View File

@ -0,0 +1,5 @@
zionetrix-archive-keyring (1.0-1) stable; urgency=low
* Initial Debian release
-- Benjamin Renard <brenard@zionetrix.net> Sat, 03 Dec 2022 16:17:54 +0100

1
debian/compat vendored Normal file
View File

@ -0,0 +1 @@
7

17
debian/control vendored Normal file
View File

@ -0,0 +1,17 @@
Source: zionetrix-archive-keyring
Section: misc
Priority: optional
Build-Depends: debhelper
Maintainer: Benjamin Renard <brenard@zionetrix.net>
Package: zionetrix-archive-keyring
Architecture: all
Depends: gpgv
Recommends: gnupg
Breaks: apt (<< 0.7.25.1)
Section: misc
Priority: important
Multi-Arch: foreign
Description: GnuPG archive keys for the Debian Zionetrix packages repository
This package contains archive keys for apt of Debian Zionetrix packages
repository.

18
debian/copyright vendored Normal file
View File

@ -0,0 +1,18 @@
This package was debianized by Benjamin Renard <brenard@zionetrix.net>
on Sat, 03 Dec 2022 16:17:54 +0100.
Copyright:
zionetrix-archive-keyring is copyright (C) 2022 Zionetrix
This software is issued from GNU GENERAL PUBLIC LICENSE Version 2
License:
You can use it under GNU GENERAL PUBLIC LICENSE Version 2 policy
For more information on GNU GENERAL PUBLIC LICENSE Version 2 policy,
please refer to COPYING.
The Debian packaging is (C) 2022, Zionetrix and
is licensed under the GPL, see '/usr/share/common-licenses/GPL'.

1
debian/install vendored Normal file
View File

@ -0,0 +1 @@
zionetrix-archive-keyring.gpg /etc/apt/trusted.gpg.d

14
debian/rules vendored Executable file
View File

@ -0,0 +1,14 @@
#!/usr/bin/make -f
KEYRING=zionetrix-archive-keyring.gpg
%:
dh $@
$(KEYRING): public.key
gpg --homedir $(CURDIR) --no-default-keyring --keyring gnupg-ring:$(CURDIR)/$@ --import $<
override_dh_auto_build: $(KEYRING)
override_dh_auto_clean:
rm -f *.gpg *.gpg~

BIN
public.key Normal file

Binary file not shown.