diff options
author | rm <rm@FreeBSD.org> | 2012-10-18 02:07:28 +0800 |
---|---|---|
committer | rm <rm@FreeBSD.org> | 2012-10-18 02:07:28 +0800 |
commit | 016262c669079cae878fa49f7d247eef2ef250f5 (patch) | |
tree | e425748786967587a20748052b0f7ba573ed8314 | |
parent | 79a79ea16e5b0018de1846ada1d8e0f09b24f754 (diff) | |
download | freebsd-ports-gnome-016262c669079cae878fa49f7d247eef2ef250f5.tar.gz freebsd-ports-gnome-016262c669079cae878fa49f7d247eef2ef250f5.tar.zst freebsd-ports-gnome-016262c669079cae878fa49f7d247eef2ef250f5.zip |
- remove bogus setuptools dependency (the port is using distutils)
- trim Makefile header
- add license (GPLv3)
- limit python version to 2.x
- remove WWW, because it isn't working anymore
- bump PORTREVISION because of dependencies change
PR: 172329
Submitted by: rm (myself)
Approved by: maintainer timeout (2 weeks)
Feature safe: yes
-rw-r--r-- | devel/py-pytemplate/Makefile | 12 | ||||
-rw-r--r-- | devel/py-pytemplate/pkg-descr | 2 |
2 files changed, 4 insertions, 10 deletions
diff --git a/devel/py-pytemplate/Makefile b/devel/py-pytemplate/Makefile index 679b7dd8308d..fe299d4d82c1 100644 --- a/devel/py-pytemplate/Makefile +++ b/devel/py-pytemplate/Makefile @@ -1,12 +1,9 @@ -# New ports collection makefile for: pytemplate -# Date created: 2009-02-24 -# Whom: Benoit Calvez <benoit@litchis.org> -# +# Created by: Benoit Calvez <benoit@litchis.org> # $FreeBSD$ PORTNAME= pytemplate PORTVERSION= 1.5.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel python MASTER_SITES= http://www.bulot.org/downloads/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -14,10 +11,9 @@ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= benoit@litchis.org COMMENT= Pytemplate gives python developers a starting framework -BUILD_DEPENDS= easy_install:${PORTSDIR}/devel/py-setuptools -RUN_DEPENDS:= ${BUILD_DEPENDS} +LICENSE= GPLv3 -USE_PYTHON= 2.5+ +USE_PYTHON= -2.7 USE_PYDISTUTILS= yes EXAMPLESDIR= ${PREFIX}/share/examples/py-pytemplate diff --git a/devel/py-pytemplate/pkg-descr b/devel/py-pytemplate/pkg-descr index b51cd33cddc5..5ecfadfa082d 100644 --- a/devel/py-pytemplate/pkg-descr +++ b/devel/py-pytemplate/pkg-descr @@ -2,5 +2,3 @@ Pytemplate is a small project intending to give python developpers a starting framework. It permits to create properly scripts without struggling with configuration files, logging properties development. They are already available through a main class that the new script will inherit. - -WWW: http://bulot.org/wiki/doku.php?id=projects:python:pytemplate |