From owner-svn-ports-all@freebsd.org Wed Apr 5 19:59:21 2017 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 E2721D2FA47; Wed, 5 Apr 2017 19:59:21 +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 A1AE6A12; Wed, 5 Apr 2017 19:59:21 +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 v35JxKt8042381; Wed, 5 Apr 2017 19:59:20 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v35JxKpE042378; Wed, 5 Apr 2017 19:59:20 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201704051959.v35JxKpE042378@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 5 Apr 2017 19:59:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r437832 - head/devel/py-wrapt 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.23 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: Wed, 05 Apr 2017 19:59:22 -0000 Author: sunpoet Date: Wed Apr 5 19:59:20 2017 New Revision: 437832 URL: https://svnweb.freebsd.org/changeset/ports/437832 Log: Update to 1.10.10 - Add LICENSE_FILE - Strip shared library - Update pkg-descr - Change WWW to PyPI - Take maintainership Changes: https://github.com/GrahamDumpleton/wrapt/blob/develop/docs/changes.rst Modified: head/devel/py-wrapt/Makefile head/devel/py-wrapt/distinfo head/devel/py-wrapt/pkg-descr Modified: head/devel/py-wrapt/Makefile ============================================================================== --- head/devel/py-wrapt/Makefile Wed Apr 5 19:59:15 2017 (r437831) +++ head/devel/py-wrapt/Makefile Wed Apr 5 19:59:20 2017 (r437832) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= wrapt -PORTVERSION= 1.10.8 +PORTVERSION= 1.10.10 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -10,8 +10,12 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Decorators, wrappers and monkey patching LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE -USES= python USE_PYTHON= autoplist distutils +USES= python + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/wrapt/_wrappers.so .include Modified: head/devel/py-wrapt/distinfo ============================================================================== --- head/devel/py-wrapt/distinfo Wed Apr 5 19:59:15 2017 (r437831) +++ head/devel/py-wrapt/distinfo Wed Apr 5 19:59:20 2017 (r437832) @@ -1,3 +1,3 @@ -TIMESTAMP = 1466486348 -SHA256 (wrapt-1.10.8.tar.gz) = 4ea17e814e39883c6cf1bb9b0835d316b2f69f0f0882ffe7dad1ede66ba82c73 -SIZE (wrapt-1.10.8.tar.gz) = 25183 +TIMESTAMP = 1491416518 +SHA256 (wrapt-1.10.10.tar.gz) = 42160c91b77f1bc64a955890038e02f2f72986c01d462d53cb6cb039b995cdd9 +SIZE (wrapt-1.10.10.tar.gz) = 27257 Modified: head/devel/py-wrapt/pkg-descr ============================================================================== --- head/devel/py-wrapt/pkg-descr Wed Apr 5 19:59:15 2017 (r437831) +++ head/devel/py-wrapt/pkg-descr Wed Apr 5 19:59:20 2017 (r437832) @@ -1,5 +1,11 @@ -The aim of the wrapt module is to provide a transparent object proxy for -Python, which can be used as the basis for the construction of function -wrappers and decorator functions. +The aim of the wrapt module is to provide a transparent object proxy for Python, +which can be used as the basis for the construction of function wrappers and +decorator functions. -WWW: https://github.com/GrahamDumpleton/wrapt +The wrapt module focuses very much on correctness. It therefore goes way beyond +existing mechanisms such as functools.wraps() to ensure that decorators preserve +introspectability, signatures, type checking abilities etc. The decorators that +can be constructed using this module will work in far more scenarios than +typical decorators and provide more predictable and consistent behaviour. + +WWW: https://pypi.python.org/pypi/wrapt