Import Debian changes 2022.05.12-ok1

openkylin-keyring (2022.05.12-ok1) yangtze; urgency=medium

  * Initial release with the openKylin Archive Signing Key in
    the openkylin-archive-keyring
This commit is contained in:
Xie Wei 2022-05-31 15:11:17 +08:00 committed by 谢炜
parent 967426c8dc
commit 2dc1e4b78a
9 changed files with 70 additions and 0 deletions

7
debian/changelog vendored Executable file
View File

@ -0,0 +1,7 @@
openkylin-keyring (2022.05.12-ok1) yangtze; urgency=medium
* Initial release with the openKylin Archive Signing Key in
the openkylin-archive-keyring
-- Xie Wei <xiewei@kylinos.cn> Tue, 31 May 2022 15:11:17 +0800

1
debian/compat vendored Normal file
View File

@ -0,0 +1 @@
8

23
debian/control vendored Executable file
View File

@ -0,0 +1,23 @@
Source: openkylin-keyring
Section: misc
Priority: optional
Maintainer: openKylin Infrastructure <infrastructure@lists.openkylin.top>
Standards-Version: 3.8.3
Build-Depends: debhelper
Package: openkylin-keyring
Priority: important
Architecture: all
Multi-Arch: foreign
Description: GnuPG keys of the openKylin archive
The openKylin project digitally signs its Release files. This package
contains the archive keys used for that.
Package: openkylin-keyring-udeb
Priority: optional
Architecture: all
Section: debian-installer
Description: GnuPG keys of the openKylin archive
The openKylin project digitally signs its Release files. This package
contains the archive keys used for that, in a minimal form for use
in the installer.

8
debian/copyright vendored Executable file
View File

@ -0,0 +1,8 @@
This is openKylin Linux's GnuPG keyrings of archive keys.
This package was originally put together by openKylin community
Files: *
Copyright: Copyright©2022 openKylin
License: Proprietary

1
debian/openkylin-keyring-udeb.install vendored Normal file
View File

@ -0,0 +1 @@
keyrings/openkylin-archive-keyring.gpg usr/share/keyrings/

6
debian/openkylin-keyring-udeb.postinst vendored Executable file
View File

@ -0,0 +1,6 @@
#!/bin/sh
set -e
DIR=/usr/share/keyrings
if [ ! -e $DIR/archive.gpg ]; then
ln -s openkylin-archive-keyring.gpg $DIR/archive.gpg
fi

2
debian/openkylin-keyring.install vendored Normal file
View File

@ -0,0 +1,2 @@
keyrings/openkylin-archive-keyring.gpg etc/apt/trusted.gpg.d/
keyrings/openkylin-archive-keyring.gpg usr/share/keyrings/

21
debian/rules vendored Executable file
View File

@ -0,0 +1,21 @@
#!/usr/bin/make -f
%:
dh $@
binary: checkkeyrings
build:
gpg --homedir .gnupg --import keyrings/*
checkkeyrings:
gpg --homedir .gnupg --list-keys
override_dh_installdeb:
dh_installdeb
# currently all keyring snippets are _not_ conffiles, keep it that way.
rm -f debian/*/DEBIAN/conffiles
override_dh_clean:
rm -rf .gnupg verified current
dh_clean

1
debian/source/format vendored Normal file
View File

@ -0,0 +1 @@
3.0 (quilt)