r47847 - in /trunk/libcrypt-openssl-rsa-perl: Makefile.PL debian/changelog debian/compat debian/control debian/patches/Makefile.PL-no-ssl-in-LIBS.patch debian/rules

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Fri Nov 27 04:11:47 UTC 2009


Author: jawnsy-guest
Date: Fri Nov 27 04:11:39 2009
New Revision: 47847

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=47847
Log:
* Added header to patch file and refresh patch
* Use new short rules format + --with quilt
* Standards-Version 3.8.3 (no changes)
* Add perl to B-D, it's not build-essential

Modified:
    trunk/libcrypt-openssl-rsa-perl/Makefile.PL
    trunk/libcrypt-openssl-rsa-perl/debian/changelog
    trunk/libcrypt-openssl-rsa-perl/debian/compat
    trunk/libcrypt-openssl-rsa-perl/debian/control
    trunk/libcrypt-openssl-rsa-perl/debian/patches/Makefile.PL-no-ssl-in-LIBS.patch
    trunk/libcrypt-openssl-rsa-perl/debian/rules

Modified: trunk/libcrypt-openssl-rsa-perl/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcrypt-openssl-rsa-perl/Makefile.PL?rev=47847&op=diff
==============================================================================
--- trunk/libcrypt-openssl-rsa-perl/Makefile.PL (original)
+++ trunk/libcrypt-openssl-rsa-perl/Makefile.PL Fri Nov 27 04:11:39 2009
@@ -11,7 +11,7 @@
     'DISTNAME' => 'Crypt-OpenSSL-RSA',
     'VERSION_FROM' => 'RSA.pm', # finds $VERSION
     'OBJECT' => 'RSA.o',
-    'LIBS'	=> ['-lssl -lcrypto'],   # e.g., '-lm'
+    'LIBS'	=> ['-lcrypto'],   # e.g., '-lm'
     'PREREQ_PM' => { 'Crypt::OpenSSL::Random' => 0 },
     'DEFINE'	=> '-DPERL5 -DOPENSSL_NO_KRB5',
     # perl-5.8/gcc-3.2 needs -DPERL5, and redhat9 likes -DOPENSSL_NO_KRB5

Modified: trunk/libcrypt-openssl-rsa-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcrypt-openssl-rsa-perl/debian/changelog?rev=47847&op=diff
==============================================================================
--- trunk/libcrypt-openssl-rsa-perl/debian/changelog (original)
+++ trunk/libcrypt-openssl-rsa-perl/debian/changelog Fri Nov 27 04:11:39 2009
@@ -5,6 +5,10 @@
 
   [ Jonathan Yu ]
   * New upstream release
+  * Added header to patch file and refresh patch
+  * Use new short rules format + --with quilt
+  * Standards-Version 3.8.3 (no changes)
+  * Add perl to B-D, it's not build-essential
 
   [ gregor herrmann ]
   * debian/watch: fix regexp for matching upstream releases.

Modified: trunk/libcrypt-openssl-rsa-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcrypt-openssl-rsa-perl/debian/compat?rev=47847&op=diff
==============================================================================
--- trunk/libcrypt-openssl-rsa-perl/debian/compat (original)
+++ trunk/libcrypt-openssl-rsa-perl/debian/compat Fri Nov 27 04:11:39 2009
@@ -1,1 +1,1 @@
-6
+7

Modified: trunk/libcrypt-openssl-rsa-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcrypt-openssl-rsa-perl/debian/control?rev=47847&op=diff
==============================================================================
--- trunk/libcrypt-openssl-rsa-perl/debian/control (original)
+++ trunk/libcrypt-openssl-rsa-perl/debian/control Fri Nov 27 04:11:39 2009
@@ -1,23 +1,23 @@
 Source: libcrypt-openssl-rsa-perl
 Section: perl
 Priority: optional
+Build-Depends: debhelper (>= 7), quilt (>= 0.46-7), perl, libssl-dev,
+ libcrypt-openssl-random-perl, libcrypt-openssl-bignum-perl
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
-Uploaders: Damyan Ivanov <dmn at debian.org>
-Build-Depends: debhelper (>= 6), libcrypt-openssl-random-perl, libssl-dev, quilt,
- libcrypt-openssl-bignum-perl
-Standards-Version: 3.7.3
+Uploaders: Damyan Ivanov <dmn at debian.org>, Jonathan Yu <jawnsy at cpan.org>
+Standards-Version: 3.8.3
 Homepage: http://perl-openssl.sourceforge.net/
 Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libcrypt-openssl-rsa-perl/
 Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libcrypt-openssl-rsa-perl/
 
 Package: libcrypt-openssl-rsa-perl
 Architecture: any
