commit 173aca68df238ad786dbaa4f3effdb035b79966f Author: Debian repository Date: Sat Dec 3 16:23:47 2022 +0100 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0df0228 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +*~ +trustdb.gpg +secring.gpg +zionetrix-archive-keyring.gpg diff --git a/debian/.gitignore b/debian/.gitignore new file mode 100644 index 0000000..cc53062 --- /dev/null +++ b/debian/.gitignore @@ -0,0 +1,4 @@ +zionetrix-archive-keyring +*substvars +*debhelper.log +files diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..84544ff --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +zionetrix-archive-keyring (1.0-1) stable; urgency=low + + * Initial Debian release + + -- Benjamin Renard Sat, 03 Dec 2022 16:17:54 +0100 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..7f8f011 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +7 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..f401eba --- /dev/null +++ b/debian/control @@ -0,0 +1,17 @@ +Source: zionetrix-archive-keyring +Section: misc +Priority: optional +Build-Depends: debhelper +Maintainer: Benjamin Renard + +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. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..394e90d --- /dev/null +++ b/debian/copyright @@ -0,0 +1,18 @@ +This package was debianized by Benjamin Renard +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'. diff --git a/debian/install b/debian/install new file mode 100644 index 0000000..7389048 --- /dev/null +++ b/debian/install @@ -0,0 +1 @@ +zionetrix-archive-keyring.gpg /etc/apt/trusted.gpg.d diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..f70394b --- /dev/null +++ b/debian/rules @@ -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~ diff --git a/public.key b/public.key new file mode 100644 index 0000000..809af86 Binary files /dev/null and b/public.key differ