Bug 177110 - [NEW PORT] devel/py-rose
Summary: [NEW PORT] devel/py-rose
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Felippe de Meirelles Motta
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-03-19 14:10 UTC by William Grzybowski
Modified: 2013-03-19 20:34 UTC (History)
0 users

See Also:


Attachments
py-rose.shar (1.78 KB, text/plain)
2013-03-19 14:10 UTC, William Grzybowski
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description William Grzybowski 2013-03-19 14:10:01 UTC
	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
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2013-03-19 14:10:09 UTC
Responsible Changed
From-To: freebsd-ports-bugs->freebsd-python

freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool)
Comment 2 Felippe de Meirelles Motta freebsd_committer freebsd_triage 2013-03-19 18:24:59 UTC
Responsible Changed
From-To: freebsd-python->lippe

I'll take it.
Comment 3 dfilter service freebsd_committer freebsd_triage 2013-03-19 20:12:52 UTC
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"
Comment 4 Felippe de Meirelles Motta freebsd_committer freebsd_triage 2013-03-19 20:34:53 UTC
State Changed
From-To: open->closed

Committed. Thanks!