[libgraph-perl] 08/09: Imported Debian patch 1:0.96-1

gregor herrmann gregoa at debian.org
Sat Sep 19 19:40:46 UTC 2015


This is an automated email from the git hooks/post-receive script.

gregoa pushed a commit to branch master
in repository libgraph-perl.

commit 00cd2bcee4d3eefd66f9b8b1b8024d43507d0d7a
Merge: a2cb6e2 8c11749
Author: Steinar H. Gunderson <sesse at debian.org>
Date:   Sun Sep 8 10:59:42 2013 +0200

    Imported Debian patch 1:0.96-1

 Changes                          |  96 +++++++++-
 MANIFEST                         |   5 +-
 META.json                        |  46 +++++
 META.yml                         |  46 ++---
 README                           |  14 ++
 debian/changelog                 |  15 ++
 debian/control                   |   4 +-
 debian/rules                     |  12 +-
 lib/Graph.pm                     | 401 +++++++++++++++++++--------------------
 lib/Graph.pod                    | 112 +++++++----
 lib/Graph/AdjacencyMap.pm        |  27 +--
 lib/Graph/AdjacencyMap/Vertex.pm |  11 +-
 lib/Graph/Traversal.pm           |   2 +-
 lib/Graph/Traversal/BFS.pm       |   7 +-
 lib/Graph/Traversal/DFS.pm       |   5 +-
 t/62_bcc.t                       | 107 ++++++-----
 t/78_expect.t                    |   7 +-
 t/84_all_cessors.t               | 132 +++++++++++--
 t/u_bo.t                         | 224 ----------------------
 t/u_bo1.t                        |  80 --------
 t/u_cd_rv.t                      |  28 +++
 t/u_mo_rv.t                      |  76 ++++++++
 22 files changed, 778 insertions(+), 679 deletions(-)

