From owner-svn-ports-all@freebsd.org Wed Aug 30 00:02:45 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 39E5FDE9175; Wed, 30 Aug 2017 00:02:45 +0000 (UTC) (envelope-from acm@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 12F6A763FA; Wed, 30 Aug 2017 00:02:45 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7U02ig4008176; Wed, 30 Aug 2017 00:02:44 GMT (envelope-from acm@FreeBSD.org) Received: (from acm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7U02hAQ008172; Wed, 30 Aug 2017 00:02:43 GMT (envelope-from acm@FreeBSD.org) Message-Id: <201708300002.v7U02hAQ008172@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: acm set sender to acm@FreeBSD.org using -f From: Jose Alonso Cardenas Marquez Date: Wed, 30 Aug 2017 00:02:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r448942 - in head/devel: . py-atpublic X-SVN-Group: ports-head X-SVN-Commit-Author: acm X-SVN-Commit-Paths: in head/devel: . py-atpublic X-SVN-Commit-Revision: 448942 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.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, 30 Aug 2017 00:02:45 -0000 Author: acm Date: Wed Aug 30 00:02:43 2017 New Revision: 448942 URL: https://svnweb.freebsd.org/changeset/ports/448942 Log: - New port: devel/py-atpublic This is a very simple decorator and function which populates a module's __all__ and optionally the module globals. This provides both a pure-Python implementation and an optional C implementation. WWW: http://public.readthedocs.io Added: head/devel/py-atpublic/ head/devel/py-atpublic/Makefile (contents, props changed) head/devel/py-atpublic/distinfo (contents, props changed) head/devel/py-atpublic/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Aug 29 23:59:25 2017 (r448941) +++ head/devel/Makefile Wed Aug 30 00:02:43 2017 (r448942) @@ -4224,6 +4224,7 @@ SUBDIR += py-atomiclong SUBDIR += py-atomicwrites SUBDIR += py-attrs + SUBDIR += py-atpublic SUBDIR += py-automaton SUBDIR += py-avro SUBDIR += py-babel Added: head/devel/py-atpublic/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-atpublic/Makefile Wed Aug 30 00:02:43 2017 (r448942) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= atpublic +PORTVERSION= 0.5 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= acm@FreeBSD.org +COMMENT= Very simple decorator and function of module's all + +LICENSE= APACHE20 + +USES= python:3 +USE_PYTHON= autoplist distutils + +MAKE_ENV= ATPUBLIC_BUILD_EXTENSION=1 + +.include Added: head/devel/py-atpublic/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-atpublic/distinfo Wed Aug 30 00:02:43 2017 (r448942) @@ -0,0 +1,3 @@ +TIMESTAMP = 1503269392 +SHA256 (atpublic-0.5.tar.gz) = 40a20d59bd64320888e81c21b43bd04d2187175f007bf6562c986f2830ac284a +SIZE (atpublic-0.5.tar.gz) = 13483 Added: head/devel/py-atpublic/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-atpublic/pkg-descr Wed Aug 30 00:02:43 2017 (r448942) @@ -0,0 +1,5 @@ +This is a very simple decorator and function which populates a module's +__all__ and optionally the module globals. This provides both a pure-Python +implementation and an optional C implementation. + +WWW: http://public.readthedocs.io