diff options
author | 2017-02-25 09:13:51 +0000 | |
---|---|---|
committer | 2017-02-25 09:13:51 +0000 | |
commit | 32a81d924958b57c7dc23ca4ca2d9cc75a6d0f87 (patch) | |
tree | 21787de2b7b9a7d2d2f23db33b65fa98b885ce47 /net-news/rssdler/rssdler-0.4.2.ebuild | |
parent | repoman fixes (diff) | |
download | jamesbroadhead-32a81d924958b57c7dc23ca4ca2d9cc75a6d0f87.tar.gz jamesbroadhead-32a81d924958b57c7dc23ca4ca2d9cc75a6d0f87.tar.bz2 jamesbroadhead-32a81d924958b57c7dc23ca4ca2d9cc75a6d0f87.zip |
net-news/rssdler removal
- removing this ebuild - I no longer use this package, the project is
dead & the ebuild needs to be ported to distutils-r1.eclass.
https://bugs.gentoo.org/show_bug.cgi?id=609868
Diffstat (limited to 'net-news/rssdler/rssdler-0.4.2.ebuild')
-rw-r--r-- | net-news/rssdler/rssdler-0.4.2.ebuild | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/net-news/rssdler/rssdler-0.4.2.ebuild b/net-news/rssdler/rssdler-0.4.2.ebuild deleted file mode 100644 index e159fd6..0000000 --- a/net-news/rssdler/rssdler-0.4.2.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-news/rawdog/rawdog-2.13.ebuild,v 1.9 2011/01/07 00:32:29 ranger Exp $ - -EAPI=2 - -PYTHON_DEPEND="2" -SUPPORT_PYTHON_ABIS="1" -RESTRICT_PYTHON_ABIS="3.*" - -inherit distutils - -DESCRIPTION="Automatically fetches objects from RSS feeds, such as podcasts or torrents" -HOMEPAGE="http://code.google.com/p/rssdler" -SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.gz" -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -DEPEND="dev-python/feedparser" -RDEPEND="" - -# Version number without separators -MY_P="${PN}${PV//.}" -S="${WORKDIR}/${MY_P}" - -src_install() { - distutils_src_install - - dodoc README || die - newman "${FILESDIR}/rssdler.man" rssdler.1 || die -} - -pkg_postinst() { - elog 'For an intial config file, run the following as a normal user:' - elog ' $ C="${HOME}/.rssdler/config.txt"' - elog ' $ mkdir -p `dirname $C`' - elog ' $ ! [ -f $C ] && rssdler --comment-config > $C' - elog ' $ nano $C' - echo - elog 'If you encounter problems with referers or redirects, installing' - elog ' dev-python/mechanize is recommended. See man rssdler for more' - echo -} |