notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
All times are UTC
Ukraine
non port: graphics/py-graph-core/distinfo

Number of commits found: 5

Sunday, 19 Mar 2017
10:45 ehaupt search for other commits by this committer
- Unbreak port by using CHEESESHOP master site instead of GOOGLE_CODE as this
  port is still needed by ports (eg. mail/cleanup-maildir)
- While here add LICENSE
- The distfile checksums differ due to some minor changes [1], therefore also
  bump PORTREVISION

[1]
--- distfile changes begin here ---
diff -Nur google/python-graph-core-1.8.2/PKG-INFO
cheeseshop/python-graph-core-1.8.2/PKG-INFO
--- google/python-graph-core-1.8.2/PKG-INFO     2012-07-14 23:12:33.000000000
+0200
+++ cheeseshop/python-graph-core-1.8.2/PKG-INFO 2015-03-26 22:07:53.000000000
+0100
@@ -1,4 +1,4 @@
-Metadata-Version: 1.0
+Metadata-Version: 1.1
 Name: python-graph-core
 Version: 1.8.2
 Summary: A library for working with graphs in Python
diff -Nur google/python-graph-core-1.8.2/pygraph/algorithms/minmax.py
cheeseshop/python-graph-core-1.8.2/pygraph/algorithms/minmax.py
--- google/python-graph-core-1.8.2/pygraph/algorithms/minmax.py 2012-02-19
20:36:08.000000000 +0100
+++ cheeseshop/python-graph-core-1.8.2/pygraph/algorithms/minmax.py    
2014-03-11 00:04:22.000000000 +0100
@@ -132,6 +132,13 @@

 # Shortest Path

+def path(st, target):
+    if (target is None):
+        return []
+    else:
+        return [target] + path(st, st[target])
+
+
 def shortest_path(graph, source):
     """
     Return the shortest path distance between source and all other nodes using
Dijkstra's
diff -Nur google/python-graph-core-1.8.2/python_graph_core.egg-info/PKG-INFO
cheeseshop/python-graph-core-1.8.2/python_graph_core.egg-info/PKG-INFO
--- google/python-graph-core-1.8.2/python_graph_core.egg-info/PKG-INFO 
2012-07-14 23:12:33.000000000 +0200
+++ cheeseshop/python-graph-core-1.8.2/python_graph_core.egg-info/PKG-INFO     
2015-03-26 22:07:51.000000000 +0100
@@ -1,4 +1,4 @@
-Metadata-Version: 1.0
+Metadata-Version: 1.1
 Name: python-graph-core
 Version: 1.8.2
 Summary: A library for working with graphs in Python
diff -Nur
google/python-graph-core-1.8.2/python_graph_core.egg-info/top_level.txt
cheeseshop/python-graph-core-1.8.2/python_graph_core.egg-info/top_level.txt
--- google/python-graph-core-1.8.2/python_graph_core.egg-info/top_level.txt    
2012-07-14 23:12:33.000000000 +0200
+++ cheeseshop/python-graph-core-1.8.2/python_graph_core.egg-info/top_level.txt
2015-03-26 22:07:51.000000000 +0100
@@ -1,5 +1,5 @@
-pygraph/classes
-pygraph/readwrite
 pygraph
-pygraph/mixins
 pygraph/algorithms
+pygraph/classes
+pygraph/mixins
+pygraph/readwrite
--- distfile changes end here ---
Original commitRevision:436481 
Saturday, 17 Aug 2013
17:19 demon search for other commits by this committer
Update to version 1.8.2, take maintainership.
Original commitRevision:324859 
Sunday, 3 Jul 2011
14:12 ohauer search for other commits by this committer
-remove MD5
Original commit
Wednesday, 12 May 2010
13:36 yzlin search for other commits by this committer
- Update to 1.7.0

Approved by:    lwhsu/rafan (mentors)
Original commit
13:30 yzlin search for other commits by this committer
- Force commit to note repocopy:
  graphics/py-graph -> graphics/py-graph-core & graphics/py-graph-dot

PR:             ports/144971
Submitted by:   yzlin
Approved by:    lwhsu/rafan (mentors)
Repocopy by:    marcus
Original commit

Number of commits found: 5