diff --cc debian/changelog
index b048036,0000000..fde94ec
mode 100644,000000..100644
--- a/debian/changelog
+++ b/debian/changelog
@@@ -1,61 -1,0 +1,76 @@@
++libgraph-perl (1:0.96-1) unstable; urgency=low
++
++  * New upstream release (Closes: #634997).
++  * Various Lintian cleanup.
++    * Add ${misc:Depends}.
++    * Test for existence of Makefile instead of ignoring the result of
++      make realclean.
++    * Add build-arch and build-indep targets.
++    * Use DESTDIR instead of PREFIX with make install.
++  * Use dh_prep instead of dh_clean -k (debhelper warning).
++  * Bumped Standards-Version to 3.9.4; no other changes than those listed
++    above needed.
++
++ -- Steinar H. Gunderson <sesse at debian.org>  Sun, 08 Sep 2013 10:59:42 +0200
++
 +libgraph-perl (1:0.91-1) unstable; urgency=low
 +
 +  * New upstream release.
 +    * Fixes a bug where connected components could be wrong with unionfind=>1.
 +      (Closes: #542679)
 +  * Updated Standards-Version to 3.8.3 (no changes needed).
 +
 + -- Steinar H. Gunderson <sesse at debian.org>  Thu, 20 Aug 2009 21:42:24 +0200
 +
 +libgraph-perl (1:0.81-1) unstable; urgency=low
 +
 +  * New upstream release.
 +
 + -- Steinar H. Gunderson <sesse at debian.org>  Mon, 18 Jun 2007 01:08:00 +0200
 +
 +libgraph-perl (1:0.75-1) unstable; urgency=low
 +
 +  * New upstream release.
 +  * Make Build-depends-indep on debhelper and perl into ordinary
 +    build-depends, as we use them in non-indep targets.
 +
 + -- Steinar H. Gunderson <sesse at debian.org>  Thu, 15 Jun 2006 21:40:03 +0200
 +
 +libgraph-perl (1:0.69-1) unstable; urgency=low
 +
 +  * New upstream release.
 +  * Switch from debhelper v3 to v5 (no changes needed), and use debian/compat
 +    instead of setting DH_COMPAT in debian/rules. Update versioned
 +    build-dependency accordingly.
 +  * Update to Standards-Version 3.6.2.0 (no changes needed).
 +
 + -- Steinar H. Gunderson <sesse at debian.org>  Mon,  3 Apr 2006 02:59:06 +0200
 +
 +libgraph-perl (1:0.65-2) unstable; urgency=low
 +
 +  * New maintainer. Thanks to Matt Hope for maintaining the package up till
 +    now.
 +  * Ack my own NMU. (Closes: #299861).
 +  * Make long and short description more descriptive. (Closes: #317658)
 +
 + -- Steinar H. Gunderson <sesse at debian.org>  Sun, 17 Jul 2005 10:08:13 +0200
 +
 +libgraph-perl (1:0.65-1) unstable; urgency=low
 +
 +  * Non-Maintainer Upload.
 +  * New upstream release (Closes: #299861).
 +
 + -- Steinar H. Gunderson <sesse at debian.org>  Sun, 10 Jul 2005 15:11:49 +0200
 +
 +libgraph-perl (0.20102-1) unstable; urgency=low
 +
 +  * New upstream release
 +
 + -- Matt Hope <dopey at debian.org>  Tue, 13 Apr 2004 00:08:18 +1000
 +
 +libgraph-perl (0.20101-1) unstable; urgency=low
 +
 +  * Initial Package
 +
 + -- Matt Hope <dopey at debian.org>  Sat, 12 Apr 2003 20:26:03 +1000
 +
diff --cc debian/control
index 8c2613a,0000000..44428eb
mode 100644,000000..100644
--- a/debian/control
+++ b/debian/control
@@@ -1,19 -1,0 +1,19 @@@
 +Source: libgraph-perl
 +Section: perl
 +Priority: optional
 +Build-Depends: debhelper (>= 5.0.0), perl (>= 5.6.0)
 +Maintainer: Steinar H. Gunderson <sesse at debian.org>
- Standards-Version: 3.8.3
++Standards-Version: 3.9.4
 +
 +Package: libgraph-perl
 +Architecture: all
- Depends: libheap-perl, ${perl:Depends}
++Depends: libheap-perl, ${perl:Depends}, ${misc:Depends}
 +Description: Perl module for graph data structures and algorithms
 + This module contains the Graph module for Perl, a framework for
 + creating abstract data structures called graphs and hypergraphs.
 + (It is not for drawing any sort of graphics; for that, see the
 + GD:: or Graphics:: set of modules.) It also contains implementations
 + of several well-known algorithms that operate on graphs, such as
 + finding transitive closures, strongly connected components
 + (SCCs) and articulation points.
 +
diff --cc debian/rules
index 2fde11a,0000000..496da64
mode 100755,000000..100755
--- a/debian/rules
+++ b/debian/rules
@@@ -1,51 -1,0 +1,53 @@@
 +#!/usr/bin/make -f
 +
 +#export DH_VERBOSE=1
 +
 +PACKAGE=$(shell dh_listpackages)
 +
 +ifndef PERL
 +PERL=/usr/bin/perl
 +endif
 +
 +TMP     =$(CURDIR)/debian/$(PACKAGE)
 +
- build: Makefile
++build: build-arch build-indep
++build-indep: Makefile
++build-arch:
 +Makefile:
 +	dh_testdir
 +	$(PERL) Makefile.PL INSTALLDIRS=vendor
 +	$(MAKE) OPTIMIZE="-O2 -g -Wall"
 +
 +clean:
 +	dh_testdir
 +	dh_testroot
 +	rm -f build-stamp
- 	-$(MAKE) realclean
++	[ -f Makefile ] && $(MAKE) realclean
 +	dh_clean
 +
 +install: 
 +	dh_testdir
 +	dh_testroot
- 	dh_clean -k
++	dh_prep
 +	dh_installdirs
 +
- 	$(MAKE) install PREFIX=$(TMP)/usr
++	$(MAKE) install DESTDIR=$(TMP)
 +
 +
 +binary-arch: 
 +
- binary-indep: build install
++binary-indep: build-arch install
 +	dh_testdir
 +	dh_testroot
 +	dh_installdocs README
 +	dh_installchangelogs Changes
 +	dh_compress
 +	dh_fixperms
 +	dh_installdeb
 +	dh_perl 
 +	dh_gencontrol
 +	dh_md5sums
 +	dh_builddeb 
 +
 +binary: binary-indep binary-arch
 +.PHONY: build clean binary-indep binary-arch binary

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libgraph-perl.git



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