From owner-svn-ports-head@freebsd.org Mon Dec 28 13:20:15 2015 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 B5875A53DCB; Mon, 28 Dec 2015 13:20:15 +0000 (UTC) (envelope-from miwi@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 793A119EC; Mon, 28 Dec 2015 13:20:15 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tBSDKEXN099408; Mon, 28 Dec 2015 13:20:14 GMT (envelope-from miwi@FreeBSD.org) Received: (from miwi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tBSDKErf099404; Mon, 28 Dec 2015 13:20:14 GMT (envelope-from miwi@FreeBSD.org) Message-Id: <201512281320.tBSDKErf099404@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: miwi set sender to miwi@FreeBSD.org using -f From: Martin Wilke Date: Mon, 28 Dec 2015 13:20:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r404629 - in head/ports-mgmt: . py-pytoport 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.20 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: Mon, 28 Dec 2015 13:20:15 -0000 Author: miwi Date: Mon Dec 28 13:20:14 2015 New Revision: 404629 URL: https://svnweb.freebsd.org/changeset/ports/404629 Log: pytoport provides a way to quickly generate the barebones of a Python package by simply providing the name of the module to the command. It accesses the PyPI JSON API and does its best to generate a fully functional Makefile and distinfo where sources are found. WWW: https://github.com/freebsd/pytoport PR: 205636 Submitted by: Brendan Molloy Added: head/ports-mgmt/py-pytoport/ head/ports-mgmt/py-pytoport/Makefile (contents, props changed) head/ports-mgmt/py-pytoport/distinfo (contents, props changed) head/ports-mgmt/py-pytoport/pkg-descr (contents, props changed) Modified: head/ports-mgmt/Makefile Modified: head/ports-mgmt/Makefile ============================================================================== --- head/ports-mgmt/Makefile Mon Dec 28 13:19:34 2015 (r404628) +++ head/ports-mgmt/Makefile Mon Dec 28 13:20:14 2015 (r404629) @@ -61,6 +61,7 @@ SUBDIR += poudriere SUBDIR += poudriere-devel SUBDIR += psearch + SUBDIR += py-pytoport SUBDIR += symports SUBDIR += tinderbox SUBDIR += tinderbox-devel Added: head/ports-mgmt/py-pytoport/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/ports-mgmt/py-pytoport/Makefile Mon Dec 28 13:20:14 2015 (r404629) @@ -0,0 +1,25 @@ +# Created by: Brendan Molloy +# $FreeBSD$ + +PORTNAME= pytoport +PORTVERSION= 0.2.0 +DISTVERSIONPREFIX= v +CATEGORIES= ports-mgmt python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= brendan+freebsd@bbqsrc.net +COMMENT= Generate FreeBSD ports from Python modules on PyPI + +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= rubygem-licensee>0:${PORTSDIR}/devel/rubygem-licensee + +USE_GITHUB= yes +GH_ACCOUNT= freebsd +GH_PROJECT= pytoport + +USES= python:3.2+ +USE_PYTHON= distutils autoplist + +.include Added: head/ports-mgmt/py-pytoport/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/ports-mgmt/py-pytoport/distinfo Mon Dec 28 13:20:14 2015 (r404629) @@ -0,0 +1,2 @@ +SHA256 (freebsd-pytoport-v0.2.0_GH0.tar.gz) = 44cfb9674596fa676b00cf319493608f2c755311baf48aebfb25065482bf46af +SIZE (freebsd-pytoport-v0.2.0_GH0.tar.gz) = 4594 Added: head/ports-mgmt/py-pytoport/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/ports-mgmt/py-pytoport/pkg-descr Mon Dec 28 13:20:14 2015 (r404629) @@ -0,0 +1,6 @@ +pytoport provides a way to quickly generate the barebones of a Python package +by simply providing the name of the module to the command. It accesses the +PyPI JSON API and does its best to generate a fully functional Makefile and +distinfo where sources are found. + +WWW: https://github.com/freebsd/pytoport