r13449 - in /trunk/libcrypt-openssl-bignum-perl/debian: ./ changelog compat control copyright rules

dmn at users.alioth.debian.org dmn at users.alioth.debian.org
Thu Jan 24 18:59:40 UTC 2008


Author: dmn
Date: Thu Jan 24 18:59:39 2008
New Revision: 13449

URL: http://svn.debian.org/wsvn/?sc=1&rev=13449
Log:
[svn-inject] Applying Debian modifications to trunk

Added:
    trunk/libcrypt-openssl-bignum-perl/debian/
    trunk/libcrypt-openssl-bignum-perl/debian/changelog
    trunk/libcrypt-openssl-bignum-perl/debian/compat
    trunk/libcrypt-openssl-bignum-perl/debian/control
    trunk/libcrypt-openssl-bignum-perl/debian/copyright
    trunk/libcrypt-openssl-bignum-perl/debian/rules   (with props)

Added: trunk/libcrypt-openssl-bignum-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libcrypt-openssl-bignum-perl/debian/changelog?rev=13449&op=file
==============================================================================
--- trunk/libcrypt-openssl-bignum-perl/debian/changelog (added)
+++ trunk/libcrypt-openssl-bignum-perl/debian/changelog Thu Jan 24 18:59:39 2008
@@ -1,0 +1,6 @@
+libcrypt-openssl-bignum-perl (0.03-1) unstable; urgency=low
+
+  * Initial release (Closes: #362809).
+
+ -- Luk Claes <luk at debian.org>  Mon, 15 May 2006 04:40:52 +0200
+

Added: trunk/libcrypt-openssl-bignum-perl/debian/compat
URL: http://svn.debian.org/wsvn/trunk/libcrypt-openssl-bignum-perl/debian/compat?rev=13449&op=file
==============================================================================
--- trunk/libcrypt-openssl-bignum-perl/debian/compat (added)
+++ trunk/libcrypt-openssl-bignum-perl/debian/compat Thu Jan 24 18:59:39 2008
@@ -1,0 +1,1 @@
+4

Added: trunk/libcrypt-openssl-bignum-perl/debian/control
URL: http://svn.debian.org/wsvn/trunk/libcrypt-openssl-bignum-perl/debian/control?rev=13449&op=file
==============================================================================
--- trunk/libcrypt-openssl-bignum-perl/debian/control (added)
+++ trunk/libcrypt-openssl-bignum-perl/debian/control Thu Jan 24 18:59:39 2008
@@ -1,0 +1,15 @@
+Source: libcrypt-openssl-bignum-perl
+Section: perl
+Priority: optional
+Maintainer: Luk Claes <luk at debian.org>
+Build-Depends: debhelper (>= 4.0.0), libssl-dev
+Standards-Version: 3.7.2
+
+Package: libcrypt-openssl-bignum-perl
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: Access OpenSSL multiprecision integer arithmetic libraries
+ Presently, many though not all of the arithmetic operations that OpenSSL
+ provides are exposed to perl.  In addition, this module can be used to 
+ provide access to bignum values produced by other OpenSSL modules, such 
+ as key parameters from Crypt::OpenSSL::RSA.

Added: trunk/libcrypt-openssl-bignum-perl/debian/copyright
URL: http://svn.debian.org/wsvn/trunk/libcrypt-openssl-bignum-perl/debian/copyright?rev=13449&op=file
==============================================================================
--- trunk/libcrypt-openssl-bignum-perl/debian/copyright (added)
+++ trunk/libcrypt-openssl-bignum-perl/debian/copyright Thu Jan 24 18:59:39 2008
@@ -1,0 +1,25 @@
+This package was debianized by Luk Claes <luk at debian.org> on
+Mon, 15 May 2006 04:40:52 +0200.
+
+It was downloaded from <http://cpan.org/modules/by-category/14_Security_and_Encryption/Crypt/>.
+
+Copyright Holder: Ian Robertson <iroberts at cpan.org>
+
+License:
+
+	Copyright (C) 2003 Ian Robertson <iroberts at cpan.org>
+
+	This module is free software; you may redistribute it and/or modify it
+	under the same terms as Perl itself.
+
+	At the moment this is 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'.

Added: trunk/libcrypt-openssl-bignum-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libcrypt-openssl-bignum-perl/debian/rules?rev=13449&op=file
==============================================================================
--- trunk/libcrypt-openssl-bignum-perl/debian/rules (added)
+++ trunk/libcrypt-openssl-bignum-perl/debian/rules Thu Jan 24 18:59:39 2008
@@ -1,0 +1,71 @@
+#!/usr/bin/make -f
+#-*- makefile -*-
+# Made with the aid of dh_make, by Craig Small
+# Sample debian/rules that uses debhelper. GNU copyright 1997 by Joey Hess.
+# Some lines taken from debmake, by Christoph Lameter.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+PACKAGE=$(shell dh_listpackages)
+
+ifndef PERL
+PERL = /usr/bin/perl
+endif
+
+ifndef DESTDIR
+DESTDIR=..
+endif
+TMP     =`pwd`/debian/$(PACKAGE)
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	$(MAKE)
+	$(MAKE) test
+
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp
+
+	-$(MAKE) realclean
+
+	dh_clean
+
+install: 
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs
+
+	$(MAKE) install PREFIX=$(TMP)/usr
+
+# Build architecture-dependent files here.
+binary-arch: build install
+	dh_testdir
+	dh_testroot
+	dh_installdocs README
+	dh_installman
+	dh_installchangelogs Changes
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_perl 
+	dh_shlibdeps
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb --destdir=$(DESTDIR)
+
+# Build architecture-independent files here.
+binary-indep: build install
+# We have nothing to do by default.
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary

Propchange: trunk/libcrypt-openssl-bignum-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *




More information about the Pkg-perl-cvs-commits mailing list