r1909 - in packages/libobject-signature-perl/trunk: . debian lib/Object t

Krzysztof Krzyzaniak eloy at costa.debian.org
Fri Jan 13 12:48:11 UTC 2006


Author: eloy
Date: 2006-01-13 12:48:10 +0000 (Fri, 13 Jan 2006)
New Revision: 1909

Added:
   packages/libobject-signature-perl/trunk/debian/
   packages/libobject-signature-perl/trunk/debian/changelog
   packages/libobject-signature-perl/trunk/debian/compat
   packages/libobject-signature-perl/trunk/debian/control
   packages/libobject-signature-perl/trunk/debian/copyright
   packages/libobject-signature-perl/trunk/debian/rules
   packages/libobject-signature-perl/trunk/debian/watch
Modified:
   packages/libobject-signature-perl/trunk/Changes
   packages/libobject-signature-perl/trunk/Makefile.PL
   packages/libobject-signature-perl/trunk/lib/Object/Signature.pm
   packages/libobject-signature-perl/trunk/t/01_compile.t
   packages/libobject-signature-perl/trunk/t/02_main.t
Log:
Load libobject-signature-perl-1.03 into
packages/libobject-signature-perl/trunk.



Property changes on: packages/libobject-signature-perl/trunk/Changes
___________________________________________________________________
Name: svn:executable
   - 
   + *


Property changes on: packages/libobject-signature-perl/trunk/Makefile.PL
___________________________________________________________________
Name: svn:executable
   - 
   + *

Added: packages/libobject-signature-perl/trunk/debian/changelog
===================================================================
--- packages/libobject-signature-perl/trunk/debian/changelog	2006-01-13 12:47:56 UTC (rev 1908)
+++ packages/libobject-signature-perl/trunk/debian/changelog	2006-01-13 12:48:10 UTC (rev 1909)
@@ -0,0 +1,6 @@
+libobject-signature-perl (1.03-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Krzysztof Krzyzaniak (eloy) <eloy at debian.org>  Wed, 28 Dec 2005 20:16:17 +0100
+

Added: packages/libobject-signature-perl/trunk/debian/compat
===================================================================
--- packages/libobject-signature-perl/trunk/debian/compat	2006-01-13 12:47:56 UTC (rev 1908)
+++ packages/libobject-signature-perl/trunk/debian/compat	2006-01-13 12:48:10 UTC (rev 1909)
@@ -0,0 +1 @@
+4

Added: packages/libobject-signature-perl/trunk/debian/control
===================================================================
--- packages/libobject-signature-perl/trunk/debian/control	2006-01-13 12:47:56 UTC (rev 1908)
+++ packages/libobject-signature-perl/trunk/debian/control	2006-01-13 12:48:10 UTC (rev 1909)
@@ -0,0 +1,20 @@
+Source: libobject-signature-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 4.0.2)
+Build-Depends-Indep: perl (>= 5.8.0-7), libmodule-install-perl
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Krzysztof Krzyzaniak (eloy) <eloy at debian.org>
+Standards-Version: 3.6.2
+
+Package: libobject-signature-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}
+Description: Signature - Generate cryptographic signatures for objects
+ Object::Signature is an abstract base class that you can inherit from in
+ order to allow your objects to generate unique cryptographic signatures.
+ .
+ The method used to generate the signature is based on Storable and
+ Digest::MD5. The object is fed to "Storable::nfreeze" to get a string,
+ which is then passed to Digest::MD5::md5_hex to get a unique 32
+ character hexidecimal signature.

Added: packages/libobject-signature-perl/trunk/debian/copyright
===================================================================
--- packages/libobject-signature-perl/trunk/debian/copyright	2006-01-13 12:47:56 UTC (rev 1908)
+++ packages/libobject-signature-perl/trunk/debian/copyright	2006-01-13 12:48:10 UTC (rev 1909)
@@ -0,0 +1,3 @@
+This is the debian package for the Object::Signature module.
+It was created by Krzysztof Krzyzaniak (eloy) <eloy at debian.org> using dh-make-perl.
+

Added: packages/libobject-signature-perl/trunk/debian/rules
===================================================================
--- packages/libobject-signature-perl/trunk/debian/rules	2006-01-13 12:47:56 UTC (rev 1908)
+++ packages/libobject-signature-perl/trunk/debian/rules	2006-01-13 12:48:10 UTC (rev 1909)
@@ -0,0 +1,65 @@
+#!/usr/bin/make -f
+# This debian/rules file is provided as a template for normal perl
+# packages. It was created by Marc Brockschmidt <marc at dch-faq.de> for
+# the Debian Perl Group (http://pkg-perl.alioth.debian.org/) but may
+# be used freely wherever it is useful.
+
+# If set to a true value then MakeMaker's prompt function will
+# always return the default without waiting for user input.
+export PERL_MM_USE_DEFAULT=1
+
+PACKAGE=$(shell dh_listpackages)
+
+ifndef PERL
+PERL = /usr/bin/perl
+endif
+
+TMP     =$(CURDIR)/debian/$(PACKAGE)
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	$(MAKE) OPTIMIZE="-Wall -O2 -g"
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	[ ! -f Makefile ] || $(MAKE) realclean
+	dh_clean build-stamp install-stamp
+
+install: build install-stamp
+install-stamp:
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	$(MAKE) test
+	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
+	rmdir --ignore-fail-on-non-empty --parents $(TMP)/usr/lib/perl5
+	touch install-stamp
+
+binary-arch:
+# We have nothing to do by default.
+
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+#	dh_installexamples
+	dh_installdocs README
+	dh_installchangelogs Changes
+	dh_perl
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+source diff:                                                                  
+	@echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary


Property changes on: packages/libobject-signature-perl/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
   + *

Added: packages/libobject-signature-perl/trunk/debian/watch
===================================================================
--- packages/libobject-signature-perl/trunk/debian/watch	2006-01-13 12:47:56 UTC (rev 1908)
+++ packages/libobject-signature-perl/trunk/debian/watch	2006-01-13 12:48:10 UTC (rev 1909)
@@ -0,0 +1,3 @@
+# format version number, currently 2; this line is compulsory!
+version=2
+http://mirrors.kernel.org/cpan/modules/by-module/Object/Object-Signature-([\.\d]+)\.tar\.gz


Property changes on: packages/libobject-signature-perl/trunk/lib/Object/Signature.pm
___________________________________________________________________
Name: svn:executable
   - 
   + *


Property changes on: packages/libobject-signature-perl/trunk/t/01_compile.t
___________________________________________________________________
Name: svn:executable
   - 
   + *


Property changes on: packages/libobject-signature-perl/trunk/t/02_main.t
___________________________________________________________________
Name: svn:executable
   - 
   + *




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