From owner-svn-ports-head@freebsd.org Sat Nov 28 16:04:58 2015 Return-Path: Delivered-To: svn-ports-head@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 7C4C9A3AB64; Sat, 28 Nov 2015 16:04:58 +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 mx1.freebsd.org (Postfix) with ESMTPS id 3117E115A; Sat, 28 Nov 2015 16:04:58 +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 tASG4voD013882; Sat, 28 Nov 2015 16:04:57 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tASG4vNG013879; Sat, 28 Nov 2015 16:04:57 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201511281604.tASG4vNG013879@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 28 Nov 2015 16:04:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r402543 - head/devel/py-pygit2 X-SVN-Group: ports-head 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.20 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: Sat, 28 Nov 2015 16:04:58 -0000 Author: sunpoet Date: Sat Nov 28 16:04:56 2015 New Revision: 402543 URL: https://svnweb.freebsd.org/changeset/ports/402543 Log: - Update to 0.23.2 - Strip shared library - Do not silence installation message - Update pkg-descr Changes: https://pypi.python.org/pypi/pygit2#changelog PR: 204864 Submitted by: sunpoet (myself) Approved by: wg (maintainer) Modified: head/devel/py-pygit2/Makefile head/devel/py-pygit2/distinfo head/devel/py-pygit2/pkg-descr Modified: head/devel/py-pygit2/Makefile ============================================================================== --- head/devel/py-pygit2/Makefile Sat Nov 28 16:04:52 2015 (r402542) +++ head/devel/py-pygit2/Makefile Sat Nov 28 16:04:56 2015 (r402543) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= pygit2 -PORTVERSION= 0.23.0 +PORTVERSION= 0.23.2 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -25,6 +25,6 @@ regression-test: build @cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test post-install: - @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/*.so + ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/_pygit2.so ${STAGEDIR}${PYTHON_SITELIBDIR}/pygit2/_libgit2.so .include Modified: head/devel/py-pygit2/distinfo ============================================================================== --- head/devel/py-pygit2/distinfo Sat Nov 28 16:04:52 2015 (r402542) +++ head/devel/py-pygit2/distinfo Sat Nov 28 16:04:56 2015 (r402543) @@ -1,2 +1,2 @@ -SHA256 (pygit2-0.23.0.tar.gz) = 90101a7a4b3c3563662c4047d5b6c52d84d9150570a7262e88892c604545dcb2 -SIZE (pygit2-0.23.0.tar.gz) = 453779 +SHA256 (pygit2-0.23.2.tar.gz) = ca24907fba277647334ef1b86478d8cf1c44fbcc952dc4e36c7aba1cdbf39d03 +SIZE (pygit2-0.23.2.tar.gz) = 464703 Modified: head/devel/py-pygit2/pkg-descr ============================================================================== --- head/devel/py-pygit2/pkg-descr Sat Nov 28 16:04:52 2015 (r402542) +++ head/devel/py-pygit2/pkg-descr Sat Nov 28 16:04:56 2015 (r402543) @@ -1,4 +1,5 @@ Pygit2 is a set of Python bindings to the libgit2 shared library, libgit2 -implements the core of Git. Pygit2 works with Python 2.6, 2.7, 3.1, 3.2 and 3.3. +implements the core of Git. Pygit2 works with Python 2.7, 3.2, 3.3, 3.4 and +pypy. WWW: http://www.pygit2.org/