commit e5e94541ce63fca8f9a7e67bf7a8189af3138396 Author: Jean-Jacques Brucker Date: Sun Apr 3 00:47:59 2022 +0200 Initial Release diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..0102dd2 --- /dev/null +++ b/Makefile @@ -0,0 +1,14 @@ + +build: + true + +clean: + true + +install: + install -d $(DESTDIR)/etc/apt/trusted.gpg.d/ + cp $(shell find trusted.gpg.d/ -name '*.gpg' -type f) $(DESTDIR)/etc/apt/trusted.gpg.d/ + install -d $(DESTDIR)/usr/share/keyrings/ + cp $(DESTDIR)/etc/apt/trusted.gpg.d/* $(DESTDIR)/usr/share/keyrings/ + +.PHONY: install diff --git a/README.md b/README.md new file mode 100644 index 0000000..643a4a4 --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ + +OpenPGP certificates for astrobian repositories diff --git a/debian/astrobian-archive-keyring-udeb.install b/debian/astrobian-archive-keyring-udeb.install new file mode 100644 index 0000000..a068a88 --- /dev/null +++ b/debian/astrobian-archive-keyring-udeb.install @@ -0,0 +1 @@ +usr/share/keyrings/* diff --git a/debian/astrobian-archive-keyring.install b/debian/astrobian-archive-keyring.install new file mode 100644 index 0000000..9a70dcf --- /dev/null +++ b/debian/astrobian-archive-keyring.install @@ -0,0 +1 @@ +etc/apt/trusted.gpg.d/* diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..f2a7d54 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,6 @@ +astrobian-keyring (2022.04.02.astrobian) unstable; urgency=medium + + * Initial Release + + -- Jean-Jacques Brucker Sat, 02 Apr 2022 23:56:50 +0200 + diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..f599e28 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +10 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..f450824 --- /dev/null +++ b/debian/control @@ -0,0 +1,23 @@ +Source: astrobian-keyring +Section: misc +Priority: important +Maintainer: Jean-Jacques Brucker +Build-Depends: debhelper (>= 7) +Standards-Version: 3.9.8 + +Package: astrobian-archive-keyring +Architecture: all +Provides: debian-archive-keyring +Replaces: debian-archive-keyring +Description: GnuPG certificates of the Astrobian repository + This package contains the keys use by apt to verify the repository + +Package: astrobian-archive-keyring-udeb +XC-Package-Type: udeb +Priority: optional +Architecture: all +Section: debian-installer +Depends: ${misc:Depends} +Recommends: gpgv-udeb +Description: GnuPG certificates of the Astrobian repository + This package contains the keys use by apt to verify the repository diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..f868f51 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,6 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: astrobian-keyring + +Files: * +Copyright: 2022 Librezo +License: GPL-3 diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..cbe925d --- /dev/null +++ b/debian/rules @@ -0,0 +1,3 @@ +#!/usr/bin/make -f +%: + dh $@ diff --git a/trusted.gpg.d/astrobian-unstable.gpg b/trusted.gpg.d/astrobian-unstable.gpg new file mode 100644 index 0000000..62b67cb Binary files /dev/null and b/trusted.gpg.d/astrobian-unstable.gpg differ