tAdd debian package files - devuan-keyring - Devuan keyring package HTML git clone https://git.parazyd.org/devuan-keyring DIR Log DIR Files DIR Refs DIR README --- DIR commit 9399b69c515b393a0cec91eac57b307e3683946f DIR parent a10a9f16d89770b599a0efb7f377eb5fae1cfe8a HTML Author: nextime <nextime@nexlab.it> Date: Sat, 6 Dec 2014 05:19:43 +0100 Add debian package files Diffstat: A debian/changelog | 5 +++++ A debian/compat | 1 + A debian/control | 16 ++++++++++++++++ A debian/copyright | 27 +++++++++++++++++++++++++++ A debian/postinst | 23 +++++++++++++++++++++++ A debian/rules | 11 +++++++++++ A keyrings/devuan-keyring.gpg | 0 A keyrings/devuan-removed-keys.gpg | 0 8 files changed, 83 insertions(+), 0 deletions(-) --- DIR diff --git a/debian/changelog b/debian/changelog t@@ -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 DIR diff --git a/debian/compat b/debian/compat t@@ -0,0 +1 @@ +7 DIR diff --git a/debian/control b/debian/control t@@ -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. DIR diff --git a/debian/copyright b/debian/copyright t@@ -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. + DIR diff --git a/debian/postinst b/debian/postinst t@@ -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 DIR diff --git a/debian/rules b/debian/rules t@@ -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 DIR diff --git a/keyrings/devuan-keyring.gpg b/keyrings/devuan-keyring.gpg Binary files differ. DIR diff --git a/keyrings/devuan-removed-keys.gpg b/keyrings/devuan-removed-keys.gpg