Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 11 Dec 2015 14:01:03 +0000 (UTC)
From:      Martin Wilke <miwi@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r403535 - in head/devel: . py-pkgconfig py-pkgconfig/files
Message-ID:  <201512111401.tBBE13K6079468@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: miwi
Date: Fri Dec 11 14:01:03 2015
New Revision: 403535
URL: https://svnweb.freebsd.org/changeset/ports/403535

Log:
  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

Added:
  head/devel/py-pkgconfig/
  head/devel/py-pkgconfig/Makefile   (contents, props changed)
  head/devel/py-pkgconfig/distinfo   (contents, props changed)
  head/devel/py-pkgconfig/files/
  head/devel/py-pkgconfig/files/patch-setup.py   (contents, props changed)
  head/devel/py-pkgconfig/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Fri Dec 11 13:58:46 2015	(r403534)
+++ head/devel/Makefile	Fri Dec 11 14:01:03 2015	(r403535)
@@ -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

Added: head/devel/py-pkgconfig/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pkgconfig/Makefile	Fri Dec 11 14:01:03 2015	(r403535)
@@ -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>

Added: head/devel/py-pkgconfig/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pkgconfig/distinfo	Fri Dec 11 14:01:03 2015	(r403535)
@@ -0,0 +1,2 @@
+SHA256 (pkgconfig-1.1.0.tar.gz) = 709daaf077aa2b33bedac12706373412c3683576a43013bbaa529fc2769d80df
+SIZE (pkgconfig-1.1.0.tar.gz) = 3887

Added: head/devel/py-pkgconfig/files/patch-setup.py
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pkgconfig/files/patch-setup.py	Fri Dec 11 14:01:03 2015	(r403535)
@@ -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()
+ )

Added: head/devel/py-pkgconfig/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pkgconfig/pkg-descr	Fri Dec 11 14:01:03 2015	(r403535)
@@ -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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201512111401.tBBE13K6079468>