jlec 15/05/05 18:08:18 Modified: ChangeLog Added: requests-cache-0.4.10.ebuild Log: Version Bump (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
Revision Changes Path 1.17 dev-python/requests-cache/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/requests-cache/ChangeLog?rev=1.17&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/requests-cache/ChangeLog?rev=1.17&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/requests-cache/ChangeLog?r1=1.16&r2=1.17 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/requests-cache/ChangeLog,v retrieving revision 1.16 retrieving revision 1.17 diff -u -r1.16 -r1.17 --- ChangeLog 27 Mar 2015 17:00:09 -0000 1.16 +++ ChangeLog 5 May 2015 18:08:18 -0000 1.17 @@ -1,6 +1,11 @@ # ChangeLog for dev-python/requests-cache # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/requests-cache/ChangeLog,v 1.16 2015/03/27 17:00:09 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/requests-cache/ChangeLog,v 1.17 2015/05/05 18:08:18 jlec Exp $ + +*requests-cache-0.4.10 (05 May 2015) + + 05 May 2015; Justin Lecher <j...@gentoo.org> +requests-cache-0.4.10.ebuild: + Version Bump 27 Mar 2015; Justin Lecher <j...@gentoo.org> -requests-cache-0.4.5.ebuild, -requests-cache-0.4.6.ebuild, -requests-cache-0.4.8.ebuild, metadata.xml: 1.1 dev-python/requests-cache/requests-cache-0.4.10.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/requests-cache/requests-cache-0.4.10.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/requests-cache/requests-cache-0.4.10.ebuild?rev=1.1&content-type=text/plain Index: requests-cache-0.4.10.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/requests-cache/requests-cache-0.4.10.ebuild,v 1.1 2015/05/05 18:08:18 jlec Exp $ EAPI=5 PYTHON_COMPAT=( python2_7 python3_{3,4} pypy ) inherit distutils-r1 HOMEPAGE="https://pypi.python.org/pypi/requests-cache" DESCRIPTION="Persistent cache for requests library" SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="doc" # Portage only has versions of request >= minimum border RDEPEND=">=dev-python/requests-2.6[${PYTHON_USEDEP}]" DEPEND=" dev-python/setuptools[${PYTHON_USEDEP}] doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )" # Testsuite excels in tests connecting to the network via local server daemons python_compile_all() { use doc && emake -C docs html } python_install_all() { use doc && local HTML_DOCS=( docs/_build/html/. ) distutils-r1_python_install_all }