* [gentoo-commits] gentoo-x86 commit in dev-python/python-neutronclient: python-neutronclient-2.3.1.ebuild ChangeLog
@ 2013-12-01 13:53 Ian Delaney (idella4)
0 siblings, 0 replies; 2+ messages in thread
From: Ian Delaney (idella4) @ 2013-12-01 13:53 UTC (permalink / raw
To: gentoo-commits
idella4 13/12/01 13:53:00
Modified: ChangeLog
Added: python-neutronclient-2.3.1.ebuild
Log:
bump; add IUSE doc with dep, doc build & install phases, deps & test phase updated
(Portage version: 2.2.0/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
Revision Changes Path
1.7 dev-python/python-neutronclient/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-neutronclient/ChangeLog?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-neutronclient/ChangeLog?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-neutronclient/ChangeLog?r1=1.6&r2=1.7
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/python-neutronclient/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog 23 Nov 2013 10:07:21 -0000 1.6
+++ ChangeLog 1 Dec 2013 13:53:00 -0000 1.7
@@ -1,6 +1,13 @@
# ChangeLog for dev-python/python-neutronclient
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/python-neutronclient/ChangeLog,v 1.6 2013/11/23 10:07:21 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/python-neutronclient/ChangeLog,v 1.7 2013/12/01 13:53:00 idella4 Exp $
+
+*python-neutronclient-2.3.1 (01 Dec 2013)
+
+ 01 Dec 2013; Ian Delaney <idella4@gentoo.org>
+ +python-neutronclient-2.3.1.ebuild:
+ bump; add IUSE doc with dep, doc build & install phases, deps & test phase
+ updated
*python-neutronclient-2.3.0-r3 (23 Nov 2013)
1.1 dev-python/python-neutronclient/python-neutronclient-2.3.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-neutronclient/python-neutronclient-2.3.1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-neutronclient/python-neutronclient-2.3.1.ebuild?rev=1.1&content-type=text/plain
Index: python-neutronclient-2.3.1.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/python-neutronclient/python-neutronclient-2.3.1.ebuild,v 1.1 2013/12/01 13:53:00 idella4 Exp $
EAPI=5
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1
DESCRIPTION="A client for the OpenStack Quantum API"
HOMEPAGE="https://launchpad.net/neutron"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc test"
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
test? ( >=dev-python/hacking-0.5.6[${PYTHON_USEDEP}]
<dev-python/hacking-0.8[${PYTHON_USEDEP}]
>=dev-python/cliff-tablib-1.0[${PYTHON_USEDEP}]
>=dev-python/coverage-3.6[${PYTHON_USEDEP}]
>=dev-python/fixtures-0.3.14[${PYTHON_USEDEP}]
>=dev-python/mox-0.5.3[${PYTHON_USEDEP}]
dev-python/subunit[${PYTHON_USEDEP}]
>=dev-python/sphinx-1.1.2[${PYTHON_USEDEP}]
>=dev-python/testrepository-0.0.17[${PYTHON_USEDEP}]
>=dev-python/testtools-0.9.32[${PYTHON_USEDEP}] )
doc? ( >=dev-python/sphinx-1.1.2[${PYTHON_USEDEP}]
)"
RDEPEND="virtual/python-argparse[${PYTHON_USEDEP}]
>=dev-python/pbr-0.5.21[${PYTHON_USEDEP}]
<dev-python/pbr-1.0[${PYTHON_USEDEP}]
>=dev-python/cliff-1.4.3[${PYTHON_USEDEP}]
dev-python/httplib2[${PYTHON_USEDEP}]
>=dev-python/iso8601-0.1.4[${PYTHON_USEDEP}]
>=dev-python/simplejson-2.0.9[${PYTHON_USEDEP}]
dev-python/six[${PYTHON_USEDEP}]
>=dev-python/Babel-0.9.6[${PYTHON_USEDEP}]"
python_prepare_all() {
sed -e 's:intersphinx_:#&:' -i doc/source/conf.py || die
distutils-r1_python_prepare_all
}
python_compile_all() {
use doc && "${PYTHON}" setup.py build_sphinx
}
python_test() {
testr init
testr run || die "tests failed under python2.7"
flake8 neutronclient/tests || die "run by flake8 over tests folder yielded error"
}
python_install() {
distutils-r1_python_install
#stupid stupid
local SITEDIR="${D%/}$(python_get_sitedir)" || die
cd "${SITEDIR}" || die
local egg=( python_neutronclient*.egg-info )
#[[ -f ${egg[0]} ]] || die "python_quantumclient*.egg-info not found"
ln -s "${egg[0]}" "${egg[0]/neutron/quantum}" || die
ln -s neutronclient quantumclient || die
ln -s neutron quantumclient/quantum || die
}
python_install_all() {
use doc && local HTML_DOCS=( doc/build/html/. )
distutils-r1_python_install_all
}
^ permalink raw reply [flat|nested] 2+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/python-neutronclient: python-neutronclient-2.3.1.ebuild ChangeLog
@ 2014-03-19 23:10 Sebastien Fabbro (bicatali)
0 siblings, 0 replies; 2+ messages in thread
From: Sebastien Fabbro (bicatali) @ 2014-03-19 23:10 UTC (permalink / raw
To: gentoo-commits
bicatali 14/03/19 23:10:39
Modified: python-neutronclient-2.3.1.ebuild ChangeLog
Log:
Keyword ~amd64-linux ~x86-linux
(Portage version: 2.2.8-prefix/cvs/Linux x86_64, signed Manifest commit with key 0x13CB1360)
Revision Changes Path
1.2 dev-python/python-neutronclient/python-neutronclient-2.3.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-neutronclient/python-neutronclient-2.3.1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-neutronclient/python-neutronclient-2.3.1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-neutronclient/python-neutronclient-2.3.1.ebuild?r1=1.1&r2=1.2
Index: python-neutronclient-2.3.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/python-neutronclient/python-neutronclient-2.3.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- python-neutronclient-2.3.1.ebuild 1 Dec 2013 13:53:00 -0000 1.1
+++ python-neutronclient-2.3.1.ebuild 19 Mar 2014 23:10:39 -0000 1.2
@@ -1,6 +1,6 @@
-# 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-neutronclient/python-neutronclient-2.3.1.ebuild,v 1.1 2013/12/01 13:53:00 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/python-neutronclient/python-neutronclient-2.3.1.ebuild,v 1.2 2014/03/19 23:10:39 bicatali Exp $
EAPI=5
PYTHON_COMPAT=( python2_7 )
@@ -13,7 +13,7 @@
LICENSE="Apache-2.0"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="doc test"
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
1.8 dev-python/python-neutronclient/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-neutronclient/ChangeLog?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-neutronclient/ChangeLog?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-neutronclient/ChangeLog?r1=1.7&r2=1.8
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/python-neutronclient/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog 1 Dec 2013 13:53:00 -0000 1.7
+++ ChangeLog 19 Mar 2014 23:10:39 -0000 1.8
@@ -1,6 +1,10 @@
# ChangeLog for dev-python/python-neutronclient
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/python-neutronclient/ChangeLog,v 1.7 2013/12/01 13:53:00 idella4 Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/python-neutronclient/ChangeLog,v 1.8 2014/03/19 23:10:39 bicatali Exp $
+
+ 19 Mar 2014; Sébastien Fabbro <bicatali@gentoo.org>
+ python-neutronclient-2.3.1.ebuild:
+ Keyword ~amd64-linux ~x86-linux
*python-neutronclient-2.3.1 (01 Dec 2013)
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-03-19 23:10 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-01 13:53 [gentoo-commits] gentoo-x86 commit in dev-python/python-neutronclient: python-neutronclient-2.3.1.ebuild ChangeLog Ian Delaney (idella4)
-- strict thread matches above, loose matches on Subject: below --
2014-03-19 23:10 Sebastien Fabbro (bicatali)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox