diff options
author | Patrick Lauer <patrick@gentoo.org> | 2012-03-09 08:23:00 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2012-03-09 08:23:00 +0000 |
commit | 6c59b5bc55014b3e0f28fff47f3efba2754b3ebf (patch) | |
tree | 1069ed4988ed3b658d151aa4ef604c1e4cfcb81f /dev-python/blinker | |
parent | Bump for #404415 (diff) | |
download | gentoo-2-6c59b5bc55014b3e0f28fff47f3efba2754b3ebf.tar.gz gentoo-2-6c59b5bc55014b3e0f28fff47f3efba2754b3ebf.tar.bz2 gentoo-2-6c59b5bc55014b3e0f28fff47f3efba2754b3ebf.zip |
Bump for #404149
(Portage version: 2.2.0_alpha90/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/blinker')
-rw-r--r-- | dev-python/blinker/ChangeLog | 9 | ||||
-rw-r--r-- | dev-python/blinker/blinker-1.2.ebuild | 32 |
2 files changed, 39 insertions, 2 deletions
diff --git a/dev-python/blinker/ChangeLog b/dev-python/blinker/ChangeLog index f49a0e9b9ad6..d64727496a71 100644 --- a/dev-python/blinker/ChangeLog +++ b/dev-python/blinker/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/blinker -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/blinker/ChangeLog,v 1.1 2011/02/12 17:31:24 arfrever Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/blinker/ChangeLog,v 1.2 2012/03/09 08:23:00 patrick Exp $ + +*blinker-1.2 (09 Mar 2012) + + 09 Mar 2012; Patrick Lauer <patrick@gentoo.org> +blinker-1.2.ebuild: + Bump for #404149 *blinker-1.1 (12 Feb 2011) diff --git a/dev-python/blinker/blinker-1.2.ebuild b/dev-python/blinker/blinker-1.2.ebuild new file mode 100644 index 000000000000..d45242d2b23b --- /dev/null +++ b/dev-python/blinker/blinker-1.2.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/blinker/blinker-1.2.ebuild,v 1.1 2012/03/09 08:23:00 patrick Exp $ + +EAPI="3" +SUPPORT_PYTHON_ABIS="1" +DISTUTILS_SRC_TEST="nosetests" + +inherit distutils + +DESCRIPTION="Fast, simple object-to-object and broadcast signaling" +HOMEPAGE="http://discorporate.us/projects/Blinker/ http://pypi.python.org/pypi/blinker" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc" + +DEPEND="app-arch/unzip" +RDEPEND="" + +src_install() { + distutils_src_install + + if use doc; then + pushd docs/html > /dev/null + insinto /usr/share/doc/${PF}/html + doins -r [a-z]* _static || die "Installation of documentation failed" + popd > /dev/null + fi +} |