diff options
author | miwi <miwi@FreeBSD.org> | 2015-12-11 22:01:03 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2015-12-11 22:01:03 +0800 |
commit | e9f34407b42fb1e69d60ad96dd5cc2556d053109 (patch) | |
tree | 82e79a0fbf73b2d29a61d0227786decb08ebe014 /devel | |
parent | a22be4c160a07022147f8cb44bd4a18d66eee300 (diff) | |
download | freebsd-ports-gnome-e9f34407b42fb1e69d60ad96dd5cc2556d053109.tar.gz freebsd-ports-gnome-e9f34407b42fb1e69d60ad96dd5cc2556d053109.tar.zst freebsd-ports-gnome-e9f34407b42fb1e69d60ad96dd5cc2556d053109.zip |
pkgconfig is a Python module to interface with the pkg-config command line tool.
WWW: https://pypi.python.org/pypi/pkgconfig
PR: 205136
Submitted by: Johannes Meixner <xmj@chaot.net>
Approved by: mat (mentor)
Differential Revision: D4511
Diffstat (limited to 'devel')
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/py-pkgconfig/Makefile | 19 | ||||
-rw-r--r-- | devel/py-pkgconfig/distinfo | 2 | ||||
-rw-r--r-- | devel/py-pkgconfig/files/patch-setup.py | 11 | ||||
-rw-r--r-- | devel/py-pkgconfig/pkg-descr | 3 |
5 files changed, 36 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index 327a349d7b10..155dc9ff8844 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -4178,6 +4178,7 @@ SUBDIR += py-phpserialize SUBDIR += py-pika SUBDIR += py-pip + SUBDIR += py-pkgconfig SUBDIR += py-plan SUBDIR += py-plex SUBDIR += py-pluggy diff --git a/devel/py-pkgconfig/Makefile b/devel/py-pkgconfig/Makefile new file mode 100644 index 000000000000..542d0dd35f70 --- /dev/null +++ b/devel/py-pkgconfig/Makefile @@ -0,0 +1,19 @@ +# Created by: Johannes Meixner <xmj@chaot.net> +# $FreeBSD$ + +PORTNAME= pkgconfig +PORTVERSION= 1.1.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= xmj@chaot.net +COMMENT= Python module to interface with the pkg-config command line tool + +LICENSE= MIT + +USES= python +USE_PYTHON= distutils autoplist +NO_ARCH= yes + +.include <bsd.port.mk> diff --git a/devel/py-pkgconfig/distinfo b/devel/py-pkgconfig/distinfo new file mode 100644 index 000000000000..7140ab174b96 --- /dev/null +++ b/devel/py-pkgconfig/distinfo @@ -0,0 +1,2 @@ +SHA256 (pkgconfig-1.1.0.tar.gz) = 709daaf077aa2b33bedac12706373412c3683576a43013bbaa529fc2769d80df +SIZE (pkgconfig-1.1.0.tar.gz) = 3887 diff --git a/devel/py-pkgconfig/files/patch-setup.py b/devel/py-pkgconfig/files/patch-setup.py new file mode 100644 index 000000000000..dbe81ac3ea8f --- /dev/null +++ b/devel/py-pkgconfig/files/patch-setup.py @@ -0,0 +1,11 @@ +--- setup.py.orig 2015-12-08 03:19:32 UTC ++++ setup.py +@@ -11,7 +11,5 @@ setup( + license='MIT', + packages=['pkgconfig'], + description="Interface Python with pkg-config", +- long_description=open('README.rst').read(), +- setup_requires=['nose>=1.0'], +- test_suite='test', ++ long_description=open('README.rst').read() + ) diff --git a/devel/py-pkgconfig/pkg-descr b/devel/py-pkgconfig/pkg-descr new file mode 100644 index 000000000000..6169d3f69948 --- /dev/null +++ b/devel/py-pkgconfig/pkg-descr @@ -0,0 +1,3 @@ +pkgconfig is a Python module to interface with the pkg-config command line tool. + +WWW: https://pypi.python.org/pypi/pkgconfig |