diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2009-05-23 15:51:17 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2009-05-23 15:51:17 +0000 |
commit | 56e6dc4832d6f230c3c0f9d2bdb8f033f96d5bce (patch) | |
tree | b47c3c91163e8cd3ae4e0af6f28323a4bd5baff0 /dev-python/zsi | |
parent | Stable for HPPA (bug #270781). (diff) | |
download | gentoo-2-56e6dc4832d6f230c3c0f9d2bdb8f033f96d5bce.tar.gz gentoo-2-56e6dc4832d6f230c3c0f9d2bdb8f033f96d5bce.tar.bz2 gentoo-2-56e6dc4832d6f230c3c0f9d2bdb8f033f96d5bce.zip |
Version bump wrt #266990. This package is only used by media-sound/sonata for lyrics, which seem to work fine with this release.
(Portage version: 2.1.6.13/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/zsi')
-rw-r--r-- | dev-python/zsi/ChangeLog | 9 | ||||
-rw-r--r-- | dev-python/zsi/zsi-2.1_alpha1.ebuild | 50 |
2 files changed, 58 insertions, 1 deletions
diff --git a/dev-python/zsi/ChangeLog b/dev-python/zsi/ChangeLog index b4b0623fa9bd..8c68266d5664 100644 --- a/dev-python/zsi/ChangeLog +++ b/dev-python/zsi/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for dev-python/zsi # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/zsi/ChangeLog,v 1.10 2009/03/13 16:26:36 tcunha Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/zsi/ChangeLog,v 1.11 2009/05/23 15:51:17 ssuominen Exp $ + +*zsi-2.1_alpha1 (23 May 2009) + + 23 May 2009; Samuli Suominen <ssuominen@gentoo.org> + +zsi-2.1_alpha1.ebuild: + Version bump wrt #266990. This package is only used by media-sound/sonata + for lyrics, which seem to work fine with this release. 13 Mar 2009; Tiago Cunha <tcunha@gentoo.org> zsi-2.0.ebuild: stable sparc diff --git a/dev-python/zsi/zsi-2.1_alpha1.ebuild b/dev-python/zsi/zsi-2.1_alpha1.ebuild new file mode 100644 index 000000000000..6372b815534e --- /dev/null +++ b/dev-python/zsi/zsi-2.1_alpha1.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/zsi/zsi-2.1_alpha1.ebuild,v 1.1 2009/05/23 15:51:17 ssuominen Exp $ + +NEED_PYTHON=2.4 +inherit distutils + +MY_PN=ZSI +MY_P=${MY_PN}-${PV/_alpha/-a} + +DESCRIPTION="Web Services for Python" +HOMEPAGE="http://pywebsvcs.sourceforge.net/zsi.html" +SRC_URI="mirror://sourceforge/pywebsvcs/${MY_P}.tar.gz" + +KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86" +SLOT="0" +LICENSE="PYTHON" +IUSE="examples doc twisted" + +DEPEND=">=dev-python/pyxml-0.8.3 + >=dev-python/setuptools-0.6_rc7-r1 + twisted? ( >=dev-python/twisted-2 + >=dev-python/twisted-web-0.5 )" + +S=${WORKDIR}/${MY_P} +PYTHON_MODNAME=${MY_PN} + +src_prepare() { + if ! use twisted; then + sed -i \ + -e "/version_info/d"\ + -e "/ZSI.twisted/d"\ + setup.py || die "sed failed" + fi +} + +src_install() { + distutils_src_install + + if use doc; then + dohtml doc/*.{html,css,png} + fi + + if use examples; then + insinto /usr/share/doc/${PF}/examples + doins -r doc/examples/* samples/* + fi +} + +DOCS="CHANGES README" |