r22918 - in /trunk/libgraph-readwrite-perl/debian: changelog compat control copyright rules

xaviero-guest at users.alioth.debian.org xaviero-guest at users.alioth.debian.org
Tue Jul 8 13:39:01 UTC 2008


Author: xaviero-guest
Date: Tue Jul  8 13:39:01 2008
New Revision: 22918

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=22918
Log:
 * Update debian/copyright
 * Clean debian/rules
 * Fix some mistakes in debian/control
 * Add test to debian/rules
 * Add missing build-depends for tests
 * set UNRELEASED to unstable

Modified:
    trunk/libgraph-readwrite-perl/debian/changelog
    trunk/libgraph-readwrite-perl/debian/compat
    trunk/libgraph-readwrite-perl/debian/control
    trunk/libgraph-readwrite-perl/debian/copyright
    trunk/libgraph-readwrite-perl/debian/rules

Modified: trunk/libgraph-readwrite-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libgraph-readwrite-perl/debian/changelog?rev=22918&op=diff
==============================================================================
--- trunk/libgraph-readwrite-perl/debian/changelog (original)
+++ trunk/libgraph-readwrite-perl/debian/changelog Tue Jul  8 13:39:01 2008
@@ -1,4 +1,4 @@
-libgraph-readwrite-perl (2.00-1) UNRELEASED; urgency=low
+libgraph-readwrite-perl (2.00-1) unstable; urgency=low
 
   * Initial release (Closes: #487988)
 

Modified: trunk/libgraph-readwrite-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libgraph-readwrite-perl/debian/compat?rev=22918&op=diff
==============================================================================
--- trunk/libgraph-readwrite-perl/debian/compat (original)
+++ trunk/libgraph-readwrite-perl/debian/compat Tue Jul  8 13:39:01 2008
@@ -1,1 +1,1 @@
-6
+7

Modified: trunk/libgraph-readwrite-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libgraph-readwrite-perl/debian/control?rev=22918&op=diff
==============================================================================
--- trunk/libgraph-readwrite-perl/debian/control (original)
+++ trunk/libgraph-readwrite-perl/debian/control Tue Jul  8 13:39:01 2008
@@ -3,11 +3,12 @@
 Priority: optional
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Uploaders: Xavier Oswald <x.oswald at free.fr>
-Build-Depends: debhelper (>= 7), perl (>= 5.8)
+Build-Depends-Indep: perl (>= 5.8.7)
+Build-Depends: debhelper (>= 7), libmodule-build-perl, libgraph-perl, libxml-writer-perl, libxml-parser-perl
 Standards-Version: 3.8.0
 Homepage: http://search.cpan.org/dist/Graph-ReadWrite/
 Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libgraph-readwrite-perl/
-Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libigraph-readwrite-perl/
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libgraph-readwrite-perl/
 DM-Upload-Allowed: yes
 
 Package: libgraph-readwrite-perl
@@ -24,4 +25,4 @@
  Graph::Writer which is the Base class for classes which take an instance of
  the Graph class and write it out in a specific file format.
  .
- Supported formats : XML, Dot, VCG, daVinci, HTK
+ Supported formats: XML, Dot, VCG, daVinci, HTK

Modified: trunk/libgraph-readwrite-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libgraph-readwrite-perl/debian/copyright?rev=22918&op=diff
==============================================================================
--- trunk/libgraph-readwrite-perl/debian/copyright (original)
+++ trunk/libgraph-readwrite-perl/debian/copyright Tue Jul  8 13:39:01 2008
@@ -5,7 +5,11 @@
 
 Upstream Author: Neil Bowers <neil at bowers.com>
 
-Copyright: Copyright (c) 2001, 2002, 2005 Neil Bowers, neil at bowers.com>
+Copyright:
+ - Copyright (c) 2000-2005, Neil Bowers. All rights reserved.
+ - Copyright (c) 2000-2001, Canon Research Centre Europe. All rights reserved.
+ - Copyright (c) 2001, by Mark A. Hillebrand.  All rights reserved.
+
 
 This program is free software, you can redistribute it and/or modify it under
 the same terms as Perl itself.

Modified: trunk/libgraph-readwrite-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libgraph-readwrite-perl/debian/rules?rev=22918&op=diff
==============================================================================
--- trunk/libgraph-readwrite-perl/debian/rules (original)
+++ trunk/libgraph-readwrite-perl/debian/rules Tue Jul  8 13:39:01 2008
@@ -1,21 +1,17 @@
 #!/usr/bin/make -f
 
-PACKAGE=$(shell dh_listpackages)
-TMP = $(CURDIR)/debian/$(PACKAGE)
+export PERL_MM_USE_DEFAULT=1
 
-ifndef PERL
-PERL = /usr/bin/perl
-endif
-
-ifndef DIR
-DIR = $(CURDIR)/debian/libgraph-readwrite-perl
-endif
+PERL   ?= /usr/bin/perl
+PACKAGE = $(shell dh_listpackages)
+TMP     = $(CURDIR)/debian/$(PACKAGE)
 
 build: build-stamp
 build-stamp:
 	dh_testdir
-	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	$(PERL) Makefile.PL installdirs=vendor
 	$(MAKE)
+	$(MAKE) test
 	touch $@
 
 install: install-stamp
@@ -29,8 +25,8 @@
 clean:
 	dh_testdir
 	dh_testroot
-	[ ! -f Makefile ] || $(MAKE) realclean
-	dh_clean build-stamp install-stamp 
+	dh_clean build-stamp install-stamp
+	[ ! -f Build ] || $(PERL) Build --allow_mb_mismatch 1 distclean
 
 binary-arch: build install
 
@@ -41,11 +37,10 @@
 	dh_testroot
 	dh_installdocs TODO README
 	dh_installchangelogs ChangeLog 
+	dh_perl
 	dh_compress
 	dh_fixperms
-	dh_strip
 	dh_installdeb
-	dh_perl
 	dh_gencontrol
 	dh_md5sums
 	dh_builddeb




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