summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomas Chvatal <scarabeus@gentoo.org>2013-05-20 12:49:27 +0000
committerTomas Chvatal <scarabeus@gentoo.org>2013-05-20 12:49:27 +0000
commitbd7298d0626056aec00450a9ed5ffc91b1050914 (patch)
tree93d76fa3a55e25efef9810e8048d8ecbb1c85ab4 /dev-python/sudsds
parentStable for ppc, wrt bug #470514 (diff)
downloadgentoo-2-bd7298d0626056aec00450a9ed5ffc91b1050914.tar.gz
gentoo-2-bd7298d0626056aec00450a9ed5ffc91b1050914.tar.bz2
gentoo-2-bd7298d0626056aec00450a9ed5ffc91b1050914.zip
Drop overshadowed.
(Portage version: 2.2.0_alpha174/cvs/Linux x86_64, signed Manifest commit with key 8EEE3BE8)
Diffstat (limited to 'dev-python/sudsds')
-rw-r--r--dev-python/sudsds/ChangeLog5
-rw-r--r--dev-python/sudsds/sudsds-1.0.1.ebuild43
2 files changed, 4 insertions, 44 deletions
diff --git a/dev-python/sudsds/ChangeLog b/dev-python/sudsds/ChangeLog
index 23c62cd304af..6d5180dc3b4e 100644
--- a/dev-python/sudsds/ChangeLog
+++ b/dev-python/sudsds/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/sudsds
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/sudsds/ChangeLog,v 1.9 2013/05/20 08:27:26 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/sudsds/ChangeLog,v 1.10 2013/05/20 12:49:27 scarabeus Exp $
+
+ 20 May 2013; Tomáš Chvátal <scarabeus@gentoo.org> -sudsds-1.0.1.ebuild:
+ Drop overshadowed.
20 May 2013; Agostino Sarubbo <ago@gentoo.org> sudsds-1.0.1-r1.ebuild:
Stable for x86, wrt bug #470464
diff --git a/dev-python/sudsds/sudsds-1.0.1.ebuild b/dev-python/sudsds/sudsds-1.0.1.ebuild
deleted file mode 100644
index ef8716b30b1f..000000000000
--- a/dev-python/sudsds/sudsds-1.0.1.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/sudsds/sudsds-1.0.1.ebuild,v 1.3 2013/01/24 14:06:13 idella4 Exp $
-
-EAPI="4"
-PYTHON_DEPEND="2"
-SUPPORT_PYTHON_ABIS="1"
-RESTRICT_PYTHON_ABIS="3.*"
-
-inherit distutils
-
-DESCRIPTION="Lightweight SOAP client - Czech NIC labs fork"
-HOMEPAGE="https://labs.nic.cz/page/969/"
-SRC_URI="http://www.nic.cz/public_media/datove_schranky/releases/src/${P}.tar.gz"
-
-LICENSE="LGPL-3"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="doc"
-
-DEPEND="dev-python/setuptools
- doc? ( dev-python/epydoc )"
-RDEPEND=""
-
-src_compile() {
- distutils_src_compile
-
- buildDocs() {
- PYTHONPATH=$(ls -d build-${PYTHON_ABI}/lib/) \
- epydoc -n "Sudsds - ${DESCRIPTION}" -o doc ${PN} || die "Generation of documentation failed"
- }
-
- if use doc; then
- einfo "Generation of documentation"
- python_execute_function -f buildDocs
- fi
-}
-
-src_install() {
- distutils_src_install
-
- use doc && dohtml -r doc/
-}