From owner-svn-ports-all@freebsd.org Wed Apr 4 21:54:04 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 16671F796A6; Wed, 4 Apr 2018 21:54:04 +0000 (UTC) (envelope-from wg@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BCD6C76012; Wed, 4 Apr 2018 21:54:03 +0000 (UTC) (envelope-from wg@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B7ADF198C0; Wed, 4 Apr 2018 21:54:03 +0000 (UTC) (envelope-from wg@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w34Ls3HH079585; Wed, 4 Apr 2018 21:54:03 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w34Ls3mr079578; Wed, 4 Apr 2018 21:54:03 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201804042154.w34Ls3mr079578@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Wed, 4 Apr 2018 21:54:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r466511 - in head/devel: . py-bidict X-SVN-Group: ports-head X-SVN-Commit-Author: wg X-SVN-Commit-Paths: in head/devel: . py-bidict X-SVN-Commit-Revision: 466511 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Apr 2018 21:54:04 -0000 Author: wg Date: Wed Apr 4 21:54:02 2018 New Revision: 466511 URL: https://svnweb.freebsd.org/changeset/ports/466511 Log: devel/py-bidict: Bidirectional map implementation and related functionality WWW: https://github.com/jab/bidict Added: head/devel/py-bidict/ head/devel/py-bidict/Makefile (contents, props changed) head/devel/py-bidict/distinfo (contents, props changed) head/devel/py-bidict/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Apr 4 21:30:35 2018 (r466510) +++ head/devel/Makefile Wed Apr 4 21:54:02 2018 (r466511) @@ -4291,6 +4291,7 @@ SUBDIR += py-backports_abc SUBDIR += py-bandit SUBDIR += py-bcdoc + SUBDIR += py-bidict SUBDIR += py-billiard SUBDIR += py-binplist SUBDIR += py-biplist Added: head/devel/py-bidict/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-bidict/Makefile Wed Apr 4 21:54:02 2018 (r466511) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= bidict +PORTVERSION= 0.15.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= wg@FreeBSD.org +COMMENT= Bidirectional map implementation and related functionality + +LICENSE= MPL20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools_scm>0:devel/py-setuptools_scm@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pytest-runner>0:devel/py-pytest-runner@${FLAVOR} + +USES= python +USE_PYTHON= autoplist concurrent distutils + +.include Added: head/devel/py-bidict/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-bidict/distinfo Wed Apr 4 21:54:02 2018 (r466511) @@ -0,0 +1,3 @@ +TIMESTAMP = 1522880253 +SHA256 (bidict-0.15.0.tar.gz) = fbc2cf5dee6a7a4c72eb80ecb4bc81560154d668c0f11729361e4baddba0b686 +SIZE (bidict-0.15.0.tar.gz) = 260807 Added: head/devel/py-bidict/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-bidict/pkg-descr Wed Apr 4 21:54:02 2018 (r466511) @@ -0,0 +1,3 @@ +Efficient, Pythonic bidirectional map implementation and related functionality. + +WWW: https://github.com/jab/bidict