--- pgpgpg-0.13.orig/configure +++ pgpgpg-0.13/configure @@ -1244,7 +1244,8 @@ exit 1 fi - if test ! -x "$withval"; then +# if test ! -x "$withval"; then + if false; then echo '****' echo '**** Can'"'"'t execute programm supplied by "--with-gpg-path"!' echo '****' @@ -1281,7 +1282,7 @@ fi done IFS="$ac_save_ifs" - test -z "$ac_cv_path_path_to_gpg" && ac_cv_path_path_to_gpg="no" +# test -z "$ac_cv_path_path_to_gpg" && ac_cv_path_path_to_gpg="no" ;; esac fi --- pgpgpg-0.13.orig/debian/changelog +++ pgpgpg-0.13/debian/changelog @@ -0,0 +1,81 @@ +pgpgpg (0.13-9.1) unstable; urgency=medium + + * Non-maintainer upload. + * Migrated DH level to 9 to avoid a FTBFS. Thanks to Logan Rosen + . (Closes: #800201) + * debian/compat: added. + * debian/control: + - Added the ${misc:Depends} variable to provide the right install + dependencies. + - Bumped Standards-Version to 3.9.6. + * debian/rules: + - Added the --no-ddebs option to dh_strip to avoid the dbgsym + creation. It would be a NEW binary (pgpgpg-dbgsym). + - Changed the binary-arch target to install files in right place. + Thanks to Logan Rosen . (Closes: #800201) + - Some actions to allow the package build twice: + ~ Added a condition to execute '$(MAKE) distclean'. + ~ Using dh_clean to clean the debian/ directory. + * debian/watch: added. + + -- Joao Eriberto Mota Filho Sat, 26 Dec 2015 01:13:27 -0200 + +pgpgpg (0.13-9) unstable; urgency=low + + * Updated debian/rules to contain binary-indep, per policy (closes: #395732) + + -- PaweÅ‚ WiÄ™cek Wed, 14 Feb 2007 21:56:09 +0100 + +pgpgpg (0.13-8) unstable; urgency=low + + * Added Replaces: pgp (closes: #238095) + + -- Pawel Wiecek Wed, 24 Mar 2004 20:50:30 +0100 + +pgpgpg (0.13-7) unstable; urgency=low + + * Added conflict with pgp (closes: #236195) + + -- Pawel Wiecek Thu, 4 Mar 2004 23:07:23 +0100 + +pgpgpg (0.13-6) unstable; urgency=low + + * Reuploaded, this time with .orig.tar.gz that was missing in 0.13-5 upload + + -- Pawel Wiecek Tue, 20 Jan 2004 09:51:34 +0100 + +pgpgpg (0.13-5) unstable; urgency=low + + * Moved from non-US to main + + -- Pawel Wiecek Mon, 19 Jan 2004 22:31:12 +0100 + +pgpgpg (0.13-4) unstable; urgency=low + + * Added manpage from Javier Fernandez-Sanguino Pena + (closes: #222405) + * Removed gpg-idea from suggested packages (closes: #196895) + * Updated standards-version (no changes required) + + -- Pawel Wiecek Wed, 14 Jan 2004 22:33:28 +0100 + +pgpgpg (0.13-3) unstable; urgency=low + + * New maintainer (closes: #135542) + * Upgraded to current standards version + * Fixed a typo in description (closes: #125233) + + -- Pawel Wiecek Tue, 9 Apr 2002 11:25:36 +0200 + +pgpgpg (0.13-2) unstable; urgency=low + + * Now the package can be built even if gnupg is not installed + (Closes: #78303, #81806). + + -- Marco d'Itri Wed, 14 Feb 2001 22:10:18 +0100 + +pgpgpg (0.13-1) unstable; urgency=low + + * First Release. + + -- Marco d'Itri Wed, 8 Nov 2000 11:42:15 +0100 --- pgpgpg-0.13.orig/debian/compat +++ pgpgpg-0.13/debian/compat @@ -0,0 +1 @@ +9 --- pgpgpg-0.13.orig/debian/control +++ pgpgpg-0.13/debian/control @@ -0,0 +1,17 @@ +Source: pgpgpg +Section: utils +Priority: optional +Maintainer: PaweÅ‚ WiÄ™cek +Build-Depends: debhelper (>= 9) +Standards-Version: 3.9.6 + +Package: pgpgpg +Architecture: any +Depends: ${misc:Depends}, ${shlibs:Depends}, gnupg +Conflicts: pgp +Provides: pgp +Replaces: pgp +Description: Wrapper for using GnuPG in programs designed for PGP + Pgpgpg is a wrapper around Gnu Privacy Guard which takes PGP 2.6 + command line options, translate them and then call GnuPG (Gnu Privacy + Guard) to perform the desired action. --- pgpgpg-0.13.orig/debian/copyright +++ pgpgpg-0.13/debian/copyright @@ -0,0 +1,10 @@ +This package was originally debianized by Marco d'Itri +on Mon Nov 13 13:42:12 CET 2000. + +Original source has been downloaded from http://www.nessie.de/mroth/pgpgpg/ + +Copyright (C) 1999 Michael Roth + +A copy of the GNU General Public License, version 2, can be found in +/usr/share/common-licenses/GPL . + --- pgpgpg-0.13.orig/debian/postinst +++ pgpgpg-0.13/debian/postinst @@ -0,0 +1,6 @@ +#!/bin/sh -e + +update-alternatives --install /usr/bin/pgp pgp /usr/bin/pgpgpg 20 + +#DEBHELPER# + --- pgpgpg-0.13.orig/debian/prerm +++ pgpgpg-0.13/debian/prerm @@ -0,0 +1,6 @@ +#!/bin/sh -e + +update-alternatives --remove pgp /usr/bin/pgpgpg + +#DEBHELPER# + --- pgpgpg-0.13.orig/debian/rules +++ pgpgpg-0.13/debian/rules @@ -0,0 +1,50 @@ +#!/usr/bin/make -f + +# Rather paranoid than sorry. Make the shell exit with an error if an +# untested command fails. +SHELL+= -e + +#export DH_VERBOSE=1 + +build: + $(checkdir) + ./configure --prefix=/usr --with-gpg-path=/usr/bin/gpg + $(MAKE) + touch build + +clean: checkroot + $(checkdir) + -rm -f build + -if [ -e Makefile ]; then $(MAKE) distclean; fi +# -cd debian && rm -rf tmp files* substvars *debhelper + dh_clean + +binary-indep: checkroot build +# We have nothing to do + +binary-arch: checkroot build + $(checkdir) + -rm -rf debian/tmp + $(MAKE) DESTDIR=`pwd`/debian/pgpgpg install + + dh_installdocs README BUGS TODO + dh_installchangelogs NEWS + dh_installman pgpgpg.1 + dh_strip --no-ddebs + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_builddeb + +define checkdir + test -f debian/rules +endef + +binary: binary-arch + +checkroot: + test root = "`whoami`" + +.PHONY: binary binary-arch binary-indep clean checkroot --- pgpgpg-0.13.orig/debian/watch +++ pgpgpg-0.13/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://mroth.net/pgpgpg/pgpgpg-(\d\S+)\.tar\.(?:bz2|gz|xz) --- pgpgpg-0.13.orig/pgpgpg.1 +++ pgpgpg-0.13/pgpgpg.1 @@ -0,0 +1,124 @@ +.TH PGP 1 "PGPGPG Version 0.13" +.\" NAME should be all caps, SECTION should be 1-8, maybe w/ subsection +.\" other parms are allowed: see man(7), man(1) +.SH NAME +pgpgpg \- wrapper around Gnu Privacy Guard that takes Pretty Good Privacy +command line options +.SH SYNOPSIS +.B pgpgpg \fR[\fIoptions\fR] \fIpgpfile +.PP +.B pgpgpg \-e \fR[\fIoptions\fR] \fIfile user\fR .\|.\|. +.PP +.SH DESCRIPTION + +.B PGPGPG +is a wrapper that allows calls to +.B GnuPG +(Gnu Privacy Guard) using the command line options of +.PGP +(Pretty Good Privacy). \fBPGP\fR and \fBGnuPG\fR are encryption programms +with high security encryption engines. However, \fBPGP\fR is available +without a fee but is not realy free software. \fBGnuPG\fR on the +other hand is realy free software and has additionally features but +with a different command line syntax than PGP. + +The goal of \fBpgpgpg\fR is to plug in a command line syntax in front of +\fBGnuPG\fR equal to \fBPGP\fR 2.6. + +.SH OPTIONS +The following options are supported by \fBpgpgpg\fR notice that long +options do not use the usual GNU syntax (--) but, instead are of the +form \fB+option[=value]\fR. +.PP +.IP "-e" +Encrypt a plaintext file. +.IP "-d, -p" +Decrypt a plaintext file. +.IP "-s" +Sign a plaintext file. +.br +.B pgpgpg -s file [-u userid] +.IP "-sb" +Create a separate signature certificate (a \fB.sig\fR file) for a given +file. +.br +.B pgpgpg -sb file [-u userid] +.IP "-c" +Use convential cryptography when encrypting. +.IP "-o" +Output to the file specified. Should only be used for encryption, +decryption and signature operations (not for key management). +.IP "-a, +armor" +ASCII armor the output file. +.IP "-u, +myname" +Select the userid to use for some operations. +.IP "-kg" +Generate a unique public/secret pair. +.IP "-ka" +Add a public or secret key to your key ring. +.br +.B pgpgpg -ka keyfile [keyring] +.IP "-kx" +Extract a copy from your public or secret keyring. +.br +.B pgpgpg -kx[a] userid keyfile [keyring] +.IP "-kv" +View the contents of your keyring. +.br +.B pgpgpg -kv[v] [userid] [keyring] +.IP "-kvc" +View a key fingerprint. +.br +.B pgpgpg -kvc [userid] [keyring] +.IP "-kr" +Remove a key from your keyring. +.br +.B pgpgpg -kr userid [keyring] +.IP "-kd" +If acting on your secret key, permanently revoke a key and issue +a compromise certificate. +If acting on a public key, disable or reenable a key. +.br +.B pgpgpg -kd userid +.IP "-ke" +Edit trust parameters for a public key or edit the +pass phrase or add a userid to a secret key. +.br +.B pgpgpg -ke userid [keyring] +.IP "-kc" +View the contents and check the certifying signatures of your public key ring. +.br +.B pgpgpg -kc [userid] [keyring] +.IP "-ks" +Sign and certify someone's public key. +.br +.B pgpgpg -ks userid [-u userid] [keyring] + +.PP +The following options are ignored or unsupported: +\fB++armorlines\fR, \fB+autosign\fR, \fB+bakring\fR, +\fB+interactive\fR, \fB+keepbinary\fR, \fB+language\fR, +\fB+legal_kludge\fR, \fB+nomanual\fR, \fB+pager\fR, \fB+randseed\fR, +\fB+tmp\fR and \fB+tzfix\fR. + +.SH BUGS +.B PGPGPG +does not currently provide an online help (\fB-h\fR or \fB-?\fR) +and will not show a summary of commands, as PGP does, when typing: +.br +.B pgp -k + +The following options are not documented (yet): +\fB+batchmode\fR, \fB+cert_depth\fR, \fB+charset\fR, \fB+encrypttoself\fR, +\fB+force\fR, \fB+clearsig\fR, \fB+comment\fR, \fB+completes_needed\fR, +\fB+compress\fR, \fB+marginals_needed\fR, \fB+pubring\fR, \fB+secring\fR, +\fB+textmode\fR and \fB+verbose\fR. + +.SH AUTHORS + +\fBPGP\fR was originally written by Philip R. Zimmermann. +\fBPGPGPG\fR was written by Michael Roth. + +This manpage was written by Javier Fernández-Sanguino for the Debian +distribution (but may be used by others) by glancing at \fBPGP\fR's +manpage and the source code from \fBPGPGPG\fR (pgpopts.c)