diff options
author | truckman <truckman@FreeBSD.org> | 2016-02-09 17:50:28 +0800 |
---|---|---|
committer | truckman <truckman@FreeBSD.org> | 2016-02-09 17:50:28 +0800 |
commit | bfef732f6452fb9c6bb6044e69475abd1bf06653 (patch) | |
tree | cc3746a15749318e0e201ee8afe26d9ab1406ebd /devel | |
parent | 4f681633761e8bd57b7c4f17a499461ebe32648b (diff) | |
download | freebsd-ports-gnome-bfef732f6452fb9c6bb6044e69475abd1bf06653.tar.gz freebsd-ports-gnome-bfef732f6452fb9c6bb6044e69475abd1bf06653.tar.zst freebsd-ports-gnome-bfef732f6452fb9c6bb6044e69475abd1bf06653.zip |
New port devel/py-total-ordering
functools.total_ordering backport for Python 2.x
Sponsored by: Farsight Security, Inc.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/py-total-ordering/Makefile | 16 | ||||
-rw-r--r-- | devel/py-total-ordering/distinfo | 2 | ||||
-rw-r--r-- | devel/py-total-ordering/pkg-descr | 3 |
4 files changed, 22 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index 1069e2bb47ce..be83de9d4e37 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -4384,6 +4384,7 @@ SUBDIR += py-thrift SUBDIR += py-timelib SUBDIR += py-tipper + SUBDIR += total-ordering SUBDIR += py-tox SUBDIR += py-trace2html SUBDIR += py-traitlets diff --git a/devel/py-total-ordering/Makefile b/devel/py-total-ordering/Makefile new file mode 100644 index 000000000000..98e28b5d15c0 --- /dev/null +++ b/devel/py-total-ordering/Makefile @@ -0,0 +1,16 @@ +# $FreeBSD$ + +PORTNAME= total-ordering +PORTVERSION= 0.1.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= truckman@FreeBSD.org +COMMENT= Backport functools.total_ordering to Python 2.x + +NO_ARCH= yes +USES= python:-2.7 +USE_PYTHON= distutils autoplist + +.include <bsd.port.mk> diff --git a/devel/py-total-ordering/distinfo b/devel/py-total-ordering/distinfo new file mode 100644 index 000000000000..c5140e98da4e --- /dev/null +++ b/devel/py-total-ordering/distinfo @@ -0,0 +1,2 @@ +SHA256 (total-ordering-0.1.0.tar.gz) = a14a2a138a52befaa02b3fd53eb3366f66da69020be299af3cf0b54c9441aacc +SIZE (total-ordering-0.1.0.tar.gz) = 1839 diff --git a/devel/py-total-ordering/pkg-descr b/devel/py-total-ordering/pkg-descr new file mode 100644 index 000000000000..b382e7a54b6a --- /dev/null +++ b/devel/py-total-ordering/pkg-descr @@ -0,0 +1,3 @@ +functools.total_ordering backport for Python 2.x + +WWW: https://github.com/kvesteri/total-ordering |