* [gentoo-commits] gentoo-x86 commit in dev-python/python-heatclient: python-heatclient-9999.ebuild ChangeLog
@ 2014-03-27 22:05 Matt Thode (prometheanfire)
0 siblings, 0 replies; 2+ messages in thread
From: Matt Thode (prometheanfire) @ 2014-03-27 22:05 UTC (permalink / raw
To: gentoo-commits
prometheanfire 14/03/27 22:05:47
Modified: python-heatclient-9999.ebuild ChangeLog
Log:
fixing versions
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0x2471eb3e40ac5ac3)
Revision Changes Path
1.3 dev-python/python-heatclient/python-heatclient-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-heatclient/python-heatclient-9999.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-heatclient/python-heatclient-9999.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-heatclient/python-heatclient-9999.ebuild?r1=1.2&r2=1.3
Index: python-heatclient-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/python-heatclient/python-heatclient-9999.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- python-heatclient-9999.ebuild 13 Sep 2013 19:36:04 -0000 1.2
+++ python-heatclient-9999.ebuild 27 Mar 2014 22:05:47 -0000 1.3
@@ -1,10 +1,8 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/python-heatclient/python-heatclient-9999.ebuild,v 1.2 2013/09/13 19:36:04 prometheanfire Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/python-heatclient/python-heatclient-9999.ebuild,v 1.3 2014/03/27 22:05:47 prometheanfire Exp $
EAPI=5
-#restricted due to not caring about 9999
-RESTRICT="test"
PYTHON_COMPAT=( python2_7 )
inherit git-2 distutils-r1
@@ -17,31 +15,41 @@
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS=""
-IUSE="test"
+IUSE="doc test"
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
- test? ( dev-python/mox[${PYTHON_USEDEP}]
- dev-python/nose[${PYTHON_USEDEP}]
- dev-python/nose-exclude[${PYTHON_USEDEP}]
- dev-python/nosexcover[${PYTHON_USEDEP}]
- dev-python/nosehtmloutput[${PYTHON_USEDEP}]
- dev-python/openstack-nose-plugin[${PYTHON_USEDEP}]
- ~dev-python/pep8-1.4.5[${PYTHON_USEDEP}]
- ~dev-python/pyflakes-0.7.2[${PYTHON_USEDEP}]
- >=dev-python/sphinx-1.1.2[${PYTHON_USEDEP}]
- >=dev-python/setuptools-git-0.4[${PYTHON_USEDEP}] )"
-RDEPEND=">=dev-python/d2to1-0.2.10[${PYTHON_USEDEP}]
- <dev-python/d2to1-0.3[${PYTHON_USEDEP}]
- >=dev-python/pbr-0.5.10[${PYTHON_USEDEP}]
- <dev-python/pbr-0.6[${PYTHON_USEDEP}]
- dev-python/httplib2[${PYTHON_USEDEP}]
- >=dev-python/iso8601-0.1.4[${PYTHON_USEDEP}]
- >=dev-python/prettytable-0.6[${PYTHON_USEDEP}]
+ >=dev-python/pbr-0.6[${PYTHON_USEDEP}]
+ <dev-python/pbr-1.0[${PYTHON_USEDEP}]
+ test? ( >=dev-python/hacking-0.8.0[${PYTHON_USEDEP}]
+ <dev-python/hacking-0.9[${PYTHON_USEDEP}]
+ >=dev-python/coverage-3.6[${PYTHON_USEDEP}]
+ >=dev-python/fixtures-0.3.14[${PYTHON_USEDEP}]
+ >=dev-python/mock-1.0[${PYTHON_USEDEP}]
+ >=dev-python/mox3-0.7.0[${PYTHON_USEDEP}]
+ >=dev-python/sphinx-1.1.2[${PYTHON_USEDEP}]
+ <dev-python/sphinx-1.2[${PYTHON_USEDEP}]
+ >=dev-python/testscenarios-0.4[${PYTHON_USEDEP}]
+ >=dev-python/testrepository-0.0.18[${PYTHON_USEDEP}]
+ >=dev-python/testtools-0.9.34[${PYTHON_USEDEP}] )"
+RDEPEND="virtual/python-argparse[${PYTHON_USEDEP}]
+ >=dev-python/iso8601-0.1.8[${PYTHON_USEDEP}]
+ >=dev-python/prettytable-0.7[${PYTHON_USEDEP}]
<dev-python/prettytable-0.8[${PYTHON_USEDEP}]
- >=dev-python/python-keystoneclient-0.2[${PYTHON_USEDEP}]
- <dev-python/python-keystoneclient-0.3[${PYTHON_USEDEP}]
- virtual/python-argparse[${PYTHON_USEDEP}]"
+ >=dev-python/python-keystoneclient-0.6.0[${PYTHON_USEDEP}]
+ >=dev-python/pyyaml-3.1.0[${PYTHON_USEDEP}]
+ >=dev-python/six-1.4.1[${PYTHON_USEDEP}]
+ >=dev-python/requests-1.1[${PYTHON_USEDEP}]"
+
+python_compile_all() {
+ use doc && sphinx-build -b html -c doc/source/ doc/source/ doc/source/html
+}
python_test() {
- ${PYTHON} setup.py nosetests || die
+ "${PYTHON}" setup.py testr --coverage
+ "${PYTHON}" setup.py testr --slowest
+}
+
+python_install_all() {
+ use doc && local HTML_DOCS=( doc/source/html/. )
+ distutils-r1_python_install_all
}
1.10 dev-python/python-heatclient/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-heatclient/ChangeLog?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-heatclient/ChangeLog?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-heatclient/ChangeLog?r1=1.9&r2=1.10
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/python-heatclient/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ChangeLog 27 Mar 2014 21:52:18 -0000 1.9
+++ ChangeLog 27 Mar 2014 22:05:47 -0000 1.10
@@ -1,6 +1,10 @@
# ChangeLog for dev-python/python-heatclient
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/python-heatclient/ChangeLog,v 1.9 2014/03/27 21:52:18 prometheanfire Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/python-heatclient/ChangeLog,v 1.10 2014/03/27 22:05:47 prometheanfire Exp $
+
+ 27 Mar 2014; Matthew Thode <prometheanfire@gentoo.org>
+ python-heatclient-9999.ebuild:
+ fixing versions
*python-heatclient-0.2.8 (27 Mar 2014)
^ permalink raw reply [flat|nested] 2+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/python-heatclient: python-heatclient-9999.ebuild ChangeLog
@ 2014-06-13 2:53 Patrick Lauer (patrick)
0 siblings, 0 replies; 2+ messages in thread
From: Patrick Lauer (patrick) @ 2014-06-13 2:53 UTC (permalink / raw
To: gentoo-commits
patrick 14/06/13 02:53:17
Modified: python-heatclient-9999.ebuild ChangeLog
Log:
Remove keywords from live ebuild
(Portage version: 2.2.10/cvs/Linux x86_64, unsigned Manifest commit)
Revision Changes Path
1.5 dev-python/python-heatclient/python-heatclient-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-heatclient/python-heatclient-9999.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-heatclient/python-heatclient-9999.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-heatclient/python-heatclient-9999.ebuild?r1=1.4&r2=1.5
Index: python-heatclient-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/python-heatclient/python-heatclient-9999.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- python-heatclient-9999.ebuild 27 Apr 2014 06:17:45 -0000 1.4
+++ python-heatclient-9999.ebuild 13 Jun 2014 02:53:17 -0000 1.5
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/python-heatclient/python-heatclient-9999.ebuild,v 1.4 2014/04/27 06:17:45 prometheanfire Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/python-heatclient/python-heatclient-9999.ebuild,v 1.5 2014/06/13 02:53:17 patrick Exp $
EAPI=5
PYTHON_COMPAT=( python2_7 )
@@ -14,7 +14,7 @@
LICENSE="Apache-2.0"
SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS=""
IUSE="doc test"
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
1.12 dev-python/python-heatclient/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-heatclient/ChangeLog?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-heatclient/ChangeLog?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-heatclient/ChangeLog?r1=1.11&r2=1.12
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/python-heatclient/ChangeLog,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- ChangeLog 27 Apr 2014 06:17:45 -0000 1.11
+++ ChangeLog 13 Jun 2014 02:53:17 -0000 1.12
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/python-heatclient
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/python-heatclient/ChangeLog,v 1.11 2014/04/27 06:17:45 prometheanfire Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/python-heatclient/ChangeLog,v 1.12 2014/06/13 02:53:17 patrick Exp $
+
+ 13 Jun 2014; Patrick Lauer <patrick@gentoo.org> python-heatclient-9999.ebuild:
+ Remove keywords from live ebuild
*python-heatclient-0.2.9 (27 Apr 2014)
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-06-13 2:53 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-27 22:05 [gentoo-commits] gentoo-x86 commit in dev-python/python-heatclient: python-heatclient-9999.ebuild ChangeLog Matt Thode (prometheanfire)
-- strict thread matches above, loose matches on Subject: below --
2014-06-13 2:53 Patrick Lauer (patrick)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox