New port: devel/py-weakrefmethod

A WeakMethod class for storing bound methods using weak references.

WWW: https://github.com/twang817/weakrefmethod
This commit is contained in:
Antoine Brodin 2016-10-25 20:33:00 +00:00
parent 8dcd7a0529
commit 1e8ba8fff1
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=424652
4 changed files with 33 additions and 0 deletions

View file

@ -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

View file

@ -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>

View file

@ -0,0 +1,3 @@
TIMESTAMP = 1477213167
SHA256 (weakrefmethod-1.0.3.tar.gz) = 37bc1fbb5575acf82172d4eb7b6fc4412d77d5a1d70dff2c1f8a4574301cda66
SIZE (weakrefmethod-1.0.3.tar.gz) = 7472

View file

@ -0,0 +1,3 @@
A WeakMethod class for storing bound methods using weak references.
WWW: https://github.com/twang817/weakrefmethod