diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2010-12-13 22:37:31 +0000 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2010-12-13 22:37:31 +0000 |
commit | 69a55b206579ed3b2cc75d83e7759ac67b5dea98 (patch) | |
tree | b07fe401e11f5ce467ff2f13ddd5b596ea7afd76 /dev-python/pyxdg | |
parent | Fix typo. (diff) | |
download | gentoo-2-69a55b206579ed3b2cc75d83e7759ac67b5dea98.tar.gz gentoo-2-69a55b206579ed3b2cc75d83e7759ac67b5dea98.tar.bz2 gentoo-2-69a55b206579ed3b2cc75d83e7759ac67b5dea98.zip |
Version bump, bug #339009.
(Portage version: 2.2.0_alpha7/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/pyxdg')
-rw-r--r-- | dev-python/pyxdg/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/pyxdg/pyxdg-0.19.ebuild | 37 |
2 files changed, 43 insertions, 1 deletions
diff --git a/dev-python/pyxdg/ChangeLog b/dev-python/pyxdg/ChangeLog index 2e7b499530cc..b8012968d501 100644 --- a/dev-python/pyxdg/ChangeLog +++ b/dev-python/pyxdg/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/pyxdg # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyxdg/ChangeLog,v 1.69 2010/02/13 16:44:47 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyxdg/ChangeLog,v 1.70 2010/12/13 22:37:31 eva Exp $ + +*pyxdg-0.19 (13 Dec 2010) + + 13 Dec 2010; Gilles Dartiguelongue <eva@gentoo.org> +pyxdg-0.19.ebuild: + Version bump, bug #339009. 13 Feb 2010; Raúl Porcel <armin76@gentoo.org> pyxdg-0.18.ebuild: alpha/arm/ia64/sparc stable wrt #301960 diff --git a/dev-python/pyxdg/pyxdg-0.19.ebuild b/dev-python/pyxdg/pyxdg-0.19.ebuild new file mode 100644 index 000000000000..2098c7a9587a --- /dev/null +++ b/dev-python/pyxdg/pyxdg-0.19.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyxdg/pyxdg-0.19.ebuild,v 1.1 2010/12/13 22:37:31 eva Exp $ + +EAPI="2" +SUPPORT_PYTHON_ABIS="1" + +inherit distutils eutils + +DESCRIPTION="A Python module to deal with freedesktop.org specifications" +SRC_URI="http://people.freedesktop.org/~lanius/${P}.tar.gz" +HOMEPAGE="http://pyxdg.freedesktop.org/ http://people.freedesktop.org/~lanius/" + +LICENSE="LGPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +IUSE="" + +DEPEND="" +RDEPEND="" +RESTRICT_PYTHON_ABIS="3.*" + +PYTHON_MODNAME="xdg" +DOCS="AUTHORS" + +src_prepare() { + distutils_src_prepare + epatch "${FILESDIR}/${PN}-subprocess.patch" +} + +src_install () { + distutils_src_install + + insinto /usr/share/doc/${PF}/tests + insopts -m 755 + doins test/* +} |