diff options
author | Rafael Martins <rafaelmartins@gentoo.org> | 2011-12-17 03:46:20 +0000 |
---|---|---|
committer | Rafael Martins <rafaelmartins@gentoo.org> | 2011-12-17 03:46:20 +0000 |
commit | b45d5455155d809434ad8031afabfa0aeb3605ae (patch) | |
tree | 51daf2cab04485a6fcc7b2e64ca957a1102b5162 /www-apps | |
parent | Use ${extra_commands} in initscript instead of ${opts}, reported by ago. (diff) | |
download | gentoo-2-b45d5455155d809434ad8031afabfa0aeb3605ae.tar.gz gentoo-2-b45d5455155d809434ad8031afabfa0aeb3605ae.tar.bz2 gentoo-2-b45d5455155d809434ad8031afabfa0aeb3605ae.zip |
live ebuild now supports tests. restrict python dependency to >=2.6.
(Portage version: 2.2.0_alpha59_p57/cvs/Linux x86_64)
Diffstat (limited to 'www-apps')
-rw-r--r-- | www-apps/blohg/ChangeLog | 5 | ||||
-rw-r--r-- | www-apps/blohg/blohg-9999.ebuild | 9 |
2 files changed, 9 insertions, 5 deletions
diff --git a/www-apps/blohg/ChangeLog b/www-apps/blohg/ChangeLog index 20cd2e629d8d..9a5ee3314797 100644 --- a/www-apps/blohg/ChangeLog +++ b/www-apps/blohg/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for www-apps/blohg # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-apps/blohg/ChangeLog,v 1.11 2011/11/27 22:48:23 rafaelmartins Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-apps/blohg/ChangeLog,v 1.12 2011/12/17 03:46:20 rafaelmartins Exp $ + + 17 Dec 2011; Rafael G. Martins <rafaelmartins@gentoo.org> blohg-9999.ebuild: + live ebuild now supports tests. restrict python dependency to >=2.6. 27 Nov 2011; Rafael G. Martins <rafaelmartins@gentoo.org> blohg-9999.ebuild: live ebuild now depends on frozen-flask. diff --git a/www-apps/blohg/blohg-9999.ebuild b/www-apps/blohg/blohg-9999.ebuild index 685f93e02375..e6b77eb7a5c8 100644 --- a/www-apps/blohg/blohg-9999.ebuild +++ b/www-apps/blohg/blohg-9999.ebuild @@ -1,12 +1,13 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-apps/blohg/blohg-9999.ebuild,v 1.5 2011/11/30 19:51:44 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-apps/blohg/blohg-9999.ebuild,v 1.6 2011/12/17 03:46:20 rafaelmartins Exp $ EAPI="3" -PYTHON_DEPEND="2:2.5" +PYTHON_DEPEND="2:2.6" SUPPORT_PYTHON_ABIS="1" -RESTRICT_PYTHON_ABIS="2.4 3.*" +RESTRICT_PYTHON_ABIS="2.4 2.5 3.*" +DISTUTILS_SRC_TEST="setup.py" EHG_REPO_URI="http://hg.rafaelmartins.eng.br/blohg/" @@ -19,7 +20,7 @@ KEYWORDS="" LICENSE="GPL-2" SLOT="0" -IUSE="doc" +IUSE="doc test" DEPEND=">=dev-python/docutils-0.7 >=dev-python/flask-0.7 |