[libgraph-perl] 02/09: Imported Debian patch 1:0.65-1

gregor herrmann gregoa at debian.org
Sat Sep 19 19:40:45 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 8976a8be503be9edcefeb4796a87e0a554534bf6
Merge: 64a5a5b b99f57e
Author: Steinar H. Gunderson <sesse at debian.org>
Date:   Sun Jul 10 15:11:49 2005 +0200

    Imported Debian patch 1:0.65-1

 Changes                                  |  234 +-
 DESIGN                                   |   87 +
 DISCLAIMER                               |   18 -
 MANIFEST                                 |  152 +-
 META.yml                                 |    7 +-
 Makefile.PL                              |   36 +-
 README                                   |   35 +-
 RELEASE                                  |   67 +
 TODO                                     |   20 +
 debian/changelog                         |    7 +
 lib/Graph.pm                             | 3419 +++++++++++++++++++++++++++++-
 lib/Graph.pod                            | 2494 ++++++++++++++++++++++
 lib/Graph/AdjacencyMap.pm                |  461 ++++
 lib/Graph/AdjacencyMap/Heavy.pm          |  253 +++
 lib/Graph/AdjacencyMap/Light.pm          |  249 +++
 lib/Graph/AdjacencyMap/Vertex.pm         |  215 ++
 lib/Graph/AdjacencyMatrix.pm             |  223 ++
 lib/Graph/Attribute.pm                   |  130 ++
 lib/Graph/BFS.pm                         |   63 -
 lib/Graph/Base.pm                        | 2580 ----------------------
 lib/Graph/BitMatrix.pm                   |  227 ++
 lib/Graph/DFS.pm                         |   63 -
 lib/Graph/Directed.pm                    |   98 +-
 lib/Graph/HeapElem.pm                    |   82 -
 lib/Graph/MSTHeapElem.pm                 |   24 +
 lib/Graph/Matrix.pm                      |   82 +
 lib/Graph/SPTHeapElem.pm                 |   24 +
 lib/Graph/TransitiveClosure.pm           |  155 ++
 lib/Graph/TransitiveClosure/Matrix.pm    |  480 +++++
 lib/Graph/Traversal.pm                   |  900 +++++---
 lib/Graph/Traversal/BFS.pm               |   59 +
 lib/Graph/Traversal/DFS.pm               |   59 +
 lib/Graph/Undirected.pm                  |  108 +-
 lib/Graph/UnionFind.pm                   |  183 ++
 t/00_use.t                               |    3 +
 t/01_isa.t                               |   11 +
 t/02_derived.t                           |   15 +
 t/03_dgraph.t                            |    7 +
 t/04_ugraph.t                            |    7 +
 t/05_new.t                               |  121 ++
 t/06_gen.t                               |   22 +
 t/07_stringify.t                         |   38 +
 t/08_eq.t                                |   40 +
 t/09_has_vertices.t                      |   15 +
 t/10_vertices.t                          |   35 +
 t/10sssp.t                               |   15 -
 t/11_has_vertex.t                        |   18 +
 t/12_add_vertex.t                        |   15 +
 t/13_delete_vertex.t                     |   71 +
 t/14_has_edges.t                         |   15 +
 t/15_edges.t                             |   40 +
 t/16_has_edge.t                          |   26 +
 t/17_add_edge.t                          |   18 +
 t/18_delete_edge.t                       |   58 +
 t/19_countvertexed.t                     |   47 +
 t/20_multivertexed.t                     |  114 +
 t/21_refvertexed.t                       |   12 +
 t/22_hypervertexed.t                     |   12 +
 t/23_mixvertexed.t                       |   48 +
 t/24_countedged.t                        |   47 +
 t/25_multiedged.t                        |  115 +
 t/26_omnidirected.t                      |   12 +
 t/27_hyperedged.t                        |   12 +
 t/28_uniqedged.t                         |   21 +
 t/29_mixedged.t                          |   36 +
 t/30_hypervertex.t                       |   34 +
 t/31_hypervertex_edges.t                 |   33 +
 t/32_hyperedge.t                         |   37 +
 t/33_omnivertexed.t                      |   30 +
 t/34_uniqvertexed.t                      |   25 +
 t/35_omniuniqvertexed.t                  |   48 +
 t/36_hypervertex_implicit.t              |   31 +
 t/37_vertices_at.t                       |   32 +
 t/38_edges_at.t                          |   63 +
 t/39_edges_from.t                        |   52 +
 t/40_edges_to.t                          |   51 +
 t/41_add_path.t                          |   25 +
 t/42_has_path.t                          |   25 +
 t/43_delete_path.t                       |   22 +
 t/44_add_cycle.t                         |   25 +
 t/45_has_cycle.t                         |   25 +
 t/46_delete_cycle.t                      |   24 +
 t/47_get_vertex_count.t                  |   36 +
 t/48_get_edge_count.t                    |   36 +
 t/49_vertex_attributes.t                 |  157 ++
 t/50_multivertex_attributes.t            |  126 ++
 t/51_edge_attributes.t                   |  190 ++
 t/52_multiedge_attributes.t              |  139 ++
 t/53_graph_attributes.t                  |  131 ++
 t/54_attributes.t                        |   89 +
 t/55_neighbourhood.t                     |  123 ++
 t/56_degree.t                            |   58 +
 t/57_connections.t                       |   64 +
 t/58_dfs.t                               |  625 ++++++
 t/59_bfs.t                               |  178 ++
 t/60_connected.t                         |  325 +++
 t/61_bcc.t                               |  376 ++++
 t/62_scc.t                               |  159 ++
 t/63_mst.t                               |   73 +
 t/64_ref.t                               |  138 ++
 t/65_simple.t                            |  168 ++
 t/66_copy.t                              |  139 ++
 t/67_transpose.t                         |   97 +
 t/68_complete.t                          |   57 +
 t/69_complement.t                        |   57 +
 t/70_spt.t                               |  136 ++
 t/71_transitive.t                        |  403 ++++
 t/72_diameter.t                          |   62 +
 t/73_random.t                            |  105 +
 t/74_attribute_array.t                   |   15 +
 t/75_attribute_hash.t                    |   15 +
 t/76_adjacency.t                         |   45 +
 t/77_expect.t                            |   62 +
 t/78_unionfind.t                         |   35 +
 t/79_isomorphic.t                        |   70 +
 t/80_dump.t                              |   19 +
 t/81_cycle.t                             |   29 +
 t/82_bitmatrix.t                         |   51 +
 t/MyDGraph.pm                            |    4 +
 t/MyGraph.pm                             |    6 +
 t/MyUGraph.pm                            |    4 +
 t/{00directed.t => g02_00directed.t}     |   10 +-
 t/{01undirected.t => g02_01undirected.t} |    6 +-
 t/{02multiple.t => g02_02multiple.t}     |    4 +-
 t/{03degree.t => g02_03degree.t}         |    9 +-
 t/{04attribute.t => g02_04attribute.t}   |   26 +-
 t/{05copy.t => g02_05copy.t}             |    2 +-
 t/{06transpose.t => g02_06transpose.t}   |    2 +-
 t/{07complete.t => g02_07complete.t}     |    4 +-
 t/{08complement.t => g02_08complement.t} |    2 +-
 t/{09scc.t => g02_09scc.t}               |   34 +-
 t/u_bb_rv.t                              |   44 +
 t/u_jh_va.t                              |   34 +
 t/u_mn_va.t                              |   16 +
 t/u_ng_mst.t                             |  150 ++
 t/u_ng_path.t                            |  245 +++
 t/u_ng_scc.t                             |  464 ++++
 t/u_rb_cc.t                              |   11 +
 t/u_sn_sva.t                             |   28 +
 util/cover.sh                            |   10 +
 util/grand.pl                            |  121 ++
 util/renum.pl                            |   57 +
 util/size.pl                             |   38 +
 util/srand.pl                            |    2 +
 144 files changed, 17442 insertions(+), 3421 deletions(-)

diff --cc debian/changelog
index 8b34497,0000000..09add68
mode 100644,000000..100644
--- a/debian/changelog
+++ b/debian/changelog
@@@ -1,12 -1,0 +1,19 @@@
++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
 +

-- 
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