mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
- Update to 1.3.1
PR: 128431 Submitted by: Wen Heping <wenheping@gmail.com> Approved by: maintainer
This commit is contained in:
parent
b7371c6f3a
commit
e2a6e49e57
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=223288
@ -6,7 +6,7 @@
|
||||
#
|
||||
|
||||
PORTNAME= graph
|
||||
PORTVERSION= 1.0.0
|
||||
PORTVERSION= 1.3.1
|
||||
CATEGORIES= graphics python
|
||||
MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE}
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
@ -33,6 +33,9 @@ EXAMPLESDIR= ${PREFIX}/share/examples/py-${PORTNAME}
|
||||
post-install:
|
||||
.if !defined(NOPORTDOCS)
|
||||
@${MKDIR} ${DOCSDIR}
|
||||
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
|
||||
${INSTALL_DATA} ${WRKSRC}/Changelog ${DOCSDIR}
|
||||
${INSTALL_DATA} ${WRKSRC}/COPYING ${DOCSDIR}
|
||||
${INSTALL_MAN} ${WRKSRC}/docs/* ${DOCSDIR}
|
||||
.endif
|
||||
.if !defined(NOPORTEXAMPLES)
|
||||
|
@ -1,3 +1,3 @@
|
||||
MD5 (python-graph-1.0.0.tar.bz2) = a9e4113446225a473f95f02779628de8
|
||||
SHA256 (python-graph-1.0.0.tar.bz2) = fde61fe2e6d9ec7e5dc36324eb80c718e01eaf8e7f2cc1f6f802dde6b0ec2e7d
|
||||
SIZE (python-graph-1.0.0.tar.bz2) = 29737
|
||||
MD5 (python-graph-1.3.1.tar.bz2) = 6f679f7cbe5104188faae360371f744f
|
||||
SHA256 (python-graph-1.3.1.tar.bz2) = 969f0cba956321576586d74375cad5af38d2bf23acd5d8b5628252e44c316df8
|
||||
SIZE (python-graph-1.3.1.tar.bz2) = 45372
|
||||
|
15
graphics/py-graph-core/files/patch-setup.py
Normal file
15
graphics/py-graph-core/files/patch-setup.py
Normal file
@ -0,0 +1,15 @@
|
||||
--- setup.py.orig 2008-10-28 21:22:57.000000000 +0800
|
||||
+++ setup.py 2008-10-28 21:23:17.000000000 +0800
|
||||
@@ -18,9 +18,9 @@
|
||||
name = appname,
|
||||
version = appversion,
|
||||
packages = ['graph'],
|
||||
- data_files = [(docfolder, ['README','Changelog','COPYING']),
|
||||
- (docfolder + docs, docfiles),
|
||||
- ],
|
||||
+# data_files = [(docfolder, ['README','Changelog','COPYING']),
|
||||
+# (docfolder + docs, docfiles),
|
||||
+# ],
|
||||
|
||||
# metadata
|
||||
author = "Pedro Matiello",
|
@ -19,7 +19,13 @@
|
||||
%%PYTHON_SITELIBDIR%%/graph/sorting.py
|
||||
%%PYTHON_SITELIBDIR%%/graph/sorting.pyc
|
||||
%%PYTHON_SITELIBDIR%%/graph/sorting.pyo
|
||||
%%PYTHON_SITELIBDIR%%/graph/traversal.py
|
||||
%%PYTHON_SITELIBDIR%%/graph/traversal.pyc
|
||||
%%PYTHON_SITELIBDIR%%/graph/traversal.pyo
|
||||
@dirrm %%PYTHON_SITELIBDIR%%/graph
|
||||
%%PORTDOCS%%%%DOCSDIR%%/README
|
||||
%%PORTDOCS%%%%DOCSDIR%%/Changelog
|
||||
%%PORTDOCS%%%%DOCSDIR%%/COPYING
|
||||
%%PORTDOCS%%%%DOCSDIR%%/api-objects.txt
|
||||
%%PORTDOCS%%%%DOCSDIR%%/class-tree.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/crarr.png
|
||||
@ -27,12 +33,15 @@
|
||||
%%PORTDOCS%%%%DOCSDIR%%/epydoc.js
|
||||
%%PORTDOCS%%%%DOCSDIR%%/graph-module.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/graph.accessibility-module.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/graph.digraph-class.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/graph.generators-module.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/graph.graph-class.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/graph.hypergraph-class.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/graph.minmax-module.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/graph.readwrite-module.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/graph.searching-module.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/graph.sorting-module.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/graph.traversal-module.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/help.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/identifier-index.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/index.html
|
||||
@ -40,7 +49,11 @@
|
||||
%%PORTDOCS%%%%DOCSDIR%%/redirect.html
|
||||
%%PORTDOCS%%@dirrm %%DOCSDIR%%
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/draw.py
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/drawhyper.py
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ex1.py
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/example.tls
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graph.xml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lts2graph.py
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/read.py
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/write.py
|
||||
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%
|
||||
|
@ -6,7 +6,7 @@
|
||||
#
|
||||
|
||||
PORTNAME= graph
|
||||
PORTVERSION= 1.0.0
|
||||
PORTVERSION= 1.3.1
|
||||
CATEGORIES= graphics python
|
||||
MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE}
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
@ -33,6 +33,9 @@ EXAMPLESDIR= ${PREFIX}/share/examples/py-${PORTNAME}
|
||||
post-install:
|
||||
.if !defined(NOPORTDOCS)
|
||||
@${MKDIR} ${DOCSDIR}
|
||||
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
|
||||
${INSTALL_DATA} ${WRKSRC}/Changelog ${DOCSDIR}
|
||||
${INSTALL_DATA} ${WRKSRC}/COPYING ${DOCSDIR}
|
||||
${INSTALL_MAN} ${WRKSRC}/docs/* ${DOCSDIR}
|
||||
.endif
|
||||
.if !defined(NOPORTEXAMPLES)
|
||||
|
@ -1,3 +1,3 @@
|
||||
MD5 (python-graph-1.0.0.tar.bz2) = a9e4113446225a473f95f02779628de8
|
||||
SHA256 (python-graph-1.0.0.tar.bz2) = fde61fe2e6d9ec7e5dc36324eb80c718e01eaf8e7f2cc1f6f802dde6b0ec2e7d
|
||||
SIZE (python-graph-1.0.0.tar.bz2) = 29737
|
||||
MD5 (python-graph-1.3.1.tar.bz2) = 6f679f7cbe5104188faae360371f744f
|
||||
SHA256 (python-graph-1.3.1.tar.bz2) = 969f0cba956321576586d74375cad5af38d2bf23acd5d8b5628252e44c316df8
|
||||
SIZE (python-graph-1.3.1.tar.bz2) = 45372
|
||||
|
15
graphics/py-graph-dot/files/patch-setup.py
Normal file
15
graphics/py-graph-dot/files/patch-setup.py
Normal file
@ -0,0 +1,15 @@
|
||||
--- setup.py.orig 2008-10-28 21:22:57.000000000 +0800
|
||||
+++ setup.py 2008-10-28 21:23:17.000000000 +0800
|
||||
@@ -18,9 +18,9 @@
|
||||
name = appname,
|
||||
version = appversion,
|
||||
packages = ['graph'],
|
||||
- data_files = [(docfolder, ['README','Changelog','COPYING']),
|
||||
- (docfolder + docs, docfiles),
|
||||
- ],
|
||||
+# data_files = [(docfolder, ['README','Changelog','COPYING']),
|
||||
+# (docfolder + docs, docfiles),
|
||||
+# ],
|
||||
|
||||
# metadata
|
||||
author = "Pedro Matiello",
|
@ -19,7 +19,13 @@
|
||||
%%PYTHON_SITELIBDIR%%/graph/sorting.py
|
||||
%%PYTHON_SITELIBDIR%%/graph/sorting.pyc
|
||||
%%PYTHON_SITELIBDIR%%/graph/sorting.pyo
|
||||
%%PYTHON_SITELIBDIR%%/graph/traversal.py
|
||||
%%PYTHON_SITELIBDIR%%/graph/traversal.pyc
|
||||
%%PYTHON_SITELIBDIR%%/graph/traversal.pyo
|
||||
@dirrm %%PYTHON_SITELIBDIR%%/graph
|
||||
%%PORTDOCS%%%%DOCSDIR%%/README
|
||||
%%PORTDOCS%%%%DOCSDIR%%/Changelog
|
||||
%%PORTDOCS%%%%DOCSDIR%%/COPYING
|
||||
%%PORTDOCS%%%%DOCSDIR%%/api-objects.txt
|
||||
%%PORTDOCS%%%%DOCSDIR%%/class-tree.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/crarr.png
|
||||
@ -27,12 +33,15 @@
|
||||
%%PORTDOCS%%%%DOCSDIR%%/epydoc.js
|
||||
%%PORTDOCS%%%%DOCSDIR%%/graph-module.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/graph.accessibility-module.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/graph.digraph-class.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/graph.generators-module.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/graph.graph-class.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/graph.hypergraph-class.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/graph.minmax-module.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/graph.readwrite-module.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/graph.searching-module.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/graph.sorting-module.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/graph.traversal-module.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/help.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/identifier-index.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/index.html
|
||||
@ -40,7 +49,11 @@
|
||||
%%PORTDOCS%%%%DOCSDIR%%/redirect.html
|
||||
%%PORTDOCS%%@dirrm %%DOCSDIR%%
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/draw.py
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/drawhyper.py
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ex1.py
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/example.tls
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graph.xml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lts2graph.py
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/read.py
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/write.py
|
||||
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%
|
||||
|
@ -6,7 +6,7 @@
|
||||
#
|
||||
|
||||
PORTNAME= graph
|
||||
PORTVERSION= 1.0.0
|
||||
PORTVERSION= 1.3.1
|
||||
CATEGORIES= graphics python
|
||||
MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE}
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
@ -33,6 +33,9 @@ EXAMPLESDIR= ${PREFIX}/share/examples/py-${PORTNAME}
|
||||
post-install:
|
||||
.if !defined(NOPORTDOCS)
|
||||
@${MKDIR} ${DOCSDIR}
|
||||
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
|
||||
${INSTALL_DATA} ${WRKSRC}/Changelog ${DOCSDIR}
|
||||
${INSTALL_DATA} ${WRKSRC}/COPYING ${DOCSDIR}
|
||||
${INSTALL_MAN} ${WRKSRC}/docs/* ${DOCSDIR}
|
||||
.endif
|
||||
.if !defined(NOPORTEXAMPLES)
|
||||
|
@ -1,3 +1,3 @@
|
||||
MD5 (python-graph-1.0.0.tar.bz2) = a9e4113446225a473f95f02779628de8
|
||||
SHA256 (python-graph-1.0.0.tar.bz2) = fde61fe2e6d9ec7e5dc36324eb80c718e01eaf8e7f2cc1f6f802dde6b0ec2e7d
|
||||
SIZE (python-graph-1.0.0.tar.bz2) = 29737
|
||||
MD5 (python-graph-1.3.1.tar.bz2) = 6f679f7cbe5104188faae360371f744f
|
||||
SHA256 (python-graph-1.3.1.tar.bz2) = 969f0cba956321576586d74375cad5af38d2bf23acd5d8b5628252e44c316df8
|
||||
SIZE (python-graph-1.3.1.tar.bz2) = 45372
|
||||
|
15
graphics/py-graph/files/patch-setup.py
Normal file
15
graphics/py-graph/files/patch-setup.py
Normal file
@ -0,0 +1,15 @@
|
||||
--- setup.py.orig 2008-10-28 21:22:57.000000000 +0800
|
||||
+++ setup.py 2008-10-28 21:23:17.000000000 +0800
|
||||
@@ -18,9 +18,9 @@
|
||||
name = appname,
|
||||
version = appversion,
|
||||
packages = ['graph'],
|
||||
- data_files = [(docfolder, ['README','Changelog','COPYING']),
|
||||
- (docfolder + docs, docfiles),
|
||||
- ],
|
||||
+# data_files = [(docfolder, ['README','Changelog','COPYING']),
|
||||
+# (docfolder + docs, docfiles),
|
||||
+# ],
|
||||
|
||||
# metadata
|
||||
author = "Pedro Matiello",
|
@ -19,7 +19,13 @@
|
||||
%%PYTHON_SITELIBDIR%%/graph/sorting.py
|
||||
%%PYTHON_SITELIBDIR%%/graph/sorting.pyc
|
||||
%%PYTHON_SITELIBDIR%%/graph/sorting.pyo
|
||||
%%PYTHON_SITELIBDIR%%/graph/traversal.py
|
||||
%%PYTHON_SITELIBDIR%%/graph/traversal.pyc
|
||||
%%PYTHON_SITELIBDIR%%/graph/traversal.pyo
|
||||
@dirrm %%PYTHON_SITELIBDIR%%/graph
|
||||
%%PORTDOCS%%%%DOCSDIR%%/README
|
||||
%%PORTDOCS%%%%DOCSDIR%%/Changelog
|
||||
%%PORTDOCS%%%%DOCSDIR%%/COPYING
|
||||
%%PORTDOCS%%%%DOCSDIR%%/api-objects.txt
|
||||
%%PORTDOCS%%%%DOCSDIR%%/class-tree.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/crarr.png
|
||||
@ -27,12 +33,15 @@
|
||||
%%PORTDOCS%%%%DOCSDIR%%/epydoc.js
|
||||
%%PORTDOCS%%%%DOCSDIR%%/graph-module.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/graph.accessibility-module.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/graph.digraph-class.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/graph.generators-module.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/graph.graph-class.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/graph.hypergraph-class.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/graph.minmax-module.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/graph.readwrite-module.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/graph.searching-module.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/graph.sorting-module.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/graph.traversal-module.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/help.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/identifier-index.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/index.html
|
||||
@ -40,7 +49,11 @@
|
||||
%%PORTDOCS%%%%DOCSDIR%%/redirect.html
|
||||
%%PORTDOCS%%@dirrm %%DOCSDIR%%
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/draw.py
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/drawhyper.py
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ex1.py
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/example.tls
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graph.xml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lts2graph.py
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/read.py
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/write.py
|
||||
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%
|
||||
|
Loading…
Reference in New Issue
Block a user