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:
parent
967426c8dc
commit
2dc1e4b78a
|
@ -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
|
||||
|
|
@ -0,0 +1 @@
|
|||
8
|
|
@ -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.
|
|
@ -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
|
||||
|
|
@ -0,0 +1 @@
|
|||
keyrings/openkylin-archive-keyring.gpg usr/share/keyrings/
|
|
@ -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
|
|
@ -0,0 +1,2 @@
|
|||
keyrings/openkylin-archive-keyring.gpg etc/apt/trusted.gpg.d/
|
||||
keyrings/openkylin-archive-keyring.gpg usr/share/keyrings/
|
|
@ -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
|
|
@ -0,0 +1 @@
|
|||
3.0 (quilt)
|
Loading…
Reference in New Issue