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

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

commit a2cb6e2d929a8223db88207c3470c4a0d31bf55a
Merge: 45a997c d1e249d
Author: Steinar H. Gunderson <se...@debian.org>
Date:   Thu Aug 20 21:42:24 2009 +0200

    Imported Debian patch 1:0.91-1

 Changes                               | 108 ++++++++
 MANIFEST                              |   9 +
 META.yml                              |  38 ++-
 Makefile.PL                           |  25 +-
 debian/changelog                      |   9 +
 debian/control                        |   2 +-
 lib/Graph.pm                          | 437 ++++++++++++++++++++++--------
 lib/Graph.pod                         | 178 +++++++++++--
 lib/Graph/AdjacencyMap.pm             |  16 +-
 lib/Graph/AdjacencyMap/Light.pm       |   2 +-
 lib/Graph/AdjacencyMap/Vertex.pm      |   2 +
 lib/Graph/MSTHeapElem.pm              |   4 +-
 lib/Graph/SPTHeapElem.pm              |   4 +-
 lib/Graph/TransitiveClosure.pm        |   2 +
 lib/Graph/TransitiveClosure/Matrix.pm |  12 +-
 lib/Graph/Traversal.pm                |   6 +-
 lib/Graph/UnionFind.pm                |   2 +-
 lib/Heap071/Elem.pm                   | 159 +++++++++++
 lib/Heap071/Fibonacci.pm              | 482 ++++++++++++++++++++++++++++++++++
 t/10_has_vertices.t                   |   2 +
 t/11_vertices.t                       |   2 +
 t/13_add_vertex.t                     |   6 +-
 t/14_delete_vertex.t                  |   5 +-
 t/16_edges.t                          |   7 +-
 t/19_delete_edge.t                    |   6 +-
 t/50_vertex_attributes.t              |   3 +-
 t/57_degree.t                         |  16 +-
 t/67_copy.t                           |  46 +++-
 t/73_diameter.t                       | 104 ++++----
 t/84_all_cessors.t                    | 157 +++++++++++
 t/99_misc.t                           |  97 +++++++
 t/u_an_uf.t                           |  20 ++
 t/u_dl_uf.t                           |  20 ++
 t/u_ro_ra.t                           |  24 ++
 t/u_sc_me.t                           |  36 +++
 t/u_te_ae.t                           |  42 ++-
 t/u_te_ea.t                           |  25 ++
 util/cover.sh                         |   2 +
 38 files changed, 1875 insertions(+), 242 deletions(-)

diff --cc debian/changelog
index 7c77eba,0000000..b048036
mode 100644,000000..100644
--- a/debian/changelog
+++ b/debian/changelog
@@@ -1,52 -1,0 +1,61 @@@
++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 <se...@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 <se...@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 <se...@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 <se...@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 <se...@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 <se...@debian.org>  Sun, 10 Jul 2005 15:11:49 +0200
 +
 +libgraph-perl (0.20102-1) unstable; urgency=low
 +
 +  * New upstream release
 +
 + -- Matt Hope <do...@debian.org>  Tue, 13 Apr 2004 00:08:18 +1000
 +
 +libgraph-perl (0.20101-1) unstable; urgency=low
 +
 +  * Initial Package
 +
 + -- Matt Hope <do...@debian.org>  Sat, 12 Apr 2003 20:26:03 +1000
 +
diff --cc debian/control
index ede87ec,0000000..8c2613a
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 <se...@debian.org>
- Standards-Version: 3.6.2.0
++Standards-Version: 3.8.3
 +
 +Package: libgraph-perl
 +Architecture: all
 +Depends: libheap-perl, ${perl: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.
 +

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

_______________________________________________
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits

Reply via email to