idella4 14/10/31 04:03:43 Modified: flask-openid-1.2.3.ebuild ChangeLog Added: flask-openid-1.2.4.ebuild Log: add missed doc install, bump (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
Revision Changes Path 1.2 dev-python/flask-openid/flask-openid-1.2.3.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-openid/flask-openid-1.2.3.ebuild?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-openid/flask-openid-1.2.3.ebuild?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-openid/flask-openid-1.2.3.ebuild?r1=1.1&r2=1.2 Index: flask-openid-1.2.3.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/flask-openid/flask-openid-1.2.3.ebuild,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- flask-openid-1.2.3.ebuild 26 Oct 2014 05:18:03 -0000 1.1 +++ flask-openid-1.2.3.ebuild 31 Oct 2014 04:03:43 -0000 1.2 @@ -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/flask-openid/flask-openid-1.2.3.ebuild,v 1.1 2014/10/26 05:18:03 idella4 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/flask-openid/flask-openid-1.2.3.ebuild,v 1.2 2014/10/31 04:03:43 idella4 Exp $ EAPI=5 PYTHON_COMPAT=( python2_7 ) @@ -19,7 +19,8 @@ KEYWORDS="~amd64 ~x86" IUSE="doc examples" -RDEPEND=">=dev-python/flask-0.3[${PYTHON_USEDEP}] +RDEPEND=" + >=dev-python/flask-0.3[${PYTHON_USEDEP}] >=dev-python/python-openid-2.0[${PYTHON_USEDEP}] doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )" DEPEND="${RDEPEND} @@ -35,10 +36,11 @@ } python_compile_all() { - use doc && emake -C docs html + use doc && esetup.py build_sphinx } python_install_all() { use examples && local EXAMPLES=( example/. ) + use doc && local HTML_DOCS=( docs/_build/html/. ) distutils-r1_python_install_all } 1.10 dev-python/flask-openid/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-openid/ChangeLog?rev=1.10&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-openid/ChangeLog?rev=1.10&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-openid/ChangeLog?r1=1.9&r2=1.10 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/flask-openid/ChangeLog,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- ChangeLog 26 Oct 2014 05:18:03 -0000 1.9 +++ ChangeLog 31 Oct 2014 04:03:43 -0000 1.10 @@ -1,6 +1,12 @@ # ChangeLog for dev-python/flask-openid # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/flask-openid/ChangeLog,v 1.9 2014/10/26 05:18:03 idella4 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/flask-openid/ChangeLog,v 1.10 2014/10/31 04:03:43 idella4 Exp $ + +*flask-openid-1.2.4 (31 Oct 2014) + + 31 Oct 2014; Ian Delaney <[email protected]> +flask-openid-1.2.4.ebuild, + flask-openid-1.2.3.ebuild: + add missed doc install, bump *flask-openid-1.2.3 (26 Oct 2014) 1.1 dev-python/flask-openid/flask-openid-1.2.4.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-openid/flask-openid-1.2.4.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-openid/flask-openid-1.2.4.ebuild?rev=1.1&content-type=text/plain Index: flask-openid-1.2.4.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/flask-openid/flask-openid-1.2.4.ebuild,v 1.1 2014/10/31 04:03:43 idella4 Exp $ EAPI=5 PYTHON_COMPAT=( python2_7 ) inherit distutils-r1 MY_PN="Flask-OpenID" MY_P="${MY_PN}-${PV}" DESCRIPTION="OpenID support for Flask" HOMEPAGE="http://pypi.python.org/pypi/Flask-OpenID" SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="doc examples" RDEPEND=" >=dev-python/flask-0.3[${PYTHON_USEDEP}] >=dev-python/python-openid-2.0[${PYTHON_USEDEP}] doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )" DEPEND="${RDEPEND} dev-python/setuptools[${PYTHON_USEDEP}]" S="${WORKDIR}/${MY_P}" python_prepare_all() { # Prevent un-needed d'loading sed -e "s/, 'sphinx.ext.intersphinx'//" -i docs/conf.py || die distutils-r1_python_prepare_all } python_compile_all() { use doc && esetup.py build_sphinx } python_install_all() { use examples && local EXAMPLES=( example/. ) use doc && local HTML_DOCS=( docs/_build/html/. ) distutils-r1_python_install_all }
