r4938 - in /packages/libregexp-copy-perl/trunk/debian: ./ changelog compat control copyright rules watch

eloy at users.alioth.debian.org eloy at users.alioth.debian.org
Mon Mar 12 16:50:41 CET 2007


Author: eloy
Date: Mon Mar 12 15:50:41 2007
New Revision: 4938

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

Added:
    packages/libregexp-copy-perl/trunk/debian/
    packages/libregexp-copy-perl/trunk/debian/changelog
    packages/libregexp-copy-perl/trunk/debian/compat
    packages/libregexp-copy-perl/trunk/debian/control
    packages/libregexp-copy-perl/trunk/debian/copyright
    packages/libregexp-copy-perl/trunk/debian/rules   (with props)
    packages/libregexp-copy-perl/trunk/debian/watch

Added: packages/libregexp-copy-perl/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libregexp-copy-perl/trunk/debian/changelog?rev=4938&op=file
==============================================================================
--- packages/libregexp-copy-perl/trunk/debian/changelog (added)
+++ packages/libregexp-copy-perl/trunk/debian/changelog Mon Mar 12 15:50:41 2007
@@ -1,0 +1,6 @@
+libregexp-copy-perl (0.06-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Krzysztof Krzyzaniak (eloy) <eloy at debian.org>  Mon, 12 Mar 2007 16:32:17 +0100
+

Added: packages/libregexp-copy-perl/trunk/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libregexp-copy-perl/trunk/debian/compat?rev=4938&op=file
==============================================================================
--- packages/libregexp-copy-perl/trunk/debian/compat (added)
+++ packages/libregexp-copy-perl/trunk/debian/compat Mon Mar 12 15:50:41 2007
@@ -1,0 +1,1 @@
+5

Added: packages/libregexp-copy-perl/trunk/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libregexp-copy-perl/trunk/debian/control?rev=4938&op=file
==============================================================================
--- packages/libregexp-copy-perl/trunk/debian/control (added)
+++ packages/libregexp-copy-perl/trunk/debian/control Mon Mar 12 15:50:41 2007
@@ -1,0 +1,18 @@
+Source: libregexp-copy-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 5.0.0), perl (>= 5.8.8-7)
+Uploaders: Krzysztof Krzyzaniak (eloy) <eloy at debian.org>
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Standards-Version: 3.7.2.1
+
+Package: libregexp-copy-perl
+Architecture: any
+Depends: ${perl:Depends}, ${misc:Depends}, ${shlib:Depends}
+Description:  copy Regexp objects
+ Regexp::Copy allows you to copy the contents of one Regexp object to another. 
+ A problem that I have found with the qr// operator is that the Regexp objects
+ that it creates are is impossible to dereference. This causes problems if you 
+ want to change the data in the regexp without losing the reference to it. 
+ Its impossible. Regexp::Copy allows you to change the Regexp by copying one 
+ object created through qr// to another.

Added: packages/libregexp-copy-perl/trunk/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libregexp-copy-perl/trunk/debian/copyright?rev=4938&op=file
==============================================================================
--- packages/libregexp-copy-perl/trunk/debian/copyright (added)
+++ packages/libregexp-copy-perl/trunk/debian/copyright Mon Mar 12 15:50:41 2007
@@ -1,0 +1,25 @@
+This is the debian package for the Regexp::Copy module.
+It was created by Krzysztof Krzyzaniak (eloy) <eloy at debian.org> using dh-make-perl.
+
+It was downloaded from http://search.cpan.org/~jduncan/Regexp-Copy-0.06/
+
+The upstream author is: 
+
+James A. Duncan <jduncan at fotango.com>.
+
+Copyright 2002 All Rights Reserved.
+
+This program is free software, you can redistribute it and/or modify it under
+the same terms as Perl itself.
+
+Perl is distributed under licenses:
+
+    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: packages/libregexp-copy-perl/trunk/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libregexp-copy-perl/trunk/debian/rules?rev=4938&op=file
==============================================================================
--- packages/libregexp-copy-perl/trunk/debian/rules (added)
+++ packages/libregexp-copy-perl/trunk/debian/rules Mon Mar 12 15:50:41 2007
@@ -1,0 +1,75 @@
+#!/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.
+
+export PERL_MM_USE_DEFAULT=1
+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:
+	dh_testdir
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	$(MAKE) OPTIMIZE="$(CFLAGS)" LD_RUN_PATH=""
+	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/share/perl5
+	touch install-stamp
+
+# 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_installdocs README
+	dh_installexamples 
+	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
+
+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

Propchange: packages/libregexp-copy-perl/trunk/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: packages/libregexp-copy-perl/trunk/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libregexp-copy-perl/trunk/debian/watch?rev=4938&op=file
==============================================================================
--- packages/libregexp-copy-perl/trunk/debian/watch (added)
+++ packages/libregexp-copy-perl/trunk/debian/watch Mon Mar 12 15:50:41 2007
@@ -1,0 +1,2 @@
+version=3
+http://www.cpan.org/modules/by-module/Regexp/Regexp-Copy-([\d\.]+)\.tar\.gz




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