non port: graphics/py-graph-core/Makefile |
Number of commits found: 12 |
Monday, 28 Dec 2020
|
23:02 antoine
Drop python 2.7 support from a few ports
With hat: portmgr
 |
Sunday, 19 Mar 2017
|
10:45 ehaupt
- 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 ---
 |
Friday, 3 Mar 2017
|
16:00 mat
Mark the remaining ports depending on Google Code as DEPRECATED, with an
EXPIRATION_DATE at the end of April 2017.
In the past six months, about a third of the ports marked BROKEN because
they were hosted on Google Code have been fixed. The remaining must not
be of use to anyone.
With hat: portmgr
Sponsored by: Absolight
 |
Wednesday, 14 Sep 2016
|
15:59 mat
GOOGLE_CODE has gone away.
- If a port has another upstream, remove GOOGLE_CODE
- If a port only has GOOGLE_CODE mark it BROKEN
Some ports have a local mirror configured but for security reasons, it
is not considered upstream.
Sponsored by: Absolight
 |
Tuesday, 21 Oct 2014
|
16:36 mva
- Convert ports of graphics/ to new USES=python
Approved by: portmgr (implicit)
 |
Friday, 13 Jun 2014
|
07:36 olgeni
Remove indefinite articles and trailing periods from COMMENT, plus
minor COMMENT typos and surrounding whitespace fixes. Categories G-I.
CR: D201
Approved by: portmgr (bapt)
 |
Monday, 17 Feb 2014
|
05:22 miwi
- Convert to autoplist
- Stage support
- Bump PORTREV
 |
Friday, 20 Sep 2013
|
18:35 bapt
Add NO_STAGE all over the place in preparation for the staging support (cat:
graphics)
 |
Saturday, 17 Aug 2013
|
17:19 demon
Update to version 1.8.2, take maintainership.
 |
16:32 bdrewery
- Reset yzlin's ports
With hat: portmgr
 |
Wednesday, 12 May 2010
|
13:36 yzlin
- Update to 1.7.0
Approved by: lwhsu/rafan (mentors)
 |
13:30 yzlin
- 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
 |
Number of commits found: 12 |