r50336 - in /trunk/libgearman-client-perl/debian: ./ changelog compat control copyright docs rules watch

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Tue Jan 5 22:42:40 UTC 2010


Author: jawnsy-guest
Date: Tue Jan  5 22:42:34 2010
New Revision: 50336

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

Added:
    trunk/libgearman-client-perl/debian/
    trunk/libgearman-client-perl/debian/changelog
    trunk/libgearman-client-perl/debian/compat
    trunk/libgearman-client-perl/debian/control
    trunk/libgearman-client-perl/debian/copyright
    trunk/libgearman-client-perl/debian/docs
    trunk/libgearman-client-perl/debian/rules   (with props)
    trunk/libgearman-client-perl/debian/watch

Added: trunk/libgearman-client-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libgearman-client-perl/debian/changelog?rev=50336&op=file
==============================================================================
--- trunk/libgearman-client-perl/debian/changelog (added)
+++ trunk/libgearman-client-perl/debian/changelog Tue Jan  5 22:42:34 2010
@@ -1,0 +1,6 @@
+libgearman-client-perl (1.09-1) unstable; urgency=low
+
+  * Initial release (Closes: #429354)
+
+ -- Pascal Hakim <pasc at debian.org>  Thu, 23 Aug 2007 23:14:50 +1000
+

Added: trunk/libgearman-client-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libgearman-client-perl/debian/compat?rev=50336&op=file
==============================================================================
--- trunk/libgearman-client-perl/debian/compat (added)
+++ trunk/libgearman-client-perl/debian/compat Tue Jan  5 22:42:34 2010
@@ -1,0 +1,1 @@
+5

Added: trunk/libgearman-client-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libgearman-client-perl/debian/control?rev=50336&op=file
==============================================================================
--- trunk/libgearman-client-perl/debian/control (added)
+++ trunk/libgearman-client-perl/debian/control Tue Jan  5 22:42:34 2010
@@ -1,0 +1,21 @@
+Source: libgearman-client-perl
+Section: perl
+Priority: optional
+Maintainer: Pascal Hakim <pasc at debian.org>
+Build-Depends: debhelper (>= 5)
+Build-Depends-Indep: libstring-crc32-perl
+Standards-Version: 3.7.2
+
+Package: libgearman-client-perl
+Architecture: all
+Depends: libstring-crc32-perl, ${perl:Depends}
+Description: Client for gearman distributed job system
+ Gearman is a system to farm out work to other machines, dispatching function
+ calls to machines that are better suited to do work, to do work in parallel,
+ to load balance lots of function calls, or to call functions between
+ languages.
+ .
+ This package contains a client class for the Gearman distributed job system,
+ providing a framework for sending jobs to one or more Gearman servers.
+ .
+ URL: http://www.danga.com/gearman/

Added: trunk/libgearman-client-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libgearman-client-perl/debian/copyright?rev=50336&op=file
==============================================================================
--- trunk/libgearman-client-perl/debian/copyright (added)
+++ trunk/libgearman-client-perl/debian/copyright Tue Jan  5 22:42:34 2010
@@ -1,0 +1,30 @@
+This package was debianized by Pascal Hakim <pasc at debian.org> on
+Mon, 11 Jun 2007 23:15:18 +1000.
+
+It was downloaded from 
+http://search.cpan.org/CPAN/authors/id/B/BR/BRADFITZ/Gearman-1.09.tar.gz
+
+Upstream Author: Brad Fitzpatrick <brad at danga.com>
+
+Copyright: 2005-2007, Danga Interactive
+
+License:
+
+    You are granted a license to use it under the same terms as Perl itself.
+   
+    Perl is free software; you can redistribute it and/or modify
+    it under the terms of 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'.
+
+The Debian packaging is (C) 2007, Pascal Hakim <pasc at debian.org> and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL'.
+

Added: trunk/libgearman-client-perl/debian/docs
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libgearman-client-perl/debian/docs?rev=50336&op=file
==============================================================================
--- trunk/libgearman-client-perl/debian/docs (added)
+++ trunk/libgearman-client-perl/debian/docs Tue Jan  5 22:42:34 2010
@@ -1,0 +1,2 @@
+TODO
+HACKING

Added: trunk/libgearman-client-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libgearman-client-perl/debian/rules?rev=50336&op=file
==============================================================================
--- trunk/libgearman-client-perl/debian/rules (added)
+++ trunk/libgearman-client-perl/debian/rules Tue Jan  5 22:42:34 2010
@@ -1,0 +1,99 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Sample debian/rules that uses debhelper.
+# This file was originally written by Joey Hess and Craig Small.
+# As a special exception, when this file is copied by dh-make into a
+# dh-make output file, you may use that output file without restriction.
+# This special exception was added by Craig Small in version 0.37 of dh-make.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+
+
+
+CFLAGS = -Wall -g
+
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+	CFLAGS += -O0
+else
+	CFLAGS += -O2
+endif
+
+configure: configure-stamp
+configure-stamp:
+	dh_testdir
+	# Add here commands to configure the package.
+
+	touch configure-stamp
+
+
+build: build-stamp
+
+build-stamp: configure-stamp 
+	dh_testdir
+
+	# Add here commands to compile the package.
+
+	perl Makefile.PL verbose INSTALLDIRS=vendor
+	$(MAKE) OPTIMIZE="-O2 -g -Wall"
+	$(MAKE) test
+	touch $@
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp configure-stamp
+
+	# Add here commands to clean up after the build process.
+	-$(MAKE) clean
+	-rm Makefile.old
+	dh_clean 
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k 
+	dh_installdirs
+
+	# Add here commands to install the package into debian/libgearman-client-perl.
+	$(MAKE) DESTDIR=$(CURDIR)/debian/libgearman-client-perl install
+
+
+# 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_installchangelogs CHANGES
+	dh_installdocs
+	dh_installexamples
+#	dh_install
+#	dh_installmenu
+#	dh_installdebconf	
+#	dh_installlogrotate
+#	dh_installemacsen
+#	dh_installpam
+#	dh_installmime
+#	dh_python
+#	dh_installinit
+#	dh_installcron
+#	dh_installinfo
+	dh_installman
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+	dh_perl
+#	dh_makeshlibs
+	dh_installdeb
+	dh_shlibdeps
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install configure

Propchange: trunk/libgearman-client-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libgearman-client-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libgearman-client-perl/debian/watch?rev=50336&op=file
==============================================================================
--- trunk/libgearman-client-perl/debian/watch (added)
+++ trunk/libgearman-client-perl/debian/watch Tue Jan  5 22:42:34 2010
@@ -1,0 +1,10 @@
+# Example watch control file for uscan
+# Rename this file to "watch" and then you can run the "uscan" command
+# to check for upstream updates and more.
+# See uscan(1) for format
+
+# Compulsory line, this is a version 3 file
+version=3
+
+http://search.cpan.org/CPAN/authors/id/B/BR/BRADFITZ/Gearman-(.*).tar.gz debian uupdate
+




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