View | Details | Raw Unified | Return to bug 253691
Collapse All | Expand All

(-)MOVED (+1 lines)
Lines 16173-16175 Link Here
16173
textproc/py-sphinx18|textproc/py-sphinx|2021-02-17|Has expired: Old version, use textproc/py-sphinx instead
16173
textproc/py-sphinx18|textproc/py-sphinx|2021-02-17|Has expired: Old version, use textproc/py-sphinx instead
16174
audio/herrie||2021-02-17|Removed
16174
audio/herrie||2021-02-17|Removed
16175
sysutils/uefi-edk2-bhyve-devel|sysutils/uefi-edk2-bhyve|2021-02-17|Development version no longer necessary
16175
sysutils/uefi-edk2-bhyve-devel|sysutils/uefi-edk2-bhyve|2021-02-17|Development version no longer necessary
16176
graphics/py-graph-core|graphics/py-pygraph|2021-02-19|Is outdated and broken with python3, use graphics/py-pygraph instead
(-)graphics/Makefile (-1 / +1 lines)
Lines 824-830 Link Here
824
    SUBDIR += py-glfw
824
    SUBDIR += py-glfw
825
    SUBDIR += py-glooey
825
    SUBDIR += py-glooey
826
    SUBDIR += py-gphoto2
826
    SUBDIR += py-gphoto2
827
    SUBDIR += py-graph-core
828
    SUBDIR += py-graphviz
827
    SUBDIR += py-graphviz
829
    SUBDIR += py-graphy
828
    SUBDIR += py-graphy
830
    SUBDIR += py-gvgen
829
    SUBDIR += py-gvgen
Lines 865-870 Link Here
865
    SUBDIR += py-pygeos
864
    SUBDIR += py-pygeos
866
    SUBDIR += py-pyglet
865
    SUBDIR += py-pyglet
867
    SUBDIR += py-pyglet150
866
    SUBDIR += py-pyglet150
867
    SUBDIR += py-pygraph
868
    SUBDIR += py-pygraphviz
868
    SUBDIR += py-pygraphviz
869
    SUBDIR += py-pyinsane2
869
    SUBDIR += py-pyinsane2
870
    SUBDIR += py-pymaging
870
    SUBDIR += py-pymaging
(-)graphics/py-graph-core/Makefile (-20 lines)
Lines 1-20 Link Here
1
# Created by: Yi-Jheng Lin <yzlin@cs.nctu.edu.tw>
2
# $FreeBSD$
3
4
PORTNAME=	graph-core
5
PORTVERSION=	1.8.2
6
PORTREVISION=	2
7
CATEGORIES=	graphics python
8
MASTER_SITES=	CHEESESHOP
9
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
10
DISTNAME=	python-${PORTNAME}-${PORTVERSION}
11
12
MAINTAINER=	demon@FreeBSD.org
13
COMMENT=	Library for working with graphs in Python, core module
14
15
LICENSE=	MIT
16
17
USES=		python:3.6+
18
USE_PYTHON=	distutils autoplist
19
20
.include <bsd.port.mk>
(-)graphics/py-graph-core/distinfo (-3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1489918992
2
SHA256 (python-graph-core-1.8.2.tar.gz) = 503fa45f42b3bfa8b62db1357afaec52fe0e9104e27e905e24784ef62347fc21
3
SIZE (python-graph-core-1.8.2.tar.gz) = 27414
(-)graphics/py-graph-core/pkg-descr (-5 lines)
Lines 1-5 Link Here
1
A library for working with graphs in Python.
2
It provides a suitable data structure for representing graphs
3
and a whole set of important algorithms.
4
5
WWW: http://code.google.com/p/python-graph/
(-)graphics/py-pygraph/Makefile (-6 / +8 lines)
Lines 1-20 Link Here
1
# Created by: Yi-Jheng Lin <yzlin@cs.nctu.edu.tw>
1
# Created by: Yi-Jheng Lin <yzlin@cs.nctu.edu.tw>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	graph-core
4
PORTNAME=	pygraph
5
PORTVERSION=	1.8.2
5
DISTVERSION=	0.2.1-4
6
PORTREVISION=	2
6
DISTVERSIONSUFFIX=	-g037bb2f
7
CATEGORIES=	graphics python
7
CATEGORIES=	graphics python
8
MASTER_SITES=	CHEESESHOP
8
MASTER_SITES=	CHEESESHOP
9
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
9
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
10
DISTNAME=	python-${PORTNAME}-${PORTVERSION}
11
10
12
MAINTAINER=	demon@FreeBSD.org
11
MAINTAINER=	demon@FreeBSD.org
13
COMMENT=	Library for working with graphs in Python, core module
12
COMMENT=	Graph manipulation library in pure Python
14
13
15
LICENSE=	MIT
14
LICENSE=	MIT
15
LICENSE_FILE=	${WRKSRC}/LICENSE
16
16
17
USES=		python:3.6+
17
USES=		python:3.6+
18
USE_PYTHON=	distutils autoplist
18
USE_GITHUB=	yes
19
GH_ACCOUNT=	jciskey
20
USE_PYTHON=	autoplist distutils
19
21
20
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)graphics/py-pygraph/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1489918992
1
TIMESTAMP = 1613740798
2
SHA256 (python-graph-core-1.8.2.tar.gz) = 503fa45f42b3bfa8b62db1357afaec52fe0e9104e27e905e24784ef62347fc21
2
SHA256 (jciskey-pygraph-0.2.1-4-g037bb2f_GH0.tar.gz) = 59cdaccb7294cf413ec8d13ddf74f55ff5ba8d1c830551af6018dbefe5ea608e
3
SIZE (python-graph-core-1.8.2.tar.gz) = 27414
3
SIZE (jciskey-pygraph-0.2.1-4-g037bb2f_GH0.tar.gz) = 31765
(-)graphics/py-pygraph/pkg-descr (-4 / +7 lines)
Lines 1-5 Link Here
1
A library for working with graphs in Python.
1
Pygraph aims to be an easy-to-use and functional graph library that
2
It provides a suitable data structure for representing graphs
2
doesn't sacrifice advanced capabilities or usability in the process.
3
and a whole set of important algorithms.
4
3
5
WWW: http://code.google.com/p/python-graph/
4
By implementing the library in pure Python, it can be installed without
5
any dependencies aside from the Python core, enabling maximum ease of
6
use.
7
8
WWW: https://github.com/jciskey/pygraph

Return to bug 253691