Initial Release

This commit is contained in:
Jean-Jacques Brucker 2022-04-03 00:47:59 +02:00
commit e5e94541ce
10 changed files with 57 additions and 0 deletions

14
Makefile Normal file
View File

@ -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

2
README.md Normal file
View File

@ -0,0 +1,2 @@
OpenPGP certificates for astrobian repositories

View File

@ -0,0 +1 @@
usr/share/keyrings/*

View File

@ -0,0 +1 @@
etc/apt/trusted.gpg.d/*

6
debian/changelog vendored Normal file
View File

@ -0,0 +1,6 @@
astrobian-keyring (2022.04.02.astrobian) unstable; urgency=medium
* Initial Release
-- Jean-Jacques Brucker <jjbrucker@free.fr> Sat, 02 Apr 2022 23:56:50 +0200

1
debian/compat vendored Normal file
View File

@ -0,0 +1 @@
10

23
debian/control vendored Normal file
View File

@ -0,0 +1,23 @@
Source: astrobian-keyring
Section: misc
Priority: important
Maintainer: Jean-Jacques Brucker <jbar@librezo.fr>
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

6
debian/copyright vendored Normal file
View File

@ -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

3
debian/rules vendored Executable file
View File

@ -0,0 +1,3 @@
#!/usr/bin/make -f
%:
dh $@

Binary file not shown.