[Midnightbsd-cvs] mports [23374] trunk/devel: add some py stuff

laffer1 at midnightbsd.org laffer1 at midnightbsd.org
Sat May 5 17:38:33 EDT 2018


Revision: 23374
          http://svnweb.midnightbsd.org/mports/?rev=23374
Author:   laffer1
Date:     2018-05-05 17:38:32 -0400 (Sat, 05 May 2018)
Log Message:
-----------
add some py stuff

Modified Paths:
--------------
    trunk/devel/Makefile

Added Paths:
-----------
    trunk/devel/py-zope.component/
    trunk/devel/py-zope.component/Makefile
    trunk/devel/py-zope.component/distinfo
    trunk/devel/py-zope.component/pkg-descr
    trunk/devel/py-zope.event/
    trunk/devel/py-zope.event/Makefile
    trunk/devel/py-zope.event/distinfo
    trunk/devel/py-zope.event/pkg-descr
    trunk/devel/py-zope.interface/
    trunk/devel/py-zope.interface/Makefile
    trunk/devel/py-zope.interface/distinfo
    trunk/devel/py-zope.interface/pkg-descr

Modified: trunk/devel/Makefile
===================================================================
--- trunk/devel/Makefile	2018-05-05 21:36:12 UTC (rev 23373)
+++ trunk/devel/Makefile	2018-05-05 21:38:32 UTC (rev 23374)
@@ -496,6 +496,9 @@
 SUBDIR += py-wrapt
 SUBDIR += py-xdg
 SUBDIR += py-yaml
+SUBDIR += py-zope.component
+SUBDIR += py-zope.event
+SUBDIR += py-zope.interface
 SUBDIR += py27-setuptools
 SUBDIR += py3-dbus
 SUBDIR += py3-gobject3

Added: trunk/devel/py-zope.component/Makefile
===================================================================
--- trunk/devel/py-zope.component/Makefile	                        (rev 0)
+++ trunk/devel/py-zope.component/Makefile	2018-05-05 21:38:32 UTC (rev 23374)
@@ -0,0 +1,24 @@
+# Created by: Cheng-Lung Sung <clsung at FreeBSD.org>
+# $FreeBSD: head/devel/py-zope.component/Makefile 412346 2016-04-01 14:00:51Z mat $
+
+PORTNAME=	zope.component
+PORTVERSION=	4.2.2
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+DIST_SUBDIR=	zope
+
+MAINTAINER=	zope at FreeBSD.org
+COMMENT=	Zope Component Architecture
+
+LICENSE=	ZPL21
+LICENSE_FILE=	${WRKSRC}/LICENSE.txt
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}zope.event>=0:devel/py-zope.event \
+		${PYTHON_PKGNAMEPREFIX}zope.interface>=4.1.0:devel/py-zope.interface
+
+NO_ARCH=	yes
+USES=		python
+USE_PYTHON=	autoplist distutils
+
+.include <bsd.port.mk>


Property changes on: trunk/devel/py-zope.component/Makefile
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/devel/py-zope.component/distinfo
===================================================================
--- trunk/devel/py-zope.component/distinfo	                        (rev 0)
+++ trunk/devel/py-zope.component/distinfo	2018-05-05 21:38:32 UTC (rev 23374)
@@ -0,0 +1,2 @@
+SHA256 (zope/zope.component-4.2.2.tar.gz) = 282c112b55dd8e3c869a3571f86767c150ab1284a9ace2bdec226c592acaf81a
+SIZE (zope/zope.component-4.2.2.tar.gz) = 546598


Property changes on: trunk/devel/py-zope.component/distinfo
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/devel/py-zope.component/pkg-descr
===================================================================
--- trunk/devel/py-zope.component/pkg-descr	                        (rev 0)
+++ trunk/devel/py-zope.component/pkg-descr	2018-05-05 21:38:32 UTC (rev 23374)
@@ -0,0 +1,13 @@
+zope.component, together with zope.interface, provides facilities
+for defining, registering and looking up components.
+
+There are two basic kinds of components: adapters and utilities.
+
+Utilities are just components that provide an interface and that
+are looked up by an interface and a name.
+
+Adapters are components that are computed from other components
+to adapt them to some interface. Because they are computed from
+other objects, they are provided as factories, usually classes.
+
+WWW: https://pypi.python.org/pypi/zope.component/


