idella4 15/06/08 01:37:31
Modified: ChangeLog
Added: boto-2.38.0.ebuild
Removed: boto-2.20.1.ebuild boto-2.20.0.ebuild
boto-2.24.0.ebuild boto-2.21.0.ebuild
boto-2.19.0.ebuild boto-2.28.0.ebuild
boto-2.21.1.ebuild boto-2.22.0.ebuild
boto-2.26.0.ebuild boto-2.29.1.ebuild
boto-2.25.0.ebuild boto-2.11.0.ebuild
boto-2.26.1.ebuild boto-2.23.0.ebuild
Log:
bump add doc build, rm old
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key
0xB8072B0D)
Revision Changes Path
1.114 dev-python/boto/ChangeLog
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/boto/ChangeLog?rev=1.114&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/boto/ChangeLog?rev=1.114&content-type=text/plain
diff :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/boto/ChangeLog?r1=1.113&r2=1.114
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/boto/ChangeLog,v
retrieving revision 1.113
retrieving revision 1.114
diff -u -r1.113 -r1.114
--- ChangeLog 6 Jun 2015 20:14:52 -0000 1.113
+++ ChangeLog 8 Jun 2015 01:37:31 -0000 1.114
@@ -1,6 +1,16 @@
# ChangeLog for dev-python/boto
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/boto/ChangeLog,v 1.113
2015/06/06 20:14:52 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/boto/ChangeLog,v 1.114
2015/06/08 01:37:31 idella4 Exp $
+
+*boto-2.38.0 (08 Jun 2015)
+
+ 08 Jun 2015; Ian Delaney <[email protected]> +boto-2.38.0.ebuild,
+ -boto-2.11.0.ebuild, -boto-2.19.0.ebuild, -boto-2.20.0.ebuild,
+ -boto-2.20.1.ebuild, -boto-2.21.0.ebuild, -boto-2.21.1.ebuild,
+ -boto-2.22.0.ebuild, -boto-2.23.0.ebuild, -boto-2.24.0.ebuild,
+ -boto-2.25.0.ebuild, -boto-2.26.0.ebuild, -boto-2.26.1.ebuild,
+ -boto-2.28.0.ebuild, -boto-2.29.1.ebuild:
+ bump add doc build, rm old
06 Jun 2015; Justin Lecher <[email protected]> metadata.xml:
Add github to remote-id in metadata.xml
1.1 dev-python/boto/boto-2.38.0.ebuild
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/boto/boto-2.38.0.ebuild?rev=1.1&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/boto/boto-2.38.0.ebuild?rev=1.1&content-type=text/plain
Index: boto-2.38.0.ebuild
===================================================================
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/boto/boto-2.38.0.ebuild,v 1.1
2015/06/08 01:37:31 idella4 Exp $
EAPI="5"
PYTHON_COMPAT=( python{2_7,3_3,3_4} )
inherit distutils-r1
DESCRIPTION="Amazon Web Services API"
HOMEPAGE="https://github.com/boto/boto http://pypi.python.org/pypi/boto"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos
~x64-macos ~x86-macos"
IUSE="doc test"
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
test? ( dev-python/nose[${PYTHON_USEDEP}] )
doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
# requires Amazon Web Services keys to pass some tests
RESTRICT="test"
python_test() {
"${PYTHON}" tests/test.py -v || die "Tests fail with ${EPYTHON}"
}
python_prepare_all() {
# Prevent un-needed d'loading
sed -e "s/, 'sphinx.ext.intersphinx'//" -i docs/source/conf.py || die
distutils-r1_python_prepare_all
}
python_compile_all() {
if use doc; then
# Appease the doc build and supply a file for _static
# the usual emake -C docs doesn't work under this authorship
cd docs && mkdir source/_static || die
emake html
fi
}
python_install_all() {
use doc && local HTML_DOCS=( docs/build/html/. )
distutils-r1_python_install_all
}