From owner-svn-ports-head@FreeBSD.ORG Tue Mar 19 20:12:35 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 318C376D; Tue, 19 Mar 2013 20:12:35 +0000 (UTC) (envelope-from lippe@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 1550C23F; Tue, 19 Mar 2013 20:12:35 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2JKCYSp025503; Tue, 19 Mar 2013 20:12:34 GMT (envelope-from lippe@svn.freebsd.org) Received: (from lippe@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2JKCYdH025499; Tue, 19 Mar 2013 20:12:34 GMT (envelope-from lippe@svn.freebsd.org) Message-Id: <201303192012.r2JKCYdH025499@svn.freebsd.org> From: Felippe de Meirelles Motta Date: Tue, 19 Mar 2013 20:12:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r314683 - in head/devel: . py-rose 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.14 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: Tue, 19 Mar 2013 20:12:35 -0000 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 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 +# $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 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