Author: plessy
Date: 2010-06-25 11:19:49 +0000 (Fri, 25 Jun 2010)
New Revision: 4916

Added:
   trunk/packages/libbio-graphics-perl/trunk/debian/docs
   trunk/packages/libbio-graphics-perl/trunk/debian/examples
Modified:
   trunk/packages/libbio-graphics-perl/trunk/debian/changelog
   trunk/packages/libbio-graphics-perl/trunk/debian/control
   trunk/packages/libbio-graphics-perl/trunk/debian/copyright
   trunk/packages/libbio-graphics-perl/trunk/debian/rules
Log:
New upstream release, plus packaging updates.

 * Using Debhelper's ?\226?\128?\152dh?\226?\128?\153 (debian/rules, 
debian/docs, debian/examples).
 * Recommends libfile-spec-perl (debian/control).


Modified: trunk/packages/libbio-graphics-perl/trunk/debian/changelog
===================================================================
--- trunk/packages/libbio-graphics-perl/trunk/debian/changelog  2010-06-25 
10:25:07 UTC (rev 4915)
+++ trunk/packages/libbio-graphics-perl/trunk/debian/changelog  2010-06-25 
11:19:49 UTC (rev 4916)
@@ -1,3 +1,11 @@
+libbio-graphics-perl (2.10-1) unstable; urgency=low
+
+  * New upstream release.
+  * Using Debhelper's ‘dh’ (debian/rules, debian/docs, debian/examples).
+  * Recommends libfile-spec-perl (debian/control).
+
+ -- Charles Plessy <[email protected]>  Fri, 25 Jun 2010 20:02:53 +0900
+
 libbio-graphics-perl (2.02-1) unstable; urgency=low
 
   * New upstream release (more support for BigWig and BigBed data,

Modified: trunk/packages/libbio-graphics-perl/trunk/debian/control
===================================================================
--- trunk/packages/libbio-graphics-perl/trunk/debian/control    2010-06-25 
10:25:07 UTC (rev 4915)
+++ trunk/packages/libbio-graphics-perl/trunk/debian/control    2010-06-25 
11:19:49 UTC (rev 4916)
@@ -16,7 +16,7 @@
 Package: libbio-graphics-perl
 Architecture: all
 Depends: ${perl:Depends}, ${misc:Depends}, bioperl (>= 1.6.0), libgd-gd2-perl 
(>= 2.3)
-Recommends: libbio-scf-perl, libgd-svg-perl, libstatistics-descriptive-perl
+Recommends: libbio-scf-perl, libfile-spec-perl, libgd-svg-perl, 
libstatistics-descriptive-perl
 Conflicts: bioperl ( < 1.6.0)
 Description: Generate GD images of Bio::Seq objects
  The Bio::Graphics::Panel class provides drawing and formatting

Modified: trunk/packages/libbio-graphics-perl/trunk/debian/copyright
===================================================================
--- trunk/packages/libbio-graphics-perl/trunk/debian/copyright  2010-06-25 
10:25:07 UTC (rev 4915)
+++ trunk/packages/libbio-graphics-perl/trunk/debian/copyright  2010-06-25 
11:19:49 UTC (rev 4916)
@@ -70,9 +70,9 @@
 Copyright: © 2003 Cold Spring Harbor Laboratory
 License: GPL-1+ or Artistic-2
 
-Files: lib/Bio/Graphics/FeatureDir.pm, lib/Bio/Graphics/Glyph/pairplot.pm
-Copyright: 2009 Ontario Institute for Cancer Research,
-           2004 Cold Spring Harbor Laboratory
+Files: lib/Bio/Graphics/FeatureDir.pm, lib/Bio/Graphics/Glyph/pairplot.pm, 
lib/Bio/Graphics/Glyph/generic.pm
+Copyright: 2008,2009,2010 Ontario Institute for Cancer Research
+           2001,2004 Cold Spring Harbor Laboratory
 License: GPL-1+ or Artistic-2
 
 License: GPL-1+ or Artistic-2

Added: trunk/packages/libbio-graphics-perl/trunk/debian/docs
===================================================================
--- trunk/packages/libbio-graphics-perl/trunk/debian/docs                       
        (rev 0)
+++ trunk/packages/libbio-graphics-perl/trunk/debian/docs       2010-06-25 
11:19:49 UTC (rev 4916)
@@ -0,0 +1 @@
+README

Added: trunk/packages/libbio-graphics-perl/trunk/debian/examples
===================================================================
--- trunk/packages/libbio-graphics-perl/trunk/debian/examples                   
        (rev 0)
+++ trunk/packages/libbio-graphics-perl/trunk/debian/examples   2010-06-25 
11:19:49 UTC (rev 4916)
@@ -0,0 +1 @@
+eg/*

Modified: trunk/packages/libbio-graphics-perl/trunk/debian/rules
===================================================================
--- trunk/packages/libbio-graphics-perl/trunk/debian/rules      2010-06-25 
10:25:07 UTC (rev 4915)
+++ trunk/packages/libbio-graphics-perl/trunk/debian/rules      2010-06-25 
11:19:49 UTC (rev 4916)
@@ -1,64 +1,7 @@
 #!/usr/bin/make -f
-# This debian/rules file is provided as a template for normal perl
-# packages. It was created by Marc Brockschmidt <[email protected]> for
-# the Debian Perl Group (http://pkg-perl.alioth.debian.org/) but may
-# be used freely wherever it is useful.
-#
-# It was later modified by Jason Kohles <[email protected]>
-# http://www.jasonkohles.com/ to support Module::Build installed modules
 
-# Uncomment this to turn on verbose mode.
-#export DH_VERBOSE=1
+%:
+       dh $@
 
-# 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)
-
-build: build-stamp
-build-stamp:
-       dh_testdir
-       # Add commands to compile the package here
-       $(PERL) Build.PL installdirs=vendor
-       $(PERL) Build
-       $(PERL) Build test
-       touch $@
-
-clean:
-       dh_testdir
-       dh_testroot
-       dh_clean build-stamp install-stamp
-       # Add commands to clean up after the build process here
-       [ ! -f Build ] || $(PERL) Build --allow_mb_mismatch 1 distclean
-
-install: install-stamp
-install-stamp: build-stamp
-       dh_testdir
-       dh_testroot
-       dh_prep
-       # Add commands to install the package into $(TMP) here
-       $(PERL) Build install destdir=$(TMP) create_packlist=0
-       touch $@
-
-binary-arch:
-# We have nothing to do here for an architecture-independent package
-
-binary-indep: build install
-       dh_testdir
-       dh_testroot
-       dh_installdocs README
-       dh_installexamples eg/*
+override_dh_installchangelogs:
        dh_installchangelogs Changes
-       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


_______________________________________________
debian-med-commit mailing list
[email protected]
http://lists.alioth.debian.org/mailman/listinfo/debian-med-commit

Reply via email to