Property changes on: trunk/devel/py-zope.component/pkg-descr
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/devel/py-zope.event/Makefile
===================================================================
--- trunk/devel/py-zope.event/Makefile	                        (rev 0)
+++ trunk/devel/py-zope.event/Makefile	2018-05-05 21:38:32 UTC (rev 23374)
@@ -0,0 +1,20 @@
+# $MidnightBSD$
+
+PORTNAME=	zope.event
+PORTVERSION=	4.1.0
+CATEGORIES=	devel python zope
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+DIST_SUBDIR=	zope
+
+MAINTAINER=	ports at MidnightBSD.org
+COMMENT=	Very basic event publishing system
+
+LICENSE=	zpl2.1
+LICENSE_FILE=	${WRKSRC}/LICENSE.txt
+
+NO_ARCH=	yes
+USES=		python
+USE_PYTHON=	autoplist distutils
+
+.include <bsd.port.mk>


Property changes on: trunk/devel/py-zope.event/Makefile
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/devel/py-zope.event/distinfo
===================================================================
--- trunk/devel/py-zope.event/distinfo	                        (rev 0)
+++ trunk/devel/py-zope.event/distinfo	2018-05-05 21:38:32 UTC (rev 23374)
@@ -0,0 +1,2 @@
+SHA256 (zope/zope.event-4.1.0.tar.gz) = dc7a59a2fd91730d3793131a5d261b29e93ec4e2a97f1bc487ce8defee2fe786
+SIZE (zope/zope.event-4.1.0.tar.gz) = 476047


Property changes on: trunk/devel/py-zope.event/distinfo
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/devel/py-zope.event/pkg-descr
===================================================================
--- trunk/devel/py-zope.event/pkg-descr	                        (rev 0)
+++ trunk/devel/py-zope.event/pkg-descr	2018-05-05 21:38:32 UTC (rev 23374)
@@ -0,0 +1,7 @@
+zope.event provides a simple event system on which application-specific
+event systems can be built.
+
+Application code can generate events without being concerned about the
+event-processing frameworks that might handle the events.
+
+WWW: https://pypi.python.org/pypi/zope.event/


Property changes on: trunk/devel/py-zope.event/pkg-descr
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/devel/py-zope.interface/Makefile
===================================================================
--- trunk/devel/py-zope.interface/Makefile	                        (rev 0)
+++ trunk/devel/py-zope.interface/Makefile	2018-05-05 21:38:32 UTC (rev 23374)
@@ -0,0 +1,22 @@
+# $MidnightBSD$
+
+PORTNAME=	zope.interface
+PORTVERSION=	4.1.3
+CATEGORIES=	devel python zope
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+DIST_SUBDIR=	zope
+
+MAINTAINER=	ports at MidnightBSD.org
+COMMENT=	Interfaces for Python
+
+LICENSE=	zpl2.1
+LICENSE_FILE=	${WRKSRC}/LICENSE.txt
+
+USES=		python
+USE_PYTHON=	autoplist distutils
+
+post-install:
+	${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/zope/interface/_zope_interface_coptimizations.so
+
+.include <bsd.port.mk>


Property changes on: trunk/devel/py-zope.interface/Makefile
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/devel/py-zope.interface/distinfo
===================================================================
--- trunk/devel/py-zope.interface/distinfo	                        (rev 0)
+++ trunk/devel/py-zope.interface/distinfo	2018-05-05 21:38:32 UTC (rev 23374)
@@ -0,0 +1,2 @@
+SHA256 (zope/zope.interface-4.1.3.tar.gz) = 2e221a9eec7ccc58889a278ea13dcfed5ef939d80b07819a9a8b3cb1c681484f
+SIZE (zope/zope.interface-4.1.3.tar.gz) = 141561


Property changes on: trunk/devel/py-zope.interface/distinfo
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/devel/py-zope.interface/pkg-descr
===================================================================
--- trunk/devel/py-zope.interface/pkg-descr	                        (rev 0)
+++ trunk/devel/py-zope.interface/pkg-descr	2018-05-05 21:38:32 UTC (rev 23374)
@@ -0,0 +1,6 @@
+This package provides an implementation of "object interfaces" for Python.
+Interfaces are a mechanism for labeling objects as conforming to a given API or
+contract. So, this package can be considered as implementation of the Design By
+Contract methodology support in Python.
+
+WWW: https://pypi.python.org/pypi/zope.interface/


Property changes on: trunk/devel/py-zope.interface/pkg-descr
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property


More information about the Midnightbsd-cvs mailing list