From owner-svn-ports-head@freebsd.org Tue Oct 25 20:33:02 2016 Return-Path: Delivered-To: svn-ports-head@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 92F0AC1CD3D; Tue, 25 Oct 2016 20:33:02 +0000 (UTC) (envelope-from antoine@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 4B8636D1; Tue, 25 Oct 2016 20:33:02 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u9PKX1b0054676; Tue, 25 Oct 2016 20:33:01 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u9PKX1oJ054672; Tue, 25 Oct 2016 20:33:01 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201610252033.u9PKX1oJ054672@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Tue, 25 Oct 2016 20:33:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r424652 - in head/devel: . py-weakrefmethod X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2016 20:33:02 -0000 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 + +.if ${PYTHON_REL} >= 3400 +IGNORE= is included in python 3.4+ +.endif + +.include 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