r14870 - in /trunk/libpoe-component-jobqueue-perl: Makefile.PL debian/ debian/changelog debian/compat debian/control debian/copyright debian/docs debian/rules

gregoa-guest at users.alioth.debian.org gregoa-guest at users.alioth.debian.org
Wed Feb 13 20:31:34 UTC 2008


Author: gregoa-guest
Date: Wed Feb 13 20:31:34 2008
New Revision: 14870

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

Added:
    trunk/libpoe-component-jobqueue-perl/debian/
    trunk/libpoe-component-jobqueue-perl/debian/changelog
    trunk/libpoe-component-jobqueue-perl/debian/compat
    trunk/libpoe-component-jobqueue-perl/debian/control
    trunk/libpoe-component-jobqueue-perl/debian/copyright
    trunk/libpoe-component-jobqueue-perl/debian/docs
    trunk/libpoe-component-jobqueue-perl/debian/rules   (with props)
Modified:
    trunk/libpoe-component-jobqueue-perl/Makefile.PL

Modified: trunk/libpoe-component-jobqueue-perl/Makefile.PL
URL: http://svn.debian.org/wsvn/trunk/libpoe-component-jobqueue-perl/Makefile.PL?rev=14870&op=diff
==============================================================================
--- trunk/libpoe-component-jobqueue-perl/Makefile.PL (original)
+++ trunk/libpoe-component-jobqueue-perl/Makefile.PL Wed Feb 13 20:31:34 2008
@@ -5,6 +5,16 @@
 
 # Touch CHANGES so it exists.
 open(CHANGES, ">>CHANGES") and close CHANGES;
