From owner-svn-ports-all@freebsd.org Wed Jul 4 02:48:46 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 A1DD71023507; Wed, 4 Jul 2018 02:48:46 +0000 (UTC) (envelope-from yuri@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 5762B7FBFE; Wed, 4 Jul 2018 02:48:46 +0000 (UTC) (envelope-from yuri@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 1E58D24DB0; Wed, 4 Jul 2018 02:48:46 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w642mkSL075872; Wed, 4 Jul 2018 02:48:46 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w642mjQD075868; Wed, 4 Jul 2018 02:48:45 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201807040248.w642mjQD075868@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Wed, 4 Jul 2018 02:48:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473864 - in head/devel: . py-distlib X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/devel: . py-distlib X-SVN-Commit-Revision: 473864 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.27 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 Jul 2018 02:48:47 -0000 Author: yuri Date: Wed Jul 4 02:48:45 2018 New Revision: 473864 URL: https://svnweb.freebsd.org/changeset/ports/473864 Log: New port: devel/py-distlib: Low-level components of distutils2 and higher-level APIs Added: head/devel/py-distlib/ head/devel/py-distlib/Makefile (contents, props changed) head/devel/py-distlib/distinfo (contents, props changed) head/devel/py-distlib/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Jul 4 02:41:30 2018 (r473863) +++ head/devel/Makefile Wed Jul 4 02:48:45 2018 (r473864) @@ -4477,6 +4477,7 @@ SUBDIR += py-dill SUBDIR += py-dirspec SUBDIR += py-dis3 + SUBDIR += py-distlib SUBDIR += py-distorm SUBDIR += py-django-rq SUBDIR += py-django-rq-dashboard Added: head/devel/py-distlib/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-distlib/Makefile Wed Jul 4 02:48:45 2018 (r473864) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= distlib +DISTVERSION= 0.2.7 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Low-level components of distutils2 and higher-level APIs + +LICENSE= PSFL +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +USES= python zip +USE_PYTHON= distutils autoplist +NO_ARCH= yes + +.include Added: head/devel/py-distlib/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-distlib/distinfo Wed Jul 4 02:48:45 2018 (r473864) @@ -0,0 +1,3 @@ +TIMESTAMP = 1530667208 +SHA256 (distlib-0.2.7.zip) = cd502c66fc27c535bab62dc4f482e403e2369c2c05281a79cc2d4e2f42a87f20 +SIZE (distlib-0.2.7.zip) = 560324 Added: head/devel/py-distlib/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-distlib/pkg-descr Wed Jul 4 02:48:45 2018 (r473864) @@ -0,0 +1,5 @@ +Distlib is a library which implements low-level functions that relate to +packaging and distribution of Python software. It is intended to be used +as the basis for third-party packaging tools. + +WWW: https://bitbucket.org/pypa/distlib