From owner-svn-ports-all@freebsd.org Fri Jun 15 23:25:58 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 3D63A1020602; Fri, 15 Jun 2018 23:25:58 +0000 (UTC) (envelope-from yuri@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 E747D68236; Fri, 15 Jun 2018 23:25:57 +0000 (UTC) (envelope-from yuri@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 ABCB31E2E7; Fri, 15 Jun 2018 23:25:57 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5FNPvTN030919; Fri, 15 Jun 2018 23:25:57 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5FNPuZB030915; Fri, 15 Jun 2018 23:25:56 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806152325.w5FNPuZB030915@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Fri, 15 Jun 2018 23:25:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472502 - in head/devel: . py-monty X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/devel: . py-monty X-SVN-Commit-Revision: 472502 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.26 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: Fri, 15 Jun 2018 23:25:58 -0000 Author: yuri Date: Fri Jun 15 23:25:56 2018 New Revision: 472502 URL: https://svnweb.freebsd.org/changeset/ports/472502 Log: New port: devel/py-monty: Supplementary useful functions for Python not in the standard library Added: head/devel/py-monty/ head/devel/py-monty/Makefile (contents, props changed) head/devel/py-monty/distinfo (contents, props changed) head/devel/py-monty/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Jun 15 22:34:29 2018 (r472501) +++ head/devel/Makefile Fri Jun 15 23:25:56 2018 (r472502) @@ -4694,6 +4694,7 @@ SUBDIR += py-mongoengine SUBDIR += py-mongokit SUBDIR += py-monotonic + SUBDIR += py-monty SUBDIR += py-more-itertools SUBDIR += py-mox SUBDIR += py-mox3 Added: head/devel/py-monty/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-monty/Makefile Fri Jun 15 23:25:56 2018 (r472502) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= monty +DISTVERSION= 1.0.3 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Supplementary useful functions for Python not in the standard library + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.rst + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${FLAVOR} + +USES= python +USE_PYTHON= distutils autoplist +NO_ARCH= yes + +.include Added: head/devel/py-monty/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-monty/distinfo Fri Jun 15 23:25:56 2018 (r472502) @@ -0,0 +1,3 @@ +TIMESTAMP = 1529104843 +SHA256 (monty-1.0.3.tar.gz) = 8cc68ee4717f2d306065679eba9bd13e40b40ac4b94937729effdd4ba21d948d +SIZE (monty-1.0.3.tar.gz) = 34364 Added: head/devel/py-monty/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-monty/pkg-descr Fri Jun 15 23:25:56 2018 (r472502) @@ -0,0 +1,6 @@ +Monty is the missing complement to Python. Monty implements supplementary useful +functions for Python that are not part of the standard library. Examples include +useful utilities like transparent support for zipped files, useful design +patterns such as singleton and cached_class, and many more. + +WWW: https://github.com/materialsvirtuallab/monty