devuan-keyring

Devuan keyring package
git clone https://git.parazyd.org/devuan-keyring
Log | Files | Refs | README

commit 9399b69c515b393a0cec91eac57b307e3683946f
parent a10a9f16d89770b599a0efb7f377eb5fae1cfe8a
Author: nextime <nextime@nexlab.it>
Date:   Sat,  6 Dec 2014 05:19:43 +0100

Add debian package files

Diffstat:
Adebian/changelog | 5+++++
Adebian/compat | 1+
Adebian/control | 16++++++++++++++++
Adebian/copyright | 27+++++++++++++++++++++++++++
Adebian/postinst | 23+++++++++++++++++++++++
Adebian/rules | 11+++++++++++
Akeyrings/devuan-keyring.gpg | 0
Akeyrings/devuan-removed-keys.gpg | 0
8 files changed, 83 insertions(+), 0 deletions(-)

diff --git a/debian/changelog b/debian/changelog @@ -0,0 +1,5 @@ +deb-multimedia-keyring (2014.12.06-vua1) unstable; urgency=low + + * First packaging. + + -- Franco (nextime) Lanza <nextime@devuan.org> Sat, 6 Dec 2014 17:20:39 +0100 diff --git a/debian/compat b/debian/compat @@ -0,0 +1 @@ +7 diff --git a/debian/control b/debian/control @@ -0,0 +1,16 @@ +Source:devuan-keyring +Section: misc +Priority: extra +Maintainer: Franco (nextime) Lanza <nextime@devuan.org> +Bugs: mailto:nextime@devuan.org +Homepage: http://www.devuan.org +Standards-Version: 3.9.4 +Build-Depends: debhelper (>= 9) + +Package: devuan-keyring +Architecture: all +Multi-Arch: foreign +Depends: gnupg (>= 1.0.6-4), ${misc:Depends} +Description: GnuPG archive key of the devuan repository + The devuan repository digitally signs its Release files. This + package contains the repository key used for that. diff --git a/debian/copyright b/debian/copyright @@ -0,0 +1,27 @@ +This is Debian GNU's GnuPG keyrings of archive keys. + +This package was originally put together by Michael Vogt +<mvo@debian.org> + +The keys in the keyrings don't fall under any copyright. Everything +else in the package is covered by the GNU GPL. + +Debian support files Copyright (C) 2006 Michael Vogt <mvo@debian.org> +based on the debian-keyring package maintained by James Troup + +Debian support files for debian-archive-keyring are free software; you +can redistribute them and/or modify them under the terms of the GNU +General Public License as published by the Free Software Foundation; +either version 2, or (at your option) any later version. + +Debian support files for debian-archive-keyring are distributed in the +hope that they will be useful, but WITHOUT ANY WARRANTY; without even +the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR +PURPOSE. See the GNU General Public License for more details. + +You should have received a copy of the GNU General Public License with +your Debian system, in /usr/share/common-licenses/GPL, or with the +Debian GNU debian-archive-keyring source package as the file COPYING. +If not, write to the Free Software Foundation, Inc., 51 Franklin Street, +Fifth Floor, Boston, MA 02110-1301 USA. + diff --git a/debian/postinst b/debian/postinst @@ -0,0 +1,23 @@ +#!/bin/sh + +set -e + +case "$1" in + configure) + if [ -x /usr/bin/apt-key ]; then + apt-key add /usr/share/keyrings/devuan-keyring.gpg + fi + ;; + + abort-upgrade|abort-remove|abort-deconfigure) + ;; + + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +#DEBHELPER# + +exit 0 diff --git a/debian/rules b/debian/rules @@ -0,0 +1,11 @@ +#!/usr/bin/make -f + +%: + dh $@ + +override_dh_install: + dh_install keyrings/devuan-keyring.gpg usr/share/keyrings/ + dh_install keyrings/devuan-removed-keys.gpg usr/share/keyrings + +override_dh_builddeb: + dh_builddeb -- -Zxz diff --git a/keyrings/devuan-keyring.gpg b/keyrings/devuan-keyring.gpg Binary files differ. diff --git a/keyrings/devuan-removed-keys.gpg b/keyrings/devuan-removed-keys.gpg