From e1e0f2b76af6be541034a63afc89a536d7fb1ca3 Mon Sep 17 00:00:00 2001 From: Alexander Wirt Date: Sun, 10 Jun 2007 10:24:54 +0200 Subject: [PATCH 1/1] Initial import --- changelog | 5 +++ debian/changelog | 6 ++++ debian/control | 13 ++++++++ debian/copyright | 28 ++++++++++++++++ debian/files | 1 + debian/postinst | 5 +++ debian/prerm | 9 +++++ debian/rules | 61 ++++++++++++++++++++++++++++++++++ keyrings/grml-debian-keyring.gpg | Bin 0 -> 1346 bytes keyrings/grml-debian-removed-keys.gpg | 0 md5sums.txt | 12 +++++++ 11 files changed, 140 insertions(+) create mode 100644 changelog create mode 100644 debian/changelog create mode 100644 debian/control create mode 100644 debian/copyright create mode 100644 debian/files create mode 100644 debian/postinst create mode 100644 debian/prerm create mode 100755 debian/rules create mode 100644 keyrings/grml-debian-keyring.gpg create mode 100644 keyrings/grml-debian-removed-keys.gpg create mode 100644 md5sums.txt diff --git a/changelog b/changelog new file mode 100644 index 0000000..0a42d85 --- /dev/null +++ b/changelog @@ -0,0 +1,5 @@ +grml-debian-keyring (2007.06.10) unstable; urgency=low + + * Initial release + + -- Alexander Wirt Sun, 10 Jun 2007 09:51:21 +0200 diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..0a34337 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,6 @@ +grml-debian-keyring (2007.06.10) grml-testing; urgency=low + + * Initial release + + -- Alexander Wirt Sun, 10 Jun 2007 09:52:22 +0200 + diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..6d235c6 --- /dev/null +++ b/debian/control @@ -0,0 +1,13 @@ +Source:grml-debian-keyring +Section: misc +Maintainer: Alexander Wirt +Bugs: mailto:formorer@grml.org +Standards-Version: 3.7.2 + +Package: grml-debian-keyring +Priority: important +Architecture: all +Depends: gnupg (>= 1.0.6-4) +Description: GnuPG archive key of the grml.org repository + The GRML repository digitally signs its Release files. This package + contains the repository key used for that. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..f16ae89 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,28 @@ +This is Debian GNU's GnuPG keyrings of archive keys. + +This package was originally put together by Michael Vogt + and has been adapted to grml.org by +Alexander Wirt . + +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 +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/files b/debian/files new file mode 100644 index 0000000..aff0160 --- /dev/null +++ b/debian/files @@ -0,0 +1 @@ +grml-debian-keyring_2007.06.10_all.deb misc important diff --git a/debian/postinst b/debian/postinst new file mode 100644 index 0000000..0cf3538 --- /dev/null +++ b/debian/postinst @@ -0,0 +1,5 @@ +#!/bin/sh + +if [ -x /usr/bin/apt-key ]; then + /usr/bin/apt-key add /usr/share/keyrings/grml-debian-keyring.gpg +fi diff --git a/debian/prerm b/debian/prerm new file mode 100644 index 0000000..58d0844 --- /dev/null +++ b/debian/prerm @@ -0,0 +1,9 @@ +#!/bin/sh + +case "$1" in + remove|purge) + if [ -x /usr/bin/apt-key ]; then + /usr/bin/apt-key del ECDEA787 + fi + ;; +esac diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..a53dd37 --- /dev/null +++ b/debian/rules @@ -0,0 +1,61 @@ +#!/usr/bin/make -f +# debian/rules file - for debian/keyring +# Based on sample debian/rules file - for GNU Hello (1.3). +# Copyright 1994,1995 by Ian Jackson. +# Copyright 1998-2003 James Troup +# I hereby give you perpetual unlimited permission to copy, +# modify and relicense this file, provided that you do not remove +# my name from the file itself. (I assert my moral right of +# paternity under the Copyright, Designs and Patents Act 1988.) +# This file may have to be extensively modified + +install_dir=install -d -m 755 +install_file=install -m 644 +install_script=install -m 755 +install_binary=install -m 755 -s + +VERSION := $(shell dpkg-parsechangelog | grep ^Version: | cut -d' ' -f2) + +build: + +clean: + $(checkdir) + -rm -f foo foo.asc *.bak *~ */*~ debian/files* debian/*substvars + -rm -rf debian/tmp + +binary-indep: checkroot + $(checkdir) + -rm -rf debian/tmp + $(install_dir) debian/tmp/DEBIAN/ + $(install_script) debian/postinst debian/tmp/DEBIAN/ + $(install_script) debian/prerm debian/tmp/DEBIAN/ + + $(install_dir) debian/tmp/usr/share/keyrings/ + $(install_file) keyrings/grml-debian-keyring.gpg debian/tmp/usr/share/keyrings/ + $(install_file) keyrings/grml-debian-removed-keys.gpg debian/tmp/usr/share/keyrings/ + + $(install_dir) debian/tmp/usr/share/doc/grml-debian-keyring/ + $(install_file) debian/changelog debian/tmp/usr/share/doc/grml-debian-keyring/changelog + $(install_file) debian/copyright debian/tmp/usr/share/doc/grml-debian-keyring/ + + dpkg-gencontrol -pgrml-debian-keyring -isp + chown -R root.root debian/tmp + chmod -R go=rX debian/tmp + dpkg --build debian/tmp .. + +binary-arch: + +define checkdir + test -f keyrings/grml-debian-keyring.gpg + test -f keyrings/grml-debian-removed-keys.gpg +endef + +# Below here is fairly generic really + +binary: binary-indep binary-arch + +checkroot: + $(checkdir) + test root = "`whoami`" + +.PHONY: binary binary-arch binary-indep clean checkroot diff --git a/keyrings/grml-debian-keyring.gpg b/keyrings/grml-debian-keyring.gpg new file mode 100644 index 0000000000000000000000000000000000000000..95e99450ef97188ff5a264ead566c655e8298454 GIT binary patch literal 1346 zcmV-I1-<&20ipy&U}WqO1OR{)M9_W{$^$0D-6e7>=xCEN=O*TJA}ys8{G#5B^rl~s z0|Q*v9*iTwXdkqAaI6b*LZ$wiu;j4b;*82+1q{C%V4&;2K%d!hR>}1{>J(1&JF8=l3BRStO9)Q>Zp9-&(1JyN3Xvnb0%{h=MC& zQ~vZj0vD;!4sK|X1O6-sE1zfUSMqqTc0^`kCNpd0+1;b0IL|vd#EPqf^k!%+4X=du zO(F*Y{t+4?eY3krFV_xsxsEDigMxy5faF)B>8y7am6eUW4CYcQybC^Ub3q{AY@9d6 zf-%MK{kTBA#f#E-kVI5n{-a^Jj*!|aHu^@?@O;zj81FQg76JqQEWWgrL7(*NBxjX> z!d5OvnU6`F7FQs0wGaqtr5RO6!WL8~9l{VPacTl@C40#=Y zOko`)l6|KKqKFJUi^AJq01ea0kHi{&D!xsbBJr^%Rj@^0+Yxi)v`$A-O-vv`a${&|c4Z(zb#!lSVRUI@AX8~)ZfS03AWLO=ASh^b zbZ|N^FL!r$E@yIWY%XtdXD=xrJZ5xoZDDhCWpY4ga&2rbZ*pfoh+qU05dr`p1p-B2 zWb6VP0|pBT2nPcK1Qh}Z0|XWV0|5da0Rk6*0162Z_8u;L?B1t`hkO8@I)p=~4P^oH zNw2{J)WXbAwHZ-K+YMzF-)`eJmS!cbS_CwJHWKm!o}lTUUV&3f@+V{UzdoF^A*|9COfTEKOF~H0{XRBO-(z{odU~2 zvhW5<;xml_ z^02dT9I+?lBTit!p$KJZYwU1~x7!APh~j4dFipoQXl*)|=D9s$B}FjBF{{x4M2+}% zpEy$D%)uB}6elyqaPCdQqn{QFCKBBvz6v77M*sr{2mg1L1*Q4k$?iirz#Xh(^E3#bd4MNk1KEp;VuKvnc z$NkBt9A4x42&bHapf_cU;WDxY|0}v4 E91zo3&Hw-a literal 0 HcmV?d00001 diff --git a/keyrings/grml-debian-removed-keys.gpg b/keyrings/grml-debian-removed-keys.gpg new file mode 100644 index 0000000..e69de29 diff --git a/md5sums.txt b/md5sums.txt new file mode 100644 index 0000000..04dc613 --- /dev/null +++ b/md5sums.txt @@ -0,0 +1,12 @@ +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA1 + +24c87ef79563fad1f32d7356172ff890 keyrings/grml-debian-keyring.gpg +d41d8cd98f00b204e9800998ecf8427e keyrings/grml-debian-removed-keys.gpg +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.4.6 (GNU/Linux) + +iD8DBQFGa7P201u8mbx9AgoRAoNDAJoDiNoi08MX6tb7oVCefT9X8t+3/wCfYTA6 +iIQHDhQf3+cZzYeS76OEmSA= +=QZ3s +-----END PGP SIGNATURE----- -- 2.1.4