From owner-svn-ports-all@freebsd.org Fri Dec 11 14:01:05 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4040C9D77D6; Fri, 11 Dec 2015 14:01:05 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 196EC1A21; Fri, 11 Dec 2015 14:01:05 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tBBE14ZE079484; Fri, 11 Dec 2015 14:01:04 GMT (envelope-from miwi@FreeBSD.org) Received: (from miwi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tBBE13K6079468; Fri, 11 Dec 2015 14:01:03 GMT (envelope-from miwi@FreeBSD.org) Message-Id: <201512111401.tBBE13K6079468@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: miwi set sender to miwi@FreeBSD.org using -f From: Martin Wilke Date: Fri, 11 Dec 2015 14:01:03 +0000 (UTC) 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 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Dec 2015 14:01:05 -0000 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 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 +# $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 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