Date: Mon, 28 Dec 2015 13:20:14 +0000 (UTC) From: Martin Wilke <miwi@FreeBSD.org> 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 Message-ID: <201512281320.tBSDKErf099404@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <brendan+freebsd@bbqsrc.net> 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 <brendan+freebsd@bbqsrc.net> +# $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 <bsd.port.mk> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201512281320.tBSDKErf099404>