r51537 - in /trunk/gearman-server/debian: changelog control rules

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Mon Jan 25 15:16:51 UTC 2010


Author: jawnsy-guest
Date: Mon Jan 25 15:16:45 2010
New Revision: 51537

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=51537
Log:
* Rewrite control description
* Use new short debhelper 7 rules format
* Standards-Version 3.8.3 (no changes)
* Move some deps to B-D-I where appropriate
* Rename binary package to libgearman-server-perl; the dummy
  package can be removed after upgrade to squeeze

Modified:
    trunk/gearman-server/debian/changelog
    trunk/gearman-server/debian/control
    trunk/gearman-server/debian/rules

Modified: trunk/gearman-server/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/gearman-server/debian/changelog?rev=51537&op=diff
==============================================================================
--- trunk/gearman-server/debian/changelog (original)
+++ trunk/gearman-server/debian/changelog Mon Jan 25 15:16:45 2010
@@ -1,8 +1,14 @@
-gearman-server (1.09-1.1) UNRELEASED; urgency=low
+gearman-server (1.09-2) UNRELEASED; urgency=low
 
   * Take over package (Closes: #549362)
+  * Rewrite control description
+  * Use new short debhelper 7 rules format
+  * Standards-Version 3.8.3 (no changes)
+  * Move some deps to B-D-I where appropriate
+  * Rename binary package to libgearman-server-perl; the dummy
+    package can be removed after upgrade to squeeze
 
- -- Jonathan Yu <jawnsy at cpan.org>  Sun, 17 Jan 2010 22:56:50 -0500
+ -- Jonathan Yu <jawnsy at cpan.org>  Mon, 25 Jan 2010 10:24:13 -0500
 
 gearman-server (1.09-1) unstable; urgency=low
 

Modified: trunk/gearman-server/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/gearman-server/debian/control?rev=51537&op=diff
==============================================================================
--- trunk/gearman-server/debian/control (original)
+++ trunk/gearman-server/debian/control Mon Jan 25 15:16:45 2010
@@ -1,17 +1,38 @@
 Source: gearman-server
 Section: perl
 Priority: optional
-Maintainer: Pascal Hakim <pasc at debian.org>
-Build-Depends: debhelper (>= 5), libgearman-client-perl, libdanga-socket-perl
-Standards-Version: 3.7.2
+Build-Depends: debhelper (>= 7)
+Build-Depends-Indep: perl, libgearman-client-perl, libdanga-socket-perl
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Jonathan Yu <jawnsy at cpan.org>
+Standards-Version: 3.8.3
+Homepage: http://search.cpan.org/dist/Gearman/
+Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/gearman-server/
+Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/gearman-server/
+
+Package: libgearman-server-perl
+Architecture: all
+Depends: libgearman-client-perl, libdanga-socket-perl, ${perl:Depends}
+Provides: gearman-server
+Conflicts: gearman-server (<< 1.09-1)
+Replaces: gearman-server (<< 1.09-1)
+Description: Gearman distributed job server and Perl interface
+ 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 even to call functions between
+ languages.
+ .
+ This package contains both the Gearman server as well as the corresponding
+ Perl bindings.
 
 Package: gearman-server
 Architecture: all
-Depends: libgearman-client-perl, libdanga-socket-perl, ${perl:Depends}
-Description: Gearman distributed job system
+Depends: ${misc:Depends}, libgearman-server-perl (>= 1.09-1)
+Description: transitional dummy package for libgearman-server-perl
  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
+ to load balance lots of function calls, or even to call functions between
  languages.
  .
- This package contains the Gearman server and Perl bindings
+ This is a transitional dummy package which can be safely removed after the
+ upgrade. The gearman-server package is now called libgearman-server-perl.

Modified: trunk/gearman-server/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/gearman-server/debian/rules?rev=51537&op=diff
==============================================================================
--- trunk/gearman-server/debian/rules (original)
+++ trunk/gearman-server/debian/rules Mon Jan 25 15:16:45 2010
@@ -1,97 +1,4 @@
 #!/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"
-	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/gearman-server.
-	$(MAKE) DESTDIR=$(CURDIR)/debian/gearman-server 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
+%:
+	dh $@




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