Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 19 Mar 2013 20:12:34 +0000 (UTC)
From:      Felippe de Meirelles Motta <lippe@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r314683 - in head/devel: . py-rose
Message-ID:  <201303192012.r2JKCYdH025499@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201303192012.r2JKCYdH025499>