idella4 15/06/15 08:26:39 Modified: ChangeLog Added: flask-peewee-0.6.6.ebuild Log: bump; add doc build and option to install examples (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
Revision Changes Path 1.6 dev-python/flask-peewee/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-peewee/ChangeLog?rev=1.6&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-peewee/ChangeLog?rev=1.6&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-peewee/ChangeLog?r1=1.5&r2=1.6 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/flask-peewee/ChangeLog,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- ChangeLog 3 Jun 2015 18:46:49 -0000 1.5 +++ ChangeLog 15 Jun 2015 08:26:39 -0000 1.6 @@ -1,6 +1,11 @@ # ChangeLog for dev-python/flask-peewee # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/flask-peewee/ChangeLog,v 1.5 2015/06/03 18:46:49 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/flask-peewee/ChangeLog,v 1.6 2015/06/15 08:26:39 idella4 Exp $ + +*flask-peewee-0.6.6 (15 Jun 2015) + + 15 Jun 2015; Ian Delaney <[email protected]> +flask-peewee-0.6.6.ebuild: + bump; add doc build and option to install examples 03 Jun 2015; Justin Lecher <[email protected]> metadata.xml: Add pypi to remote-id in metadata.xml 1.1 dev-python/flask-peewee/flask-peewee-0.6.6.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-peewee/flask-peewee-0.6.6.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/flask-peewee/flask-peewee-0.6.6.ebuild?rev=1.1&content-type=text/plain Index: flask-peewee-0.6.6.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/flask-peewee/flask-peewee-0.6.6.ebuild,v 1.1 2015/06/15 08:26:39 idella4 Exp $ EAPI=5 PYTHON_COMPAT=( python2_7 ) inherit distutils-r1 RESTRICT="test" # broken DESCRIPTION="Flask integration layer for the Peewee ORM" HOMEPAGE="https://pypi.python.org/pypi/Flask-Admin" SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="doc examples test" RDEPEND=" dev-python/flask[${PYTHON_USEDEP}] dev-python/werkzeug[${PYTHON_USEDEP}] dev-python/jinja[${PYTHON_USEDEP}] dev-python/peewee[${PYTHON_USEDEP}] dev-python/wtforms[${PYTHON_USEDEP}] dev-python/wtf-peewee[${PYTHON_USEDEP}]" DEPEND=" dev-python/setuptools[${PYTHON_USEDEP}] test? ( dev-python/nose[${PYTHON_USEDEP}] ) doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )" python_compile_all() { use doc && emake -C docs html } python_test() { nosetests || die "Testing failed with ${EPYTHON}" } python_install_all() { use doc && local HTML_DOCS=( docs/_build/html/. ) use examples && local EXAMPLES=( example/. ) distutils-r1_python_install_all }
