Date: Tue, 25 Oct 2016 20:33:01 +0000 (UTC) From: Antoine Brodin <antoine@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r424652 - in head/devel: . py-weakrefmethod Message-ID: <201610252033.u9PKX1oJ054672@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: antoine Date: Tue Oct 25 20:33:00 2016 New Revision: 424652 URL: https://svnweb.freebsd.org/changeset/ports/424652 Log: New port: devel/py-weakrefmethod A WeakMethod class for storing bound methods using weak references. WWW: https://github.com/twang817/weakrefmethod Added: head/devel/py-weakrefmethod/ head/devel/py-weakrefmethod/Makefile (contents, props changed) head/devel/py-weakrefmethod/distinfo (contents, props changed) head/devel/py-weakrefmethod/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Oct 25 20:32:10 2016 (r424651) +++ head/devel/Makefile Tue Oct 25 20:33:00 2016 (r424652) @@ -4615,6 +4615,7 @@ SUBDIR += py-warlock SUBDIR += py-watchdog SUBDIR += py-wcwidth + SUBDIR += py-weakrefmethod SUBDIR += py-weblib SUBDIR += py-wheel SUBDIR += py-wrapt Added: head/devel/py-weakrefmethod/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-weakrefmethod/Makefile Tue Oct 25 20:33:00 2016 (r424652) @@ -0,0 +1,26 @@ +# Created by: antoine@FreeBSD.org +# $FreeBSD$ + +PORTNAME= weakrefmethod +PORTVERSION= 1.0.3 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= antoine@FreeBSD.org +COMMENT= WeakMethod class for storing bound methods using weak references + +LICENSE= PSFL +LICENSE_FILE= ${WRKSRC}/LICENSE + +NO_ARCH= yes +USES= python +USE_PYTHON= distutils autoplist + +.include <bsd.port.pre.mk> + +.if ${PYTHON_REL} >= 3400 +IGNORE= is included in python 3.4+ +.endif + +.include <bsd.port.post.mk> Added: head/devel/py-weakrefmethod/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-weakrefmethod/distinfo Tue Oct 25 20:33:00 2016 (r424652) @@ -0,0 +1,3 @@ +TIMESTAMP = 1477213167 +SHA256 (weakrefmethod-1.0.3.tar.gz) = 37bc1fbb5575acf82172d4eb7b6fc4412d77d5a1d70dff2c1f8a4574301cda66 +SIZE (weakrefmethod-1.0.3.tar.gz) = 7472 Added: head/devel/py-weakrefmethod/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-weakrefmethod/pkg-descr Tue Oct 25 20:33:00 2016 (r424652) @@ -0,0 +1,3 @@ +A WeakMethod class for storing bound methods using weak references. + +WWW: https://github.com/twang817/weakrefmethod
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201610252033.u9PKX1oJ054672>