From owner-svn-ports-head@freebsd.org Wed Jun 22 15:19:52 2016 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 67556B72AB5; Wed, 22 Jun 2016 15:19:52 +0000 (UTC) (envelope-from feld@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 1EE7D1F33; Wed, 22 Jun 2016 15:19:52 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u5MFJpCB057836; Wed, 22 Jun 2016 15:19:51 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u5MFJoS4057832; Wed, 22 Jun 2016 15:19:50 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201606221519.u5MFJoS4057832@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Wed, 22 Jun 2016 15:19:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417314 - in head/devel: . py-jaraco.functools 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.22 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: Wed, 22 Jun 2016 15:19:52 -0000 Author: feld Date: Wed Jun 22 15:19:50 2016 New Revision: 417314 URL: https://svnweb.freebsd.org/changeset/ports/417314 Log: Additional functools in the spirit of stdlib's functools. WWW: https://pypi.python.org/pypi/jaraco.text Added: head/devel/py-jaraco.functools/ head/devel/py-jaraco.functools/Makefile (contents, props changed) head/devel/py-jaraco.functools/distinfo (contents, props changed) head/devel/py-jaraco.functools/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Jun 22 15:18:32 2016 (r417313) +++ head/devel/Makefile Wed Jun 22 15:19:50 2016 (r417314) @@ -4164,6 +4164,7 @@ SUBDIR += py-iterpipes SUBDIR += py-itools SUBDIR += py-jaraco.classes + SUBDIR += py-jaraco.functools SUBDIR += py-jaraco.timing SUBDIR += py-jaraco.util SUBDIR += py-jcc Added: head/devel/py-jaraco.functools/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-jaraco.functools/Makefile Wed Jun 22 15:19:50 2016 (r417314) @@ -0,0 +1,26 @@ +# Created by: Mark Felder +# $FreeBSD$ + +PORTNAME= jaraco.functools +PORTVERSION= 1.8.1 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= feld@FreeBSD.org +COMMENT= Additional functools for Python + +LICENSE= MIT + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools_scm>0:devel/py-setuptools_scm + +USES= python +USE_PYTHON= autoplist distutils + +.include + +.if ${PYTHON_VER} == "2.7" +BUILD_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}functools32>0:devel/py-functools32 +.endif + +.include Added: head/devel/py-jaraco.functools/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-jaraco.functools/distinfo Wed Jun 22 15:19:50 2016 (r417314) @@ -0,0 +1,2 @@ +SHA256 (jaraco.functools-1.8.1.tar.gz) = 766cd9caed0c18dfbf744dcd05d1f171f03e64ab8f7363d5b2521ba200383c5a +SIZE (jaraco.functools-1.8.1.tar.gz) = 6125 Added: head/devel/py-jaraco.functools/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-jaraco.functools/pkg-descr Wed Jun 22 15:19:50 2016 (r417314) @@ -0,0 +1,3 @@ +Additional functools in the spirit of stdlib's functools. + +WWW: https://pypi.python.org/pypi/jaraco.text