+
+# MakeMaker doesn't know about arch :(
+sub MY::libscan {
+  my ($self, $path) = @_;
+  my ($dirs,$file) = ($self->splitpath($path))[1,2];
+
+  return '' if grep /^(?:\.arch-ids|{arch}|,,.*|\+\+.*)$/,
+    $self->splitdir($dirs), $file;
+  return $self->MM::libscan($path); 
+}
 
 WriteMakefile
   ( NAME         => 'POE::Component::JobQueue',

Added: trunk/libpoe-component-jobqueue-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libpoe-component-jobqueue-perl/debian/changelog?rev=14870&op=file
==============================================================================
--- trunk/libpoe-component-jobqueue-perl/debian/changelog (added)
+++ trunk/libpoe-component-jobqueue-perl/debian/changelog Wed Feb 13 20:31:34 2008
@@ -1,0 +1,49 @@
+libpoe-component-jobqueue-perl (0.5402-1) unstable; urgency=low
+
+  * New upstream release.
+  * Fix up debian/rules.
+  * Shift to Section: perl.
+  * Jump to debhelper version 4.
+  * Bump to Standards-Version 3.6.1; no changes needed.
+
+ -- Steve Kowalik <stevenk at debian.org>  Sat,  7 Aug 2004 14:03:29 +1000
+
+libpoe-component-jobqueue-perl (0.53-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- Steve Kowalik <stevenk at debian.org>  Fri, 27 Dec 2002 17:28:18 +1100
+
+libpoe-component-jobqueue-perl (0.51-5) unstable; urgency=low
+
+  * Fix up debian/copyright. (Closes: #157643) 
+
+ -- Steve Kowalik <stevenk at debian.org>  Sat, 24 Aug 2002 10:42:17 +1000
+
+libpoe-component-jobqueue-perl (0.51-4) unstable; urgency=low
+
+  * Fix debian/rules to use binary-indep to build. (Closes: #157504)
+  * Remove local-variables crap. 
+
+ -- Steve Kowalik <stevenk at debian.org>  Wed, 21 Aug 2002 23:32:26 +1000
+
+libpoe-component-jobqueue-perl (0.51-3) unstable; urgency=low
+
+  * The "What drugs was I on when I packaged this?!" release.
+  * Build-Depend-Indep on libpoe-perl. (Closes: #142141)
+  * Actually do what the previous changelog entry says, *sigh*.
+  * Probably be a good idea to Depend on libpoe-perl, too.
+
+ -- Steve Kowalik <stevenk at debian.org>  Thu, 11 Apr 2002 01:24:38 +1000
+
+libpoe-component-jobqueue-perl (0.51-2) unstable; urgency=low
+
+  * Changing from Build-Depends to Build-Depends-Indep. 
+
+ -- Steve Kowalik <stevenk at debian.org>  Sat,  3 Nov 2001 17:27:30 +1100
+
+libpoe-component-jobqueue-perl (0.51-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Steve Kowalik <stevenk at debian.org>  Thu, 25 Oct 2001 22:54:54 +1000

Added: trunk/libpoe-component-jobqueue-perl/debian/compat
URL: http://svn.debian.org/wsvn/trunk/libpoe-component-jobqueue-perl/debian/compat?rev=14870&op=file
==============================================================================
--- trunk/libpoe-component-jobqueue-perl/debian/compat (added)
+++ trunk/libpoe-component-jobqueue-perl/debian/compat Wed Feb 13 20:31:34 2008
@@ -1,0 +1,1 @@
+4

Added: trunk/libpoe-component-jobqueue-perl/debian/control
URL: http://svn.debian.org/wsvn/trunk/libpoe-component-jobqueue-perl/debian/control?rev=14870&op=file
==============================================================================
--- trunk/libpoe-component-jobqueue-perl/debian/control (added)
+++ trunk/libpoe-component-jobqueue-perl/debian/control Wed Feb 13 20:31:34 2008
@@ -1,0 +1,19 @@
+Source: libpoe-component-jobqueue-perl
+Section: perl
+Priority: optional
+Build-Depends-Indep: debhelper (>= 4.0.0), perl (>= 5.6.0-17), libpoe-perl
+Maintainer: Steve Kowalik <stevenk at debian.org>
+Standards-Version: 3.6.1
+
+Package: libpoe-component-jobqueue-perl
+Architecture: all
+Depends: ${perl:Depends}, libpoe-perl
+Description: POE component to manage queues and worker pools
+ POE::Component::JobQueue manages a finite pool of worker sessions as
+ they handle an arbitrarily large number of tasks.  It often is used as
+ a form of flow control, preventing a large group of tasks from
+ exhausting some sort of resource.
+ .
+ PoCo::JobQueue implements two kinds of queue: active and passive.
+ Both kinds of queue use a Worker coderef to spawn sessions that
+ process jobs, but how they use the Worker differs between them.

Added: trunk/libpoe-component-jobqueue-perl/debian/copyright
URL: http://svn.debian.org/wsvn/trunk/libpoe-component-jobqueue-perl/debian/copyright?rev=14870&op=file
==============================================================================
--- trunk/libpoe-component-jobqueue-perl/debian/copyright (added)
+++ trunk/libpoe-component-jobqueue-perl/debian/copyright Wed Feb 13 20:31:34 2008
@@ -1,0 +1,16 @@
+This package was debianized by Steve Kowalik <stevenk at debian.org> on
+Thu, 25 Oct 2001 22:54:54 +1000.
+
+It was downloaded from http://www.cpan.org/authors/id/R/RC/RCAPUTO/ 
+
+Upstream Author: Rocco Caputo <troc+cpan at netrus.net>  
+
+Copyright:
+
+POE::Component::JobQueue is Copyright 1999-2000 by Rocco Caputo. All
+rights are reserved. POE::Component::JobQueue is free software; you may
+redistribute it and/or modify it under the same terms as Perl itself.
+
+The GPL and Artistic licenses can be found under 
+/usr/share/common-licenses/{GPL,Artistic} on Debian systems.
+

Added: trunk/libpoe-component-jobqueue-perl/debian/docs
URL: http://svn.debian.org/wsvn/trunk/libpoe-component-jobqueue-perl/debian/docs?rev=14870&op=file
==============================================================================
--- trunk/libpoe-component-jobqueue-perl/debian/docs (added)
+++ trunk/libpoe-component-jobqueue-perl/debian/docs Wed Feb 13 20:31:34 2008
@@ -1,0 +1,1 @@
+README

Added: trunk/libpoe-component-jobqueue-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libpoe-component-jobqueue-perl/debian/rules?rev=14870&op=file
==============================================================================
--- trunk/libpoe-component-jobqueue-perl/debian/rules (added)
+++ trunk/libpoe-component-jobqueue-perl/debian/rules Wed Feb 13 20:31:34 2008
@@ -1,0 +1,69 @@
+#!/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.
+
+ifndef PERL
+PERL = /usr/bin/perl
+endif
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+
+
+	# Add here commands to compile the package.
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	$(MAKE) OPTIMIZE="-O2 -Wall"
+
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp
+
+	# Add here commands to clean up after the build process.
+	-$(MAKE) realclean
+
+	dh_clean
+
+install: 
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs
+
+	${MAKE} test 
+	$(MAKE) install PREFIX=$(CURDIR)/debian/libpoe-component-jobqueue-perl/usr
+
+
+# Build architecture-dependent files here.
+binary-arch: build install
+# We have nothing to do by default.
+
+# Build architecture-independent files here.
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installdocs 
+	dh_installexamples
+	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
+
+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: trunk/libpoe-component-jobqueue-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *




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