--- ciphersaber-0.61.orig/debian/changelog +++ ciphersaber-0.61/debian/changelog @@ -0,0 +1,68 @@ +ciphersaber (0.61-4.2) unstable; urgency=medium + + * Non-maintainer upload. + * Update DH level to 9 (closes: #800284, #817315). + * debian/control: + - Depends: Add ${misc:Depends}. + - Standards-Version: Update to 3.9.7. + * debian/watch: + - Update to version 4 (closes: #529102). + - Use new URL (closes: #449849). + + -- Samuel Henrique Oltramari Pinto (SamuelOPH) Tue, 22 Mar 2016 04:09:09 -0300 + +ciphersaber (0.61-4.1) unstable; urgency=medium + + * Non-maintainer upload. + * Fix "FTBFS with perl 5.22 in experimental (MakeMaker changes)": + use DESTDIR in debian/rules. + (Closes: #792374) + + -- gregor herrmann Wed, 26 Aug 2015 13:43:12 +0200 + +ciphersaber (0.61-4) unstable; urgency=medium + + * New maintainer. + + -- Stefan Hornburg (Racke) Tue, 12 Oct 2004 12:03:41 +0200 + +ciphersaber (0.61-3) unstable; urgency=medium + + * Orphaned. + * debian/control: + - Set maintainer to Debian QA Group. + - Bumped Standards-Version to 3.6.1. + - Changed arch from any to all. Closes: Bug#270893. + - Rewritten long description. Closes: Bug#210111. + + -- Jerome Marant Sun, 10 Oct 2004 14:49:03 +0200 + +ciphersaber (0.61-2) unstable; urgency=low + + * debian/copyright: added Perl licensing terms. Closes: Bug#157529. + + -- Jerome Marant Sat, 31 Aug 2002 19:35:30 +0200 + +ciphersaber (0.61-1) unstable; urgency=low + + * New upstream release. + * debian/control: + - Moved to 'interpreters' section. + - Bumped Standards-Version to 3.5.6.1. + + -- Jerome Marant Sun, 11 Aug 2002 14:17:09 +0200 + +ciphersaber (0.60-2) unstable; urgency=low + + * Moved to main from non-US. + * Switched Standards-Version to 3.5.6. + + -- Jerome Marant Wed, 27 Mar 2002 07:23:42 +0100 + +ciphersaber (0.60-1) unstable; urgency=low + + * Initial Release. Closes: Bug#97149. + + -- Jerome Marant Fri, 27 Apr 2001 14:11:37 +0200 + + --- ciphersaber-0.61.orig/debian/compat +++ ciphersaber-0.61/debian/compat @@ -0,0 +1 @@ +9 --- ciphersaber-0.61.orig/debian/control +++ ciphersaber-0.61/debian/control @@ -0,0 +1,17 @@ +Source: ciphersaber +Section: interpreters +Priority: optional +Maintainer: Stefan Hornburg (Racke) +Build-Depends: debhelper (>=9), perl (>= 5.6.0-17) +Standards-Version: 3.9.7 + +Package: libcrypt-ciphersaber-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends} +Description: Perl module implementing CipherSaber encryption + The Crypt::CipherSaber module implements CipherSaber encryption, + described at http://ciphersaber.gurus.com. It is simple, fairly + speedy, and relatively secure algorithm based on RC4. + . + Encryption and decryption are done based on a secret key, which + must be shared with all intended recipients of a message. --- ciphersaber-0.61.orig/debian/copyright +++ ciphersaber-0.61/debian/copyright @@ -0,0 +1,25 @@ +This package was debianized by Jerome Marant on +Fri, 27 Apr 2001 14:11:37 +0200. + +It was downloaded from http://www.cpan.org/authors/id/C/CH/CHROMATIC + +Upstream Author: Chromatic + +Copyright: + +copyright (c) 2000 chromatic (chromatic@wgz.org), all rights reserved. +This program is free software; you can redistribute it and/or modify it under +the same terms as Perl itself, which are: + +This program is free software; you can redistribute it and/or modify +it under the terms of either: + +a) the GNU General Public License as published by the Free Software + Foundation; either version 1, or (at your option) any later + version, or + +b) the "Artistic License" which comes with Perl. + +On Debian GNU/Linux systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL' and +the Artistic Licence in `/usr/share/common-licenses/Artistic'. \ No newline at end of file --- ciphersaber-0.61.orig/debian/docs +++ ciphersaber-0.61/debian/docs @@ -0,0 +1 @@ +README --- ciphersaber-0.61.orig/debian/rules +++ ciphersaber-0.61/debian/rules @@ -0,0 +1,84 @@ +#!/usr/bin/make -f +# Sample debian/rules that uses debhelper. +# GNU copyright 1997 to 1999 by Joey Hess. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +PACKAGE=$(shell pwd)/debian/libcrypt-ciphersaber-perl + +configure: configure-stamp +configure-stamp: + dh_testdir + # Add here commands to configure the package. + + + touch configure-stamp + +build: configure-stamp build-stamp +build-stamp: + dh_testdir + + # Add here commands to compile the package. + perl Makefile.PL INSTALLDIRS=vendor + $(MAKE) OPTIMIZE="-O2 -g -Wall" + $(MAKE) test + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + + # Add here commands to clean up after the build process. + -$(MAKE) clean + rm -f t/outsmiles.* *.old + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/ciphersaber. + $(MAKE) install DESTDIR=$(PACKAGE) + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot +# dh_installdebconf + dh_installdocs + dh_installexamples + dh_installmenu +# dh_installlogrotate +# dh_installemacsen +# dh_installpam +# dh_installmime +# dh_installinit + dh_installcron + dh_installman + dh_installinfo +# dh_undocumented + dh_installchangelogs Changes + dh_link + dh_strip + dh_compress + dh_fixperms +# dh_makeshlibs + dh_installdeb + dh_perl + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure --- ciphersaber-0.61.orig/debian/watch +++ ciphersaber-0.61/debian/watch @@ -0,0 +1,2 @@ +version=4 +http://www.cpan.org/authors/id/C/CH/CHROMATIC/Crypt-CipherSaber-(.*)\.tar\.gz