Author: arekm Date: Wed Mar 4 14:07:37 2009 GMT Module: SOURCES Tag: HEAD ---- Log message: - new
---- Files affected: SOURCES: libcrypto++5.2-debian.patch (NONE -> 1.1) (NEW) ---- Diffs: ================================================================ Index: SOURCES/libcrypto++5.2-debian.patch diff -u /dev/null SOURCES/libcrypto++5.2-debian.patch:1.1 --- /dev/null Wed Mar 4 15:07:38 2009 +++ SOURCES/libcrypto++5.2-debian.patch Wed Mar 4 15:07:32 2009 @@ -0,0 +1,2632 @@ +--- libcrypto++-5.2.1c2a.orig/debian/control ++++ libcrypto++-5.2.1c2a/debian/control +@@ -0,0 +1,127 @@ ++Source: libcrypto++ ++Section: libs ++Priority: optional ++Maintainer: Jens Peter Secher <[email protected]> ++Uploaders: Pierre Machard <[email protected]> ++Standards-Version: 3.6.2 ++Build-Depends: g++ (>= 4:4.0.2-2), debhelper (>= 4), automake1.9, autoconf (>> 2.50), libtool, dpatch ++Build-Depends-Indep: doxygen ++ ++Package: libcrypto++5.2c2a ++Architecture: any ++Section: libs ++Depends: ${shlibs:Depends} ++Conflicts: libcrypto++5.2, libcrypto++5.2c2 ++Replaces: libcrypto++5.2, libcrypto++5.2c2 ++Description: General purpose cryptographic shared library ++ General purpose cryptographic library for C++ which includes: ++ A class hierarchy with an API defined by abstract base classes, ++ Proposed AES (Rijndael) and other AES candidates, ++ Other symmetric block ciphers, ++ Generic cipher modes, ++ Stream ciphers, ++ Public key cryptography, ++ Padding schemes for public-key systems, ++ Key agreement schemes, ++ Elliptic curve cryptography, ++ One-way hash functions, ++ Message authentication codes, ++ Cipher constructions based on hash functions, ++ Pseudo-random number generators, ++ High level interface for most of the above using a filter/pipeline metaphor, ++ and a whole lot more. ++ . ++ More information can be found at Wei Dei's Crypto++ web site ++ http://www.cryptopp.com ++ ++Package: libcrypto++-dev ++Architecture: any ++Section: libdevel ++Depends: libcrypto++5.2c2a (= ${Source-Version}) ++Description: General purpose cryptographic C++ library - development ++ General purpose cryptographic C++ library which includes: ++ A class hierarchy with an API defined by abstract base classes, ++ Proposed AES (Rijndael) and other AES candidates, ++ Other symmetric block ciphers, ++ Generic cipher modes, ++ Stream ciphers, ++ Public key cryptography, ++ Padding schemes for public-key systems, ++ Key agreement schemes, ++ Elliptic curve cryptography, ++ One-way hash functions, ++ Message authentication codes, ++ Cipher constructions based on hash functions, ++ Pseudo-random number generators, ++ High level interface for most of the above using a filter/pipeline metaphor, ++ and a whole lot more. ++ . ++ This package contains the header files needed for developing using ++ the Crypto++ class library. It also includes the static library with ++ libtool supoport, a utility for benchmarking and using the various ++ Crypto++ routines, and finally it includes the test vectors for ++ validating both the Crypto++ implementation and other implementations ++ of these routines. ++ . ++ More information can be found at Wei Dei's Crypto++ web site ++ http://www.cryptopp.com ++ ++Package: libcrypto++-utils ++Architecture: any ++Section: utils ++Depends: ${shlibs:Depends} ++Conflicts: libcrypto++-dev (= 5.2.1c2-1) ++Description: General purpose cryptographic library - utilities and data files ++ General purpose cryptographic C++ library which includes: ++ A class hierarchy with an API defined by abstract base classes, ++ Proposed AES (Rijndael) and other AES candidates, ++ Other symmetric block ciphers, ++ Generic cipher modes, ++ Stream ciphers, ++ Public key cryptography, ++ Padding schemes for public-key systems, ++ Key agreement schemes, ++ Elliptic curve cryptography, ++ One-way hash functions, ++ Message authentication codes, ++ Cipher constructions based on hash functions, ++ Pseudo-random number generators, ++ High level interface for most of the above using a filter/pipeline metaphor, ++ and a whole lot more. ++ . ++ This package includes a utility for benchmarking and using the ++ various Crypto++ routines. It also includes the test vectors for ++ validating both the Crypto++ implementation and other implementations ++ of these routines. ++ . ++ More information can be found at Wei Dei's Crypto++ web site ++ http://www.cryptopp.com ++ ++Package: libcrypto++-doc ++Architecture: all ++Section: doc ++Conflicts: libcrypto++-dev (<= 5.2.1c2-3) ++Enhances: libcrypto++-dev ++Description: General purpose cryptographic library - documentation ++ General purpose cryptographic C++ library which includes: ++ A class hierarchy with an API defined by abstract base classes, ++ Proposed AES (Rijndael) and other AES candidates, ++ Other symmetric block ciphers, ++ Generic cipher modes, ++ Stream ciphers, ++ Public key cryptography, ++ Padding schemes for public-key systems, ++ Key agreement schemes, ++ Elliptic curve cryptography, ++ One-way hash functions, ++ Message authentication codes, ++ Cipher constructions based on hash functions, ++ Pseudo-random number generators, ++ High level interface for most of the above using a filter/pipeline metaphor, ++ and a whole lot more. ++ . ++ This package includes the Doxygen-generated reference guide to the ++ source code. ++ . ++ More information can be found at Wei Dei's Crypto++ web site ++ http://www.cryptopp.com +--- libcrypto++-5.2.1c2a.orig/debian/libcrypto++-utils.install ++++ libcrypto++-5.2.1c2a/debian/libcrypto++-utils.install +@@ -0,0 +1,3 @@ ++usr/bin/cryptest ++usr/share/crypto--/*.dat usr/share/crypto++ ++usr/share/crypto--/TestVectors usr/share/crypto++ +--- libcrypto++-5.2.1c2a.orig/debian/rules ++++ libcrypto++-5.2.1c2a/debian/rules +@@ -0,0 +1,128 @@ ++#!/usr/bin/make -f ++# debian/rules for libcrypto++ ++ ++# The shared library must be the first listed in debian/control ++package := $(firstword $(shell dh_listpackages)) ++ ++binarypackages := $(filter-out %-doc,$(shell dh_listpackages)) ++ ++# Use dpath ++include /usr/share/dpatch/dpatch.make ++ ++# Setup ./configure arguments to fit Debian environment ++export DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) ++export DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) ++config_flags := \ ++ --config-cache \ ++ --enable-debug \ ++ --prefix=/usr \ ++ --sysconfdir=/etc \ ++ --mandir=/usr/share/man \ ++ --infodir=/usr/share/info \ ++ --libexecdir=/usr/lib \ ++ --build $(DEB_BUILD_GNU_TYPE) ++ifneq ($(DEB_BUILD_GNU_TYPE), $(DEB_HOST_GNU_TYPE)) ++ config_flags += --host $(DEB_HOST_GNU_TYPE) ++endif ++ ++# For some reason, we suddenly need to mention pthread explicitly. ++export LDFLAGS=-pthread ++ ++# Compile options ++cflags := -g -fno-strict-aliasing ++ifeq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) ++ cflags += -O2 ++else ++ cflags += -O0 ++endif ++ifeq (hppa-linux,$(DEB_BUILD_GNU_TYPE)) ++ cflags += -ffunction-sections ++endif ++ ++autotools_input := configure.ac Makefile.am config.h.in ++ ++autoclean: ++ -rm -f a.out aclocal.m4 config.log config.sub config.guess \ ++ configure cryptopp_config.h.in depcomp install-sh ltmain.sh \ ++ Makefile.in missing $(autotools_input) ++ ++# Autoreconf needs the automake input to be Makefile.am, so we make ++# sure the upstream GNUmakefile do not shadow the resulting Makefile. ++config-stamp: ++ dh_testdir ++ ln -sf /usr/share/misc/config.sub /usr/share/misc/config.guess . ++ -rm -f config.cache GNUmakefile ++ cp -f $(patsubst %,debian/%,$(autotools_input)) . ++ AUTOMAKE=automake-1.9 ACLOCAL=aclocal-1.9 autoreconf --force --install ++ $(SHELL) ./configure $(config_flags) CFLAGS="$(cflags)" CXXFLAGS="$(cflags)" ++ touch $@ ++ ++# Build and run the test suite ++build: config-stamp build-stamp ++build-stamp: patch-stamp ++ $(MAKE) ++ ./cryptestcwd v ++ touch $@ ++ ++# Let Doxygen generate the documentation ++html: config-stamp html-stamp ++html-stamp: patch-stamp ++ $(MAKE) html ++ touch $@ ++ ++# Put everything of interest in debian/tmp ++install-stamp: build ++ dh_testdir ++ dh_testroot ++ dh_clean -k ++ $(MAKE) install DESTDIR=$(PWD)/debian/tmp ++ rm -f debian/tmp/usr/bin/cryptestcwd ++ cp -r TestVectors debian/tmp/usr/share/crypto-- ++ touch $@ ++ ++binary-indep: html ++ dh_testdir ++ dh_testroot ++ dh_installdocs -plibcrypto++-doc -X.hhc -X.hhp -X.hhk ++ dh_installchangelogs -plibcrypto++-doc ++ dh_compress -plibcrypto++-doc ++ dh_fixperms -plibcrypto++-doc ++ dh_installdeb -plibcrypto++-doc ++ dh_gencontrol -plibcrypto++-doc ++ dh_md5sums -plibcrypto++-doc ++ dh_builddeb -plibcrypto++-doc ++ ++binaryargs := $(patsubst %,-p%,$(binarypackages)) ++ ++binary-arch: install-stamp ++ dh_testdir ++ dh_testroot ++ dh_installdocs $(binaryargs) ++ dh_install --list-missing --sourcedir=$(PWD)/debian/tmp $(binaryargs) ++ dh_installchangelogs $(binaryargs) ++ dh_installman -plibcrypto++-utils debian/cryptest.1 ++ dh_installexamples -plibcrypto++-dev test.cpp ++ dh_strip $(binaryargs) ++ dh_compress $(binaryargs) ++ dh_link $(binaryargs) ++ dh_fixperms $(binaryargs) ++ dh_makeshlibs $(binaryargs) ++ dh_installdeb $(binaryargs) ++ dh_shlibdeps -L$(package) -ldebian/$(package)/usr/lib ++ dh_gencontrol $(binaryargs) ++ dh_md5sums $(binaryargs) ++ dh_builddeb $(binaryargs) ++ ++binary: binary-indep binary-arch ++ ++clean: clean-patched unpatch autoclean ++clean-patched: ++ dh_testdir ++ dh_testroot ++ -rm -f *-stamp ++ -$(MAKE) distclean ++ -rm -rf doc ++ dh_clean ++ ++.PHONY: autoclean binary binary-indep binary-arch bootstrap build \ ++ clean clean-patched html +--- libcrypto++-5.2.1c2a.orig/debian/changelog ++++ libcrypto++-5.2.1c2a/debian/changelog +@@ -0,0 +1,228 @@ ++libcrypto++ (5.2.1c2a-3) unstable; urgency=low ++ ++ * Patch source so that it compiles with GCC 4.1 . More specifically, ++ avoid mixing implicit calls to base classes and free-standing ++ functions. ++ (Closes: #356170). ++ * Use LDFLAGS=-pthread to fix linking errors. ++ ++ -- Jens Peter Secher <[email protected]> Thu, 16 Mar 2006 23:08:48 +0100 ++ ++libcrypto++ (5.2.1c2a-2) unstable; urgency=low ++ ++ * Build-depend on a version of g++ that fixes PR c++/21123 which ++ resulted in internal compiler errors on m68k, arm, and hppa ++ (Closes: #343003). ++ * Include an override to stop Lintian complaining about the name of the ++ shared library. ++ * Removed link in main headline of Doxygen generated documentaion since ++ Doxygen insists on escaping it. ++ ++ -- Jens Peter Secher <[email protected]> Tue, 13 Dec 2005 20:40:25 +0100 ++ ++libcrypto++ (5.2.1c2a-1) unstable; urgency=low ++ ++ * Rebuild and name change due to libstdc++6 mt-allocator transition ++ (Closes: #339201). ++ ++ -- Jens Peter Secher <[email protected]> Sat, 19 Nov 2005 23:56:27 +0100 ++ ++libcrypto++ (5.2.1c2-8) unstable; urgency=low ++ ++ * Force autoreconf to use automake1.9 so that it is possible to have ++ several automake versions installed. ++ ++ -- Jens Peter Secher <[email protected]> Sat, 1 Oct 2005 16:11:18 +0200 ++ ++libcrypto++ (5.2.1c2-7) unstable; urgency=low ++ ++ * Use the upstream-provided way of doing manual template instantiation ++ on architectures where it is necessary to use GCC3.4. ++ ++ -- Jens Peter Secher <[email protected]> Mon, 26 Sep 2005 19:08:30 +0200 ++ ++libcrypto++ (5.2.1c2-6) unstable; urgency=low ++ ++ * Circumvent GCC4 internal compiler error on m68k, arm, and hppa by ++ using GCC3.4 on those architectures, thanks to Adeodato Simó ++ (Closes: #328975). ++ ++ -- Jens Peter Secher <[email protected]> Tue, 20 Sep 2005 20:46:29 +0200 ++ ++libcrypto++ (5.2.1c2-5) unstable; urgency=low ++ ++ * Fixed the debian/rules so that the binary-arch target can be built in ++ isolation (Closes: #323161). ++ * Added a doc-base file for the libcrypto++-doc package. ++ ++ -- Jens Peter Secher <[email protected]> Mon, 15 Aug 2005 22:18:05 +0200 ++ ++libcrypto++ (5.2.1c2-4) unstable; urgency=low ++ ++ * Really take care of endianess this time by letting config.status ++ manipulate config.h . ++ * Split the documentation into a libcrypto++-doc package. ++ ++ -- Jens Peter Secher <[email protected]> Wed, 10 Aug 2005 23:47:51 +0200 ++ ++libcrypto++ (5.2.1c2-3) unstable; urgency=low ++ ++ * Take care of architecture endianess by using AC_C_BIGENDIAN in ++ configure.ac . Should fix building for s390 and mipsel. ++ ++ -- Jens Peter Secher <[email protected]> Mon, 8 Aug 2005 21:25:50 +0200 ++ ++libcrypto++ (5.2.1c2-2) unstable; urgency=low ++ ++ * Stopped including autotools generated scripts, and instead ++ build-depends on automaken to avoid strange problems with libtool that ++ causes problems for the build daemons. ++ * Fix cryptest so that it always can find its data files, and put it in ++ the libcrypto++-utils package again. ++ ++ -- Jens Peter Secher <[email protected]> Sat, 6 Aug 2005 16:34:56 +0200 ++ ++libcrypto++ (5.2.1c2-1) unstable; urgency=low ++ ++ * New maintainer (Closes: #288433). ++ * Complete re-autotoolising of the package to retain pristine upstream ++ source and to only build-depend on libtool. ++ * The crypto++-util package has been merged into the crypto++-dev ++ package and is thus dead. ++ * Applied patches from Ben Hutchings to avoid compile warnings ++ (Closes: #286114). ++ * Circumvented anonymous-enum and template-instantiations problems with ++ GCC 4. Thanks to Florian Weimer and Jozef Matula for guiding me in ++ the right direction (Closes: #318518). ++ * Started using dpatch since some of the above patches probably could ++ make it upstream. ++ ++ -- Jens Peter Secher <[email protected]> Sun, 31 Jul 2005 02:07:29 +0200 ++ ++libcrypto++ (5.2.1a-1) unstable; urgency=high ++ ++ * Urgency set to high because lastest upload was unclean ++ * Rename libcrypto++-5.2.1.orig.tar.gz in libcrypto++-5.2.1a.orig.tar.gz ++ ++ -- Pierre Machard <[email protected]> Fri, 27 Aug 2004 12:35:05 +0200 ++ ++libcrypto++ (5.2.1-2) unstable; urgency=high ++ ++ * Added TestVectors to example dir ++ * Add symlink from cryptopp_config.h to config.h (closes: #244980) ++ * Hack configure.in to fit with new upstream version. This hack is ++ far from being complete and quite uggly. ++ * Update manpage ++ * Automaticaly update config.{sub,guess} ++ ++ -- Pierre Machard <[email protected]> Sat, 21 Aug 2004 08:59:37 +0200 ++ ++libcrypto++ (5.2.1-1) unstable; urgency=high ++ ++ * Adding myself as package uploaders ++ * Urgency set to high because of #244892 ++ * New upstream release (closes: #244892, #247922, #245921, #261074) ++ ++ -- Pierre Machard <[email protected]> Fri, 20 Aug 2004 05:22:28 +0200 ++ ++libcrypto++ (5.1-5) unstable; urgency=low ++ ++ * Remove the final arch specific (rather than feature specifc) tests in ++ crypto_config.h, ++ Closes: #238220 ++ * Add symlinks libcrypto++.{a,la,so} pointing to ++ libcrypto++5.1.{a,la,so} so that users can act like the ABI of this ++ library doesn't change with every major release, ++ Closes: #241148 ++ ++ -- Stephen Zander <[email protected]> Mon, 19 Apr 2004 18:10:28 -0700 ++ ++libcrypto++ (5.1-4) unstable; urgency=low ++ ++ * Build with -fno-strict-aliasing. This should fix the segfaults on ++ non-i386 architectures. ++ * Add -ffunction-sections for hppa build, ++ Closes: #238220 ++ ++ -- Stephen Zander <[email protected]> Fri, 19 Mar 2004 02:06:08 -0800 ++ ++libcrypto++ (5.1-3) unstable; urgency=low ++ ++ * Move datatest.cpp from libcrypto++5.1.so to the cryptest source to ++ really fix the GlobalRNG bug, ++ Closes: #236539 ++ ++ -- Stephen Zander <[email protected]> Sun, 14 Mar 2004 20:23:16 -0800 ++ ++libcrypto++ (5.1-2) unstable; urgency=low ++ ++ * Remove validate.h from the libcrypto++5.1.so headers; it should only ++ be used by cryptest, ++ Closes: #236539 ++ * Include test.cpp as an example of how to invoke the various Crypto++ ++ routines, ++ Closes: #236844 ++ * Allow cryptest to look for validation files in the current directory ++ as well as /usr/share/crypto++, ++ Closes: #236968 ++ ++ -- Stephen Zander <[email protected]> Sat, 13 Mar 2004 00:59:54 -0800 ++ ++libcrypto++ (5.1-1) unstable; urgency=low ++ ++ * Drop the gcc-3.2 dependency as gcc-3.2 should be everywhere by now. This ++ also fixes the build failure on ARM. ++ * Rename the library from libcrypto++.so.5 to libcrypto++5.1.so.0 as ++ upstream does not maintain binary compatibility and having the 5.1 ++ package provide libcrypto++.so.6 strikes me as too confusing. ++ * New upstream version, ++ Closes: #213953 ++ * Include full paths to data files used by the cryptest validation ++ routines, ++ Closes: #198696 ++ * Add MD4 to the output of 'cryptest b' and segregate the hashing ++ algorithms from the encryption algorithms, ++ Closes: #198698 ++ * Include Doxygen generated documents in the libcrypto++-dev package, ++ Closes: #211725 ++ ++ -- Stephen Zander <[email protected]> Tue, 17 Feb 2004 12:41:29 -0800 ++ ++libcrypto++ (5.0-3) unstable; urgency=low ++ ++ * Add generic 64bit arch support, rather than hard-coded alpha supoprt, ++ Closes: #181457 ++ ++ -- Stephen Zander <[email protected]> Sat, 15 Mar 2003 17:47:27 -0800 ++ ++libcrypto++ (5.0-2) unstable; urgency=low ++ ++ * Convert the gcc-3.2 build depends to a g++-3.2, they way it should be ++ Closes: #175085 ++ * Clean up cryptlib.h slightly so it's not so noisy under -Wall, ++ Closes: #175180 ++ ++ -- Stephen Zander <[email protected]> Tue, 7 Jan 2003 01:24:07 -0800 ++ ++libcrypto++ (5.0-1) unstable; urgency=low ++ ++ * Package moved to main. ++ * New upstream version, ++ Closes: #174217 ++ * All files now have appropriate copyright entries and debian/copyright ++ accurately reflects the contents of this package, ++ Closes: #153926 ++ * cryptest now successfully runs to completion, ++ Closes: #153929 ++ * Fix a typo in the cryptest manpage, ++ Closes: #153932 ++ ++ -- Stephen Zander <[email protected]> Fri, 27 Dec 2002 11:23:06 -0800 ++ ++libcrypto++ (4.2-1) unstable; urgency=low ++ ++ * New package, ++ Closes: #79131 ++ ++ -- Stephen Zander <[email protected]> Fri, 5 Jul 2002 09:45:26 -0700 ++ +--- libcrypto++-5.2.1c2a.orig/debian/configure.ac ++++ libcrypto++-5.2.1c2a/debian/configure.ac +@@ -0,0 +1,42 @@ ++# -*- autoconf -*- ++# Process this file with autoconf to produce a configure script. ++ ++AC_INIT([Crypto++], [5.2], [[email protected]]) ++AC_CONFIG_SRCDIR([cryptlib.h]) ++AC_CONFIG_HEADERS([cryptopp_config.h]) ++AC_CONFIG_HEADERS([config.h]) ++AM_INIT_AUTOMAKE([foreign]) ++AM_MAINTAINER_MODE ++ ++# Checks for programs. ++AC_PROG_CXX ++AC_PROG_CC ++AC_PROG_LN_S ++AC_PROG_LIBTOOL ++ ++# Checks for header files. ++AC_HEADER_STDC ++AC_CHECK_HEADERS([arpa/inet.h fcntl.h limits.h malloc.h netdb.h netinet/in.h stddef.h stdlib.h string.h sys/ioctl.h sys/socket.h sys/time.h unistd.h]) ++ ++# Checks for typedefs, structures, and compiler characteristics. ++AC_HEADER_STDBOOL ++AC_C_CONST ++AC_C_INLINE ++AC_TYPE_SIZE_T ++AC_HEADER_TIME ++AC_CHECK_TYPES([ptrdiff_t]) ++AC_C_BIGENDIAN( ++ AC_DEFINE(IS_BIG_ENDIAN, [], [Big-endian architecture]), ++ AC_DEFINE(IS_LITTLE_ENDIAN, [], [Little-endian architecture]), ++ AC_MSG_ERROR([Can't tell endianess of platform])) ++ ++# Checks for library functions. ++AC_PROG_GCC_TRADITIONAL ++AC_FUNC_MALLOC ++AC_FUNC_MEMCMP ++AC_FUNC_SELECT_ARGTYPES ++AC_TYPE_SIGNAL ++AC_CHECK_FUNCS([gethostbyname gettimeofday memmove memset pow select socket]) ++ ++AC_CONFIG_FILES([Makefile]) ++AC_OUTPUT +--- libcrypto++-5.2.1c2a.orig/debian/libcrypto++-doc.docs ++++ libcrypto++-5.2.1c2a/debian/libcrypto++-doc.docs +@@ -0,0 +1 @@ ++doc/html/ +--- libcrypto++-5.2.1c2a.orig/debian/libcrypto++-dev.links ++++ libcrypto++-5.2.1c2a/debian/libcrypto++-dev.links +@@ -0,0 +1,3 @@ ++/usr/lib/libcrypto++5.2.a /usr/lib/libcrypto++.a ++/usr/lib/libcrypto++5.2.la /usr/lib/libcrypto++.la ++/usr/lib/libcrypto++5.2.so /usr/lib/libcrypto++.so +--- libcrypto++-5.2.1c2a.orig/debian/libcrypto++-doc.doc-base ++++ libcrypto++-5.2.1c2a/debian/libcrypto++-doc.doc-base +@@ -0,0 +1,10 @@ ++Document: libcrypto++ ++Title: Crypto++ library reference manual ++Author: Wei Dai ++Abstract: Reference manual for the general purpose cryptographic library ++ Crypto++ for the C++ language. ++Section: Apps/Programming ++ ++Format: HTML ++Index: /usr/share/doc/libcrypto++-doc/html/index.html ++Files: /usr/share/doc/libcrypto++-doc/html/*.html +--- libcrypto++-5.2.1c2a.orig/debian/lintian-overrides ++++ libcrypto++-5.2.1c2a/debian/lintian-overrides +@@ -0,0 +1 @@ ++libcrypto++5.2c2a binary: package-name-doesnt-match-sonames libcrypto++5.2-0 +--- libcrypto++-5.2.1c2a.orig/debian/compat ++++ libcrypto++-5.2.1c2a/debian/compat +@@ -0,0 +1 @@ ++4 +--- libcrypto++-5.2.1c2a.orig/debian/cryptest.1 ++++ libcrypto++-5.2.1c2a/debian/cryptest.1 +@@ -0,0 +1,93 @@ ++.TH cryptest 1 local ++.SH NAME ++cryptest \- Test Driver for Crypto++, a C++ Class Library of Cryptographic Primitives ++.SH SYNOPSIS ++.B cryptest ++[\fIOPTION\fR] ++.SH DESCRIPTION ++cryptest takes the following options ++.TP ++.B g ++generate an RSA key ++.TP ++.B h ++display usage information <<Diff was trimmed, longer than 597 lines>> _______________________________________________ pld-cvs-commit mailing list [email protected] http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit
