diff options
author | rm <rm@FreeBSD.org> | 2012-11-09 04:48:49 +0800 |
---|---|---|
committer | rm <rm@FreeBSD.org> | 2012-11-09 04:48:49 +0800 |
commit | 10cf352c23bbc8f744e8ff9e4308ab9a7ad35bca (patch) | |
tree | 43e5adff7566515419ecb0aa1f0f3da5a786ba18 | |
parent | 27da6837ca6206574b218865b5bd28c4760e5a5d (diff) | |
download | freebsd-ports-gnome-10cf352c23bbc8f744e8ff9e4308ab9a7ad35bca.tar.gz freebsd-ports-gnome-10cf352c23bbc8f744e8ff9e4308ab9a7ad35bca.tar.zst freebsd-ports-gnome-10cf352c23bbc8f744e8ff9e4308ab9a7ad35bca.zip |
This package is a setuptools plugin: it adds a file to the generated .egg-info
directory, capturing the information used by the setup.py test command when
running tests.
WWW: http://pypi.python.org/pypi/eggtestinfo
Feature safe: yes
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/py-eggtestinfo/Makefile | 19 | ||||
-rw-r--r-- | devel/py-eggtestinfo/distinfo | 2 | ||||
-rw-r--r-- | devel/py-eggtestinfo/pkg-descr | 5 |
4 files changed, 27 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index 722bee621fd8..5c48d3dc2be2 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -3314,6 +3314,7 @@ SUBDIR += py-distutils-extra SUBDIR += py-durus SUBDIR += py-dynrules + SUBDIR += py-eggtestinfo SUBDIR += py-elementtree SUBDIR += py-epsilon SUBDIR += py-event diff --git a/devel/py-eggtestinfo/Makefile b/devel/py-eggtestinfo/Makefile new file mode 100644 index 000000000000..3207aecd956f --- /dev/null +++ b/devel/py-eggtestinfo/Makefile @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= eggtestinfo +PORTVERSION= 0.3 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= rm@FreeBSD.org +COMMENT= Setuptools plugin that adds test information to .egg-info + +LICENSE= ZPL21 + +# Python3 ready +USE_PYTHON= yes +USE_PYDISTUTILS=easy_install +PLIST_FILES= %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%% + +.include <bsd.port.mk> diff --git a/devel/py-eggtestinfo/distinfo b/devel/py-eggtestinfo/distinfo new file mode 100644 index 000000000000..c45d6176cd11 --- /dev/null +++ b/devel/py-eggtestinfo/distinfo @@ -0,0 +1,2 @@ +SHA256 (eggtestinfo-0.3.tar.gz) = 4f4b49d2d1c57f1c99008eb2a2bc66926605b72b2ba2a489b6f429b4b59de768 +SIZE (eggtestinfo-0.3.tar.gz) = 3958 diff --git a/devel/py-eggtestinfo/pkg-descr b/devel/py-eggtestinfo/pkg-descr new file mode 100644 index 000000000000..60023766324c --- /dev/null +++ b/devel/py-eggtestinfo/pkg-descr @@ -0,0 +1,5 @@ +This package is a setuptools plugin: it adds a file to the generated .egg-info +directory, capturing the information used by the setup.py test command when +running tests. + +WWW: http://pypi.python.org/pypi/eggtestinfo |