diff options
author | Patrick Lauer <patrick@gentoo.org> | 2009-02-15 13:46:18 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2009-02-15 13:46:18 +0000 |
commit | 5b8b722fbcd0d835b4fb8d626bd69eb1bffed91b (patch) | |
tree | ba101336fd1e50c4f5be7abd188f001eea924200 /dev-python | |
parent | amd64/x86 stable, bug #259065 (diff) | |
download | gentoo-2-5b8b722fbcd0d835b4fb8d626bd69eb1bffed91b.tar.gz gentoo-2-5b8b722fbcd0d835b4fb8d626bd69eb1bffed91b.tar.bz2 gentoo-2-5b8b722fbcd0d835b4fb8d626bd69eb1bffed91b.zip |
Bump to 0.4.1
(Portage version: 2.2_rc23/cvs/Linux x86_64)
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/yolk/ChangeLog | 9 | ||||
-rw-r--r-- | dev-python/yolk/yolk-0.4.1.ebuild | 30 |
2 files changed, 37 insertions, 2 deletions
diff --git a/dev-python/yolk/ChangeLog b/dev-python/yolk/ChangeLog index 82a1cdcedb5a..fb19e085399b 100644 --- a/dev-python/yolk/ChangeLog +++ b/dev-python/yolk/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/yolk -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/yolk/ChangeLog,v 1.7 2007/07/17 00:46:08 pythonhead Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/yolk/ChangeLog,v 1.8 2009/02/15 13:46:18 patrick Exp $ + +*yolk-0.4.1 (15 Feb 2009) + + 15 Feb 2009; Patrick Lauer <patrick@gentoo.org> +yolk-0.4.1.ebuild: + Bump to 0.4.1 *yolk-0.3.0 (17 Jul 2007) diff --git a/dev-python/yolk/yolk-0.4.1.ebuild b/dev-python/yolk/yolk-0.4.1.ebuild new file mode 100644 index 000000000000..99f484eaccf0 --- /dev/null +++ b/dev-python/yolk/yolk-0.4.1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/yolk/yolk-0.4.1.ebuild,v 1.1 2009/02/15 13:46:18 patrick Exp $ + +NEED_PYTHON=2.4 + +inherit distutils + +DESCRIPTION="Tool and library for querying PyPI and locally installed Python packages" +HOMEPAGE="http://cheeseshop.python.org/pypi/yolk" +SRC_URI="http://cheeseshop.python.org/packages/source/y/yolk/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="examples" +DEPEND="dev-python/setuptools" +RDEPEND="dev-python/yolk-portage" + +src_install() { + distutils_src_install + if use examples ; then + docinto examples/plugins + dodoc "${S}"/examples/plugins/* + docinto examples/plugins/yolk_portage + dodoc "${S}"/examples/plugins/yolk_portage/* + docinto examples/plugins/yolk_pkg_manager + dodoc "${S}"/examples/plugins/yolk_pkg_manager/* + prepalldocs + fi +} |