summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Harder <radhermit@gentoo.org>2014-10-08 01:20:23 +0000
committerTim Harder <radhermit@gentoo.org>2014-10-08 01:20:23 +0000
commit5bf06ca8650e2b90d3b5dba766a657e54e948ded (patch)
tree257506630a1cb13ae57d40501f43996739c9ce0e /www-misc/urlwatch/urlwatch-1.15.ebuild
parentVersion bump. (diff)
downloadgentoo-2-5bf06ca8650e2b90d3b5dba766a657e54e948ded.tar.gz
gentoo-2-5bf06ca8650e2b90d3b5dba766a657e54e948ded.tar.bz2
gentoo-2-5bf06ca8650e2b90d3b5dba766a657e54e948ded.zip
Remove old.
(Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'www-misc/urlwatch/urlwatch-1.15.ebuild')
-rw-r--r--www-misc/urlwatch/urlwatch-1.15.ebuild38
1 files changed, 0 insertions, 38 deletions
diff --git a/www-misc/urlwatch/urlwatch-1.15.ebuild b/www-misc/urlwatch/urlwatch-1.15.ebuild
deleted file mode 100644
index cc752cc065ff..000000000000
--- a/www-misc/urlwatch/urlwatch-1.15.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-misc/urlwatch/urlwatch-1.15.ebuild,v 1.2 2013/09/13 21:34:32 mgorny Exp $
-
-EAPI="4"
-PYTHON_DEPEND="2:2.5 3:3.2"
-SUPPORT_PYTHON_ABIS="1"
-DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES="1"
-
-inherit distutils eutils
-
-DESCRIPTION="A tool for monitoring webpages for updates"
-HOMEPAGE="http://thp.io/2008/urlwatch/ http://pypi.python.org/pypi/urlwatch"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="xmpp"
-
-DEPEND="virtual/python-futures"
-RDEPEND="${DEPEND}
- xmpp? ( dev-python/xmpppy )
- || ( www-client/lynx app-text/html2text )"
-
-src_prepare() {
- use xmpp && epatch "${FILESDIR}"/${PN}-xmpp.patch
- sed -i "s/^os.unlink/#\0/" setup.py || die
-
- distutils_src_prepare
-
- 2to3_conversion() {
- [[ "${PYTHON_ABI}" == 2.* ]] && return
- 2to3-${PYTHON_ABI} -nw --no-diffs urlwatch lib/urlwatch/*.py \
- examples/hooks.py.example setup.py || die "2to3 failed"
- }
- python_execute_function -s 2to3_conversion
-}