py-rose: A small library for keeping your version up-to-date easily & everywhere. Redports: https://redports.org/buildarchive/20130319135300-47866/ This will be required for new version of www/py-django-tastypie Fix: See attached patch
Responsible Changed From-To: freebsd-ports-bugs->freebsd-python freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool)
Responsible Changed From-To: freebsd-python->lippe I'll take it.
Author: lippe Date: Tue Mar 19 20:12:33 2013 New Revision: 314683 URL: http://svnweb.freebsd.org/changeset/ports/314683 Log: A small library for keeping your version up-to-date easily & everywhere. The pain of having to update your setup.py, your Sphinx conf.py, your __init__.py & everything else on every release of your Python package sucks. By putting your version number in a top-level VERSION file & using this library, you can cut duplication & tedious manual work without having to lean on crazy import hacks. Inspired by crazy discussion with George Hickman (ghickman) at PyCon 2013. WWW: https://github.com/toastdriven/rose PR: ports/177110 Submitted by: William Grzybowski <william88@gmail.com> Added: head/devel/py-rose/ head/devel/py-rose/Makefile (contents, props changed) head/devel/py-rose/distinfo (contents, props changed) head/devel/py-rose/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Mar 19 19:38:01 2013 (r314682) +++ head/devel/Makefile Tue Mar 19 20:12:33 2013 (r314683) @@ -3628,6 +3628,7 @@ SUBDIR += py-robotframework-ride SUBDIR += py-robotframework-selenium2library SUBDIR += py-rope + SUBDIR += py-rose SUBDIR += py-roxlib SUBDIR += py-rtree SUBDIR += py-ruledispatch Added: head/devel/py-rose/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-rose/Makefile Tue Mar 19 20:12:33 2013 (r314683) @@ -0,0 +1,20 @@ +# Created by: William Grzybowski <william88@gmail.com> +# $FreeBSD$ + +PORTNAME= rose +PORTVERSION= 1.0.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= william88@gmail.com +COMMENT= A small library for keeping your version up-to-date easily everywhere + +LICENSE= BSD + +USE_PYTHON= 2.6+ +USE_PYDISTUTILS= easy_install + +PLIST_FILES= %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%% + +.include <bsd.port.mk> Added: head/devel/py-rose/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-rose/distinfo Tue Mar 19 20:12:33 2013 (r314683) @@ -0,0 +1,2 @@ +SHA256 (rose-1.0.0.tar.gz) = 52b532a79051c4abeaf8cc8b0248800dbbd7ceeddf91ee00e2a096f6f78a7d6b +SIZE (rose-1.0.0.tar.gz) = 3566 Added: head/devel/py-rose/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-rose/pkg-descr Tue Mar 19 20:12:33 2013 (r314683) @@ -0,0 +1,12 @@ +A small library for keeping your version up-to-date easily & everywhere. + +The pain of having to update your setup.py, your Sphinx conf.py, your +__init__.py & everything else on every release of your Python package sucks. + +By putting your version number in a top-level VERSION file & using this +library, you can cut duplication & tedious manual work without having to lean +on crazy import hacks. + +Inspired by crazy discussion with George Hickman (ghickman) at PyCon 2013. + +WWW: https://github.com/toastdriven/rose _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
State Changed From-To: open->closed Committed. Thanks!