From owner-svn-ports-all@freebsd.org Tue Mar 27 16:29:08 2018 Return-Path: Delivered-To: svn-ports-all@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 2987CF6798C; Tue, 27 Mar 2018 16:29:08 +0000 (UTC) (envelope-from makc@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 D02E16FB64; Tue, 27 Mar 2018 16:29:07 +0000 (UTC) (envelope-from makc@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 CB2DD1E7FE; Tue, 27 Mar 2018 16:29:07 +0000 (UTC) (envelope-from makc@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w2RGT7pi028810; Tue, 27 Mar 2018 16:29:07 GMT (envelope-from makc@FreeBSD.org) Received: (from makc@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2RGT7xm028803; Tue, 27 Mar 2018 16:29:07 GMT (envelope-from makc@FreeBSD.org) Message-Id: <201803271629.w2RGT7xm028803@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: makc set sender to makc@FreeBSD.org using -f From: Max Brazhnikov Date: Tue, 27 Mar 2018 16:29:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r465721 - in head/misc: . py-python-utils X-SVN-Group: ports-head X-SVN-Commit-Author: makc X-SVN-Commit-Paths: in head/misc: . py-python-utils X-SVN-Commit-Revision: 465721 X-SVN-Commit-Repository: ports 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.25 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: Tue, 27 Mar 2018 16:29:08 -0000 Author: makc Date: Tue Mar 27 16:29:07 2018 New Revision: 465721 URL: https://svnweb.freebsd.org/changeset/ports/465721 Log: Add new port misc/py-python-utils: Collection of small Python functions and classes WWW: https://pypi.python.org/pypi/python-utils Added: head/misc/py-python-utils/ head/misc/py-python-utils/Makefile (contents, props changed) head/misc/py-python-utils/distinfo (contents, props changed) head/misc/py-python-utils/pkg-descr (contents, props changed) Modified: head/misc/Makefile Modified: head/misc/Makefile ============================================================================== --- head/misc/Makefile Tue Mar 27 15:50:17 2018 (r465720) +++ head/misc/Makefile Tue Mar 27 16:29:07 2018 (r465721) @@ -401,6 +401,7 @@ SUBDIR += py-pyfiglet SUBDIR += py-pyprind SUBDIR += py-python-geohash + SUBDIR += py-python-utils SUBDIR += py-qt4-demo SUBDIR += py-qt4-doc SUBDIR += py-qt5-demo Added: head/misc/py-python-utils/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/py-python-utils/Makefile Tue Mar 27 16:29:07 2018 (r465721) @@ -0,0 +1,22 @@ +# $FreeBSD$ + +PORTNAME= python-utils +PORTVERSION= 2.3.0 +CATEGORIES= misc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= makc@FreeBSD.org +COMMENT= Collection of small functions and classes + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>=0:devel/py-six@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pytest-runner>=0:devel/py-pytest-runner@${FLAVOR} + +NO_ARCH= yes +USES= python +USE_PYTHON= autoplist concurrent distutils + +.include Added: head/misc/py-python-utils/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/py-python-utils/distinfo Tue Mar 27 16:29:07 2018 (r465721) @@ -0,0 +1,3 @@ +TIMESTAMP = 1521804690 +SHA256 (python-utils-2.3.0.tar.gz) = 34aaf26b39b0b86628008f2ae0ac001b30e7986a8d303b61e1357dfcdad4f6d3 +SIZE (python-utils-2.3.0.tar.gz) = 19384 Added: head/misc/py-python-utils/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/py-python-utils/pkg-descr Tue Mar 27 16:29:07 2018 (r465721) @@ -0,0 +1,5 @@ +Python Utils is a collection of small Python functions and classes +which make common patterns shorter and easier. + +WWW: https://pypi.python.org/pypi/python-utils +WWW: https://github.com/WoLpH/python-utils