Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 30 Aug 2017 00:02:43 +0000 (UTC)
From:      Jose Alonso Cardenas Marquez <acm@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r448942 - in head/devel: . py-atpublic
Message-ID:  <201708300002.v7U02hAQ008172@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk>

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201708300002.v7U02hAQ008172>