1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-30 05:40:06 +00:00

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>
This commit is contained in:
Felippe de Meirelles Motta 2013-03-19 20:12:33 +00:00
parent 8fb31594d3
commit 7ecc6b5db7
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=314683
4 changed files with 35 additions and 0 deletions

View File

@ -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

20
devel/py-rose/Makefile Normal file
View File

@ -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>

2
devel/py-rose/distinfo Normal file
View File

@ -0,0 +1,2 @@
SHA256 (rose-1.0.0.tar.gz) = 52b532a79051c4abeaf8cc8b0248800dbbd7ceeddf91ee00e2a096f6f78a7d6b
SIZE (rose-1.0.0.tar.gz) = 3566

12
devel/py-rose/pkg-descr Normal file
View File

@ -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