From owner-svn-ports-head@freebsd.org Sun Feb 25 05:32:52 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8714DF0760C; Sun, 25 Feb 2018 05:32:52 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 32ED96B825; Sun, 25 Feb 2018 05:32:52 +0000 (UTC) (envelope-from sunpoet@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2DF7178B; Sun, 25 Feb 2018 05:32:52 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w1P5Wqpe064799; Sun, 25 Feb 2018 05:32:52 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w1P5WpbI064796; Sun, 25 Feb 2018 05:32:51 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201802250532.w1P5WpbI064796@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 25 Feb 2018 05:32:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r462915 - in head/devel/py-pkgconfig: . files X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/devel/py-pkgconfig: . files X-SVN-Commit-Revision: 462915 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Feb 2018 05:32:52 -0000 Author: sunpoet Date: Sun Feb 25 05:32:51 2018 New Revision: 462915 URL: https://svnweb.freebsd.org/changeset/ports/462915 Log: Update to 1.3.1 - Update COMMENT - Add LICENSE_FILE - Add TEST_DEPENDS - Allow concurrent installation (USE_PYTHON=concurrent) - Add GitHub repository to WWW - Take maintainership Changes: https://github.com/matze/pkgconfig/blob/master/README.rst#changelog Deleted: head/devel/py-pkgconfig/files/ Modified: head/devel/py-pkgconfig/Makefile head/devel/py-pkgconfig/distinfo (contents, props changed) head/devel/py-pkgconfig/pkg-descr (contents, props changed) Modified: head/devel/py-pkgconfig/Makefile ============================================================================== --- head/devel/py-pkgconfig/Makefile Sun Feb 25 05:32:46 2018 (r462914) +++ head/devel/py-pkgconfig/Makefile Sun Feb 25 05:32:51 2018 (r462915) @@ -2,18 +2,21 @@ # $FreeBSD$ PORTNAME= pkgconfig -PORTVERSION= 1.2.2 +PORTVERSION= 1.3.1 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= ports@FreeBSD.org -COMMENT= Python module to interface with the pkg-config command line tool +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Interface Python with pkg-config LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}nose>=1.0:devel/py-nose@${FLAVOR} + USES= python -USE_PYTHON= distutils autoplist +USE_PYTHON= autoplist concurrent distutils NO_ARCH= yes .include Modified: head/devel/py-pkgconfig/distinfo ============================================================================== --- head/devel/py-pkgconfig/distinfo Sun Feb 25 05:32:46 2018 (r462914) +++ head/devel/py-pkgconfig/distinfo Sun Feb 25 05:32:51 2018 (r462915) @@ -1,3 +1,3 @@ -TIMESTAMP = 1481606929 -SHA256 (pkgconfig-1.2.2.tar.gz) = 3685ba02a9b72654a764b728b559f327e1dbd7dc6ebc310a1bd429666ee202aa -SIZE (pkgconfig-1.2.2.tar.gz) = 5305 +TIMESTAMP = 1519498717 +SHA256 (pkgconfig-1.3.1.tar.gz) = 0bc77e955a5990b466b7277234a88dc6a62f1f4388ac1e95469051c82a17fd80 +SIZE (pkgconfig-1.3.1.tar.gz) = 5713 Modified: head/devel/py-pkgconfig/pkg-descr ============================================================================== --- head/devel/py-pkgconfig/pkg-descr Sun Feb 25 05:32:46 2018 (r462914) +++ head/devel/py-pkgconfig/pkg-descr Sun Feb 25 05:32:51 2018 (r462915) @@ -1,3 +1,4 @@ pkgconfig is a Python module to interface with the pkg-config command line tool. WWW: https://pypi.python.org/pypi/pkgconfig +WWW: https://github.com/matze/pkgconfig