-Depends: libcrypt-openssl-bignum-perl, ${shlibs:Depends}, ${misc:Depends},
- ${perl:Depends}
-Description: Perl module providing basic RSA functionality
- Provides a glue to the RSA functions in the OpenSSL library. In
- particular, it provides the following functionalities: create a key from
- a string, make a new key, save key to a string, save public portion of
- key to a string using format compatible with OpenSSL's command-line rsa
+Depends: ${shlibs:Depends}, ${misc:Depends}, ${perl:Depends},
+ libcrypt-openssl-bignum-perl
+Description: module for RSA encryption using OpenSSL
+ Crypt::OpenSSL::RSA is a Perl module that provides glue to the RSA functions
+ in the OpenSSL library. It provides the following functionalities: create a
+ key from a string, make a new key, save key to a string, save public portion
+ of key to a string using format compatible with OpenSSL's command-line rsa
  tool, encrypt, decrypt, sign, verify, return the size in bytes of a key,
  check the validity of a key.

Modified: trunk/libcrypt-openssl-rsa-perl/debian/patches/Makefile.PL-no-ssl-in-LIBS.patch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcrypt-openssl-rsa-perl/debian/patches/Makefile.PL-no-ssl-in-LIBS.patch?rev=47847&op=diff
==============================================================================
--- trunk/libcrypt-openssl-rsa-perl/debian/patches/Makefile.PL-no-ssl-in-LIBS.patch (original)
+++ trunk/libcrypt-openssl-rsa-perl/debian/patches/Makefile.PL-no-ssl-in-LIBS.patch Fri Nov 27 04:11:39 2009
@@ -1,6 +1,10 @@
+Description: don't compile with -lssl
+Author: Damyan Ivanov <dmn at debian.org>
+Origin: vendor
+Forwarded: not-needed
 --- a/Makefile.PL
 +++ b/Makefile.PL
-@@ -11,7 +11,7 @@ WriteMakefile(
+@@ -11,7 +11,7 @@
      'DISTNAME' => 'Crypt-OpenSSL-RSA',
      'VERSION_FROM' => 'RSA.pm', # finds $VERSION
      'OBJECT' => 'RSA.o',

Modified: trunk/libcrypt-openssl-rsa-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcrypt-openssl-rsa-perl/debian/rules?rev=47847&op=diff
==============================================================================
--- trunk/libcrypt-openssl-rsa-perl/debian/rules (original)
+++ trunk/libcrypt-openssl-rsa-perl/debian/rules Fri Nov 27 04:11:39 2009
@@ -1,79 +1,4 @@
 #!/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
-
-include /usr/share/quilt/quilt.make
-
-PACKAGE=$(shell dh_listpackages)
-
-ifndef PERL
-PERL = /usr/bin/perl
-endif
-
-TMP     =$(CURDIR)/debian/$(PACKAGE)
-
-# Allow disabling build optimation by setting noopt in
-# $DEB_BUILD_OPTIONS
-CFLAGS = -Wall -g
-ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
-    CFLAGS += -O0
-else
-    CFLAGS += -O2
-endif
-
-
-build: build-stamp
-build-stamp: $(QUILT_STAMPFN)
-	dh_testdir
-
-	$(PERL) Makefile.PL INSTALLDIRS=vendor OPTIMIZE="$(CFLAGS)"
-	$(MAKE)
-	$(MAKE) test
-
-	touch $@
-
-clean: unpatch
-	dh_testdir
-	dh_testroot
-	dh_clean build-stamp install-stamp
-
-	# Makefile needs to be touched here as unpatch modifies Makefile.PL
-	[ ! -e Makefile ] || ( touch Makefile && $(MAKE) realclean )
-
-install: install-stamp
-install-stamp: build-stamp
-	dh_testdir
-	dh_testroot
-	dh_clean -k
-
-	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
-
-	[ ! -d $(TMP)/usr/share/perl5 ] || rmdir --parents --ignore-fail-on-non-empty --verbose $(TMP)/usr/share/perl5
-
-# Build architecture-dependent files here.
-binary-arch: build install
-	dh_testdir
-	dh_testroot
-	dh_installdocs README
-	dh_installchangelogs Changes
-	dh_strip
-	dh_compress
-	dh_fixperms
-	dh_installdeb
-	dh_perl
-	dh_shlibdeps
-	dh_gencontrol
-	dh_md5sums
-	dh_builddeb
-
-# 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 install
+%:
+	dh --with quilt $@




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