--- paperkey-1.3.orig/debian/changelog +++ paperkey-1.3/debian/changelog @@ -0,0 +1,62 @@ +paperkey (1.3-2) unstable; urgency=low + + * Build depend on autotools-dev and call dh with --with autotools_dev. + This will cause the build to use updated config.{sub,guess} files + (closes: #727487). + + -- Peter Palfrader Tue, 03 Dec 2013 19:35:18 +0100 + +paperkey (1.3-1) unstable; urgency=low + + * New upstream version (closes: #694981). + - Adds support for ECDH and ECDSA keys as per RFC 6637. + * Update debian/copyright file. + * Switch to minimal dh style debian/rules - Add build dependency on + debhelper >= 9. + * Add Vcs-Git and Vcs-Browser to source. + * Raise Standards-Version to 3.9.4 - no changes required. + * Add ${misc:Depends} dependency. + + -- Peter Palfrader Fri, 10 May 2013 22:14:03 +0200 + +paperkey (1.2-1) unstable; urgency=low + + * New upstream version. + - Creates output files with more restrictive permissions (closes: #550928). + + -- Peter Palfrader Thu, 15 Oct 2009 08:39:00 +0200 + +paperkey (1.1-1) unstable; urgency=low + + * New upstream version. + * Fix a minor typo in the short description. + * Add Homepage field to debian/control. + * Copy code to handle parallel builds from policy to debian/rules. + * Support nocheck option for DEB_BUILD_OPTIONS. + * Update Standards-Version to 3.8.1. + + -- Peter Palfrader Sun, 31 May 2009 12:15:00 +0200 + +paperkey (0.8-1) unstable; urgency=low + + * New upstream version. + - Fixes unaligned memory access issue that caused the test suite to + fail (closes: #460422). + + -- Peter Palfrader Tue, 5 Feb 2008 11:59:47 +0100 + +paperkey (0.7-1) unstable; urgency=low + + * New upstream version. + - The manpage is now part of upstream, remove it from debian + directory. + * Run make check after build. + + -- Peter Palfrader Wed, 3 Oct 2007 15:54:13 +0200 + +paperkey (0.6-1) unstable; urgency=low + + * Initial release (Closes: #443548). + + -- Peter Palfrader Mon, 24 Sep 2007 17:27:17 +0200 + --- paperkey-1.3.orig/debian/compat +++ paperkey-1.3/debian/compat @@ -0,0 +1 @@ +9 --- paperkey-1.3.orig/debian/control +++ paperkey-1.3/debian/control @@ -0,0 +1,34 @@ +Source: paperkey +Section: utils +Priority: optional +Maintainer: Peter Palfrader +Build-Depends: debhelper (>= 9), autotools-dev +Standards-Version: 3.9.4 +Homepage: http://www.jabberwocky.com/software/paperkey/ +Vcs-Browser: http://git.debian.org/?p=collab-maint/paperkey.git;a=summary +Vcs-Git: http://git.debian.org/collab-maint/paperkey.git + +Package: paperkey +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Recommends: gnupg +Enhances: gnupg +Description: extract just the secret information out of OpenPGP secret keys + A reasonable way to achieve a long term backup of OpenPGP (GnuPG, PGP, + etc) keys is to print them out on paper. The reasoning behind this is + that paper and ink has amazingly long retention qualities - far longer + than the magnetic or optical means that are generally used to back up + computer data. + . + Due to metadata and redundancy, OpenPGP secret keys are significantly + larger than just the "secret bits". In fact, the secret key contains + a complete copy of the public key. Since the public key generally + doesn't need to be escrowed (most people have many copies of it on + various keyservers, web pages, etc), only extracting the secret parts + can be a real advantage. + . + Paperkey extracts just those secret bytes and prints them. To + reconstruct, you re-enter those bytes (whether by hand or via OCR) and + paperkey can use them to transform your existing public key into a + secret key. + --- paperkey-1.3.orig/debian/copyright +++ paperkey-1.3/debian/copyright @@ -0,0 +1,36 @@ +This package was debianized by Peter Palfrader on +Mon, 24 Sep 2007 01:27:14 +0200. + +It was downloaded from http://www.jabberwocky.com/software/paperkey + +paperkey is copyright (C) 2007-2012 David Shaw + +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it 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 +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + +On Debian systems the full copy of the GNU General Public License can +be found in /usr/share/common-licenses/GPL-2. + + + +The implemenation of the SHA1 digest algorithm was written by Scott G. Miller, +is Copyright (C) 2000-2013 Free Software Foundation, Inc., and is licensed +under the GNU General Public License as published by the Free Software +Foundation, version two or at your option any later version. + + + +The Debian packaging is (C) 2007-2013, Peter Palfrader and +is licensed under the GNU General Public License as published by the Free +Software Foundation, version two or at your option any later version. --- paperkey-1.3.orig/debian/dirs +++ paperkey-1.3/debian/dirs @@ -0,0 +1 @@ +usr/bin --- paperkey-1.3.orig/debian/docs +++ paperkey-1.3/debian/docs @@ -0,0 +1,2 @@ +NEWS +README --- paperkey-1.3.orig/debian/rules +++ paperkey-1.3/debian/rules @@ -0,0 +1,9 @@ +#!/usr/bin/make -f + +DH_VERBOSE ?= 1 + +%: + dh $@ \ + --with autotools_dev \ + --builddirectory=build \ + --parallel