diff options
author | Mike Gilbert <floppym@gentoo.org> | 2012-08-27 15:14:50 +0000 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2012-08-27 15:14:50 +0000 |
commit | db77aeba4cbb5dc1047b960bd5bc634a766e81a9 (patch) | |
tree | bad31dacd387420a0afd54d44d0594a4de099b98 /dev-python | |
parent | Initial import; ebuild by me (diff) | |
download | gentoo-2-db77aeba4cbb5dc1047b960bd5bc634a766e81a9.tar.gz gentoo-2-db77aeba4cbb5dc1047b960bd5bc634a766e81a9.tar.bz2 gentoo-2-db77aeba4cbb5dc1047b960bd5bc634a766e81a9.zip |
Various improvements suggested by Arfrever.
(Portage version: 2.2.0_alpha123/cvs/Linux x86_64)
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/logilab-constraint/ChangeLog | 6 | ||||
-rw-r--r-- | dev-python/logilab-constraint/logilab-constraint-0.5.0.ebuild | 13 |
2 files changed, 11 insertions, 8 deletions
diff --git a/dev-python/logilab-constraint/ChangeLog b/dev-python/logilab-constraint/ChangeLog index 06e72cc7aa48..98272b7e65d3 100644 --- a/dev-python/logilab-constraint/ChangeLog +++ b/dev-python/logilab-constraint/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-python/logilab-constraint # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/logilab-constraint/ChangeLog,v 1.8 2012/08/24 08:53:18 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/logilab-constraint/ChangeLog,v 1.9 2012/08/27 15:14:50 floppym Exp $ + + 27 Aug 2012; Mike Gilbert <floppym@gentoo.org> + logilab-constraint-0.5.0.ebuild: + Various improvements suggested by Arfrever. *logilab-constraint-0.5.0 (24 Aug 2012) diff --git a/dev-python/logilab-constraint/logilab-constraint-0.5.0.ebuild b/dev-python/logilab-constraint/logilab-constraint-0.5.0.ebuild index c54e60cccacb..2595bb0ff602 100644 --- a/dev-python/logilab-constraint/logilab-constraint-0.5.0.ebuild +++ b/dev-python/logilab-constraint/logilab-constraint-0.5.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/logilab-constraint/logilab-constraint-0.5.0.ebuild,v 1.1 2012/08/24 08:53:18 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/logilab-constraint/logilab-constraint-0.5.0.ebuild,v 1.2 2012/08/27 15:14:50 floppym Exp $ EAPI="3" PYTHON_DEPEND="2" @@ -9,18 +9,17 @@ RESTRICT_PYTHON_ABIS="3.*" inherit distutils -MY_P="${P#logilab-}" DESCRIPTION="A finite domain constraints solver written in 100% pure Python" HOMEPAGE="http://www.logilab.org/projects/constraint/" SRC_URI="ftp://ftp.logilab.org/pub/constraint/${P}.tar.gz" -LICENSE="GPL-2" +LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="~amd64 ~sparc ~x86" -IUSE="doc" +IUSE="examples" -DEPEND="" -RDEPEND=">=dev-python/logilab-common-0.12.0" +DEPEND="dev-python/setuptools" +RDEPEND="dev-python/logilab-common" DOCS="doc/CONTRIBUTORS" PYTHON_MODNAME="logilab/constraint" @@ -34,7 +33,7 @@ src_install() { } python_execute_function -q delete_unneeded_files - if use doc; then + if use examples; then dohtml doc/documentation.html insinto /usr/share/doc/${PF} doins -r examples |