View | Details | Raw Unified | Return to bug 205637
Collapse All | Expand All

(-)b/ports-mgmt/Makefile (+1 lines)
Lines 61-66 Link Here
61
    SUBDIR += poudriere
61
    SUBDIR += poudriere
62
    SUBDIR += poudriere-devel
62
    SUBDIR += poudriere-devel
63
    SUBDIR += psearch
63
    SUBDIR += psearch
64
    SUBDIR += py-pytoport
64
    SUBDIR += symports
65
    SUBDIR += symports
65
    SUBDIR += tinderbox
66
    SUBDIR += tinderbox
66
    SUBDIR += tinderbox-devel
67
    SUBDIR += tinderbox-devel
(-)b/ports-mgmt/py-pytoport/Makefile (+25 lines)
Added Link Here
1
# Created by: Brendan Molloy <brendan+freebsd@bbqsrc.net>
2
# $FreeBSD$
3
4
PORTNAME=	pytoport
5
PORTVERSION=	0.2.0
6
DISTVERSIONPREFIX=	v
7
CATEGORIES=	ports-mgmt python
8
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
9
10
MAINTAINER=	brendan+freebsd@bbqsrc.net
11
COMMENT=	Generate FreeBSD ports from Python modules on PyPI
12
13
LICENSE=	BSD2CLAUSE
14
LICENSE_FILE=	${WRKSRC}/LICENSE
15
16
RUN_DEPENDS=	rubygem-licensee>0:${PORTSDIR}/devel/rubygem-licensee
17
18
USE_GITHUB=	yes
19
GH_ACCOUNT=	freebsd
20
GH_PROJECT=	pytoport
21
22
USES=		python:3.2+
23
USE_PYTHON=	distutils autoplist
24
25
.include <bsd.port.mk>
(-)b/ports-mgmt/py-pytoport/distinfo (+2 lines)
Added Link Here
1
SHA256 (freebsd-pytoport-v0.2.0_GH0.tar.gz) = 44cfb9674596fa676b00cf319493608f2c755311baf48aebfb25065482bf46af
2
SIZE (freebsd-pytoport-v0.2.0_GH0.tar.gz) = 4594
(-)b/ports-mgmt/py-pytoport/pkg-descr (+6 lines)
Added Link Here
1
pytoport provides a way to quickly generate the barebones of a Python package
2
by simply providing the name of the module to the command. It accesses the
3
PyPI JSON API and does its best to generate a fully functional Makefile and
4
distinfo where sources are found.
5
6
WWW: https://github.com/freebsd/pytoport

Return to bug 205637