r42977 - in /trunk/libevent-perl/debian: changelog compat control docs rules

nhandler-guest at users.alioth.debian.org nhandler-guest at users.alioth.debian.org
Thu Aug 27 02:39:58 UTC 2009


Author: nhandler-guest
Date: Thu Aug 27 02:39:52 2009
New Revision: 42977

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=42977
Log:
* New upstream release
* debian/watch:
  - Update to ignore development releases.
* debian/compat:
  - Bump to 7
* debian/control:
  - Bump Standards-Version to 3.8.3
  - Add myself to list of Uploaders
  - Bump debhelper Build-Depends to >= 7
* debian/rules:
  - Switch to short rules format
* debian/docs:
  - Add file to install Tutorial.pdf

Added:
    trunk/libevent-perl/debian/docs
Modified:
    trunk/libevent-perl/debian/changelog
    trunk/libevent-perl/debian/compat
    trunk/libevent-perl/debian/control
    trunk/libevent-perl/debian/rules

Modified: trunk/libevent-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libevent-perl/debian/changelog?rev=42977&op=diff
==============================================================================
--- trunk/libevent-perl/debian/changelog (original)
+++ trunk/libevent-perl/debian/changelog Thu Aug 27 02:39:52 2009
@@ -1,10 +1,4 @@
-libevent-perl (1.12-1) UNRELEASED; urgency=low
-
-  * (NOT RELEASED YET) New upstream release
-
- -- Live session user <ubuntu at ubuntu>  Thu, 27 Aug 2009 01:09:18 +0000
-
-libevent-perl (1.11-2) UNRELEASED; urgency=low
+libevent-perl (1.12-1) unstable; urgency=low
 
   [ gregor herrmann ]
   * debian/control: Changed: Switched Vcs-Browser field to ViewSVN
@@ -14,9 +8,21 @@
   * debian/control: update my email address.
 
   [ Nathan Handler ]
-  * debian/watch: Update to ignore development releases.
+  * New upstream release
+  * debian/watch:
+    - Update to ignore development releases.
+  * debian/compat:
+    - Bump to 7
+  * debian/control:
+    - Bump Standards-Version to 3.8.3
+    - Add myself to list of Uploaders
+    - Bump debhelper Build-Depends to >= 7
+  * debian/rules:
+    - Switch to short rules format
+  * debian/docs:
+    - Add file to install Tutorial.pdf
 
- -- Rene Mayorga <rmayorga at debian.org>  Tue, 20 Jan 2009 01:27:19 -0600
+ -- Nathan Handler <nhandler at ubuntu.com>  Thu, 27 Aug 2009 02:39:28 +0000
 
 libevent-perl (1.11-1) unstable; urgency=low
 

Modified: trunk/libevent-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libevent-perl/debian/compat?rev=42977&op=diff
==============================================================================
--- trunk/libevent-perl/debian/compat (original)
+++ trunk/libevent-perl/debian/compat Thu Aug 27 02:39:52 2009
@@ -1,1 +1,1 @@
-6
+7

Modified: trunk/libevent-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libevent-perl/debian/control?rev=42977&op=diff
==============================================================================
--- trunk/libevent-perl/debian/control (original)
+++ trunk/libevent-perl/debian/control Thu Aug 27 02:39:52 2009
@@ -3,12 +3,12 @@
 Priority: optional
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Uploaders: Rene Mayorga <rmayorga at debian.org>,
- gregor herrmann <gregoa at debian.org>
-Standards-Version: 3.7.3
+ gregor herrmann <gregoa at debian.org>, Nathan handler <nhandler at ubuntu.com>
+Standards-Version: 3.8.3
 Homepage: http://search.cpan.org/dist/Event/
 Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libevent-perl/
 Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libevent-perl/
-Build-Depends: debhelper (>= 6), perl (>= 5.6.1-16)
+Build-Depends: debhelper (>= 7), perl (>= 5.6.1-16)
 
 Package: libevent-perl
 Architecture: any

Added: trunk/libevent-perl/debian/docs
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libevent-perl/debian/docs?rev=42977&op=file
==============================================================================
--- trunk/libevent-perl/debian/docs (added)
+++ trunk/libevent-perl/debian/docs Thu Aug 27 02:39:52 2009
@@ -1,0 +1,1 @@
+Tutorial.pdf

Modified: trunk/libevent-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libevent-perl/debian/rules?rev=42977&op=diff
==============================================================================
--- trunk/libevent-perl/debian/rules (original)
+++ trunk/libevent-perl/debian/rules Thu Aug 27 02:39:52 2009
@@ -1,74 +1,4 @@
 #!/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.
 
-# Uncomment this to turn on verbose mode.
-#export DH_VERBOSE=1
-
-# 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
-
-PERL   ?= /usr/bin/perl
-PACKAGE = $(shell dh_listpackages)
-TMP     = $(CURDIR)/debian/$(PACKAGE)
-
-# Allow disabling build optimisation 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=""
-	$(MAKE) test
-	touch $@
-
-clean:
-	dh_testdir
-	dh_testroot
-	dh_clean build-stamp install-stamp
-	[ ! -f Makefile ] || $(MAKE) realclean
-
-install: install-stamp
-install-stamp: build-stamp
-	dh_testdir
-	dh_testroot
-	dh_clean -k
-	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
-	[ ! -d $(TMP)/usr/share/perl5 ] || \
-		rmdir --ignore-fail-on-non-empty --parents --verbose \
-		$(TMP)/usr/share/perl5
-	touch $@
-
-# Build architecture-independent files here.
-binary-indep: build install
-# We have nothing to do here for an architecture-dependent package
-
-# Build architecture-dependent files here.
-binary-arch: build install
-	dh_testdir
-	dh_testroot
-	dh_installexamples demo/*
-	dh_installdocs Tutorial.pdf
-	dh_installchangelogs ChangeLog
-	dh_shlibdeps
-	dh_strip
-	dh_perl
-	dh_compress
-	dh_fixperms
-	dh_installdeb
-	dh_gencontrol
-	dh_md5sums
-	dh_builddeb
-
-binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary install
+%:
+	dh $@




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