From 71652b2ffa86fcf6caf727ac6c52848abc9a26f8 Mon Sep 17 00:00:00 2001 From: myon-guest Date: Sat, 21 May 2005 21:36:34 +0000 Subject: [PATCH] debian/ dir; Maintainer is N. N. so far git-svn-id: svn://svn.debian.org/pgp-tools/trunk@43 b513b33f-fedd-0310-b452-c3deb5f4c849 --- debian/changelog | 6 ++++++ debian/compat | 1 + debian/control | 21 +++++++++++++++++++ debian/copyright | 42 ++++++++++++++++++++++++++++++++++++++ debian/dirs | 2 ++ debian/docs | 2 ++ debian/install | 4 ++++ debian/rules | 52 ++++++++++++++++++++++++++++++++++++++++++++++++ 8 files changed, 130 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100644 debian/dirs create mode 100644 debian/docs create mode 100644 debian/install create mode 100755 debian/rules diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..28b7986 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,6 @@ +pgp-tools (0.0.20050521) unstable; urgency=low + + * First Debian upload. + + -- Christoph Berg Sat, 21 May 2005 23:34:45 +0200 + diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..b8626c4 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +4 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..bcdb8b1 --- /dev/null +++ b/debian/control @@ -0,0 +1,21 @@ +Source: pgp-tools +Section: utils +Priority: optional +Maintainer: N. N. +Uploaders: Peter Palfrader , Christoph Berg +Build-Depends: debhelper (>> 4.0.0) +Standards-Version: 3.6.1 + +Package: pgp-tools +Architecture: all +Depends: gnupg (>= 1.3.92), perl, libgnupg-interface-perl, libmime-perl, libmailtools-perl (>= 1.62), mailx +Recommends: libtext-iconv-perl | libintl-perl | recode +Description: tools for signing GnuPG keys + PGP Tools is a collection for all kinds of PGP related things, including + signing scripts, party preparation scripts, etc. + . + * caff: CA - Fire and Forget signs and mails a key + * gpgsigs: annotates list of GnuPG keys with already done signatures + * pgp-clean: removes all non-self signatures from key + . + http://pgp-tools.alioth.debian.org/ diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..623d451 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,42 @@ +This package was debianized by Christoph Berg on +Mon, 16 May 2005 17:16:30 +0200. + +Availability: + Homepage: + http://pgp-tools.alioth.debian.org/ + The package source is hosted in a subversion repository: + svn://svn.debian.org/pgp-tools/trunk/ + +Authors and Copyright: + (c) 2004, 2005 Peter Palfrader + (c) 2004 Uli Martens + (c) 2004, 2005 Christoph Berg + Other contributors: + Enrico Zini + Benjamin Hill + +License for caff and gpgsigs: + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + 3. The name of the author may not be used to endorse or promote products + derived from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR + IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES + OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. + IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, + INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT + NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF + THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + diff --git a/debian/dirs b/debian/dirs new file mode 100644 index 0000000..c40ea19 --- /dev/null +++ b/debian/dirs @@ -0,0 +1,2 @@ +usr/bin +usr/share/doc/pgp-tools/examples diff --git a/debian/docs b/debian/docs new file mode 100644 index 0000000..8612f56 --- /dev/null +++ b/debian/docs @@ -0,0 +1,2 @@ +caff/README +caff/THANKS diff --git a/debian/install b/debian/install new file mode 100644 index 0000000..558d90f --- /dev/null +++ b/debian/install @@ -0,0 +1,4 @@ +caff/caff usr/bin +caff/pgp-clean usr/bin +caff/caffrc.sample usr/share/doc/pgp-tools/examples +gpgsigs/gpgsigs usr/bin diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..92a87ae --- /dev/null +++ b/debian/rules @@ -0,0 +1,52 @@ +#!/usr/bin/make -f + +configure: configure-stamp +configure-stamp: + dh_testdir + touch $@ + +build: build-stamp +build-stamp: configure-stamp + dh_testdir + $(MAKE) -C caff + $(MAKE) -C gpgsigs + touch $@ + +clean: + dh_testdir + dh_testroot + $(MAKE) -C caff clean + $(MAKE) -C gpgsigs clean + rm -f build-stamp configure-stamp + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + dh_install + dh_installman caff/*.1 gpgsigs/gpgsigs.1 + +binary-indep: build install + dh_testdir + dh_testroot + dh_installdocs + dh_installexamples + dh_installmenu + dh_installcron + dh_installinfo + dh_installchangelogs + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +# Build architecture-dependent files here. +binary-arch: build install + +binary: binary-indep +.PHONY: build clean binary-indep binary-arch binary install configure -- 2.30.2