--- /dev/null
+# ChangeLog for net-mail/rss2email
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+*rss2email-9999 (18 Oct 2012)
+
+ 18 Oct 2012; W. Trevor King <wking@tremily.us> rss2email-9999.ebuild:
+ Add live ebuild.
+
+ 24 May 2011; Markus Meier <maekke@gentoo.org> rss2email-2.71.ebuild:
+ x86 stable, bug #365465
+
+ 01 May 2011; Markos Chandras <hwoarang@gentoo.org> rss2email-2.71.ebuild:
+ Stable on amd64 wrt bug #365465
+
+ 05 Apr 2011; Ulrich Mueller <ulm@gentoo.org> rss2email-2.65.ebuild:
+ Depend on dev-lang/python because virtual/python will go away, bug 358849.
+
+ 16 Mar 2011; Sebastian Pipping <sping@gentoo.org> metadata.xml:
+ Remove rbu as a maintainer so he is not bothered by bugs opened against
+ rss2email
+
+*rss2email-2.71 (16 Mar 2011)
+
+ 16 Mar 2011; Sebastian Pipping <sping@gentoo.org> +rss2email-2.71.ebuild:
+ Bump to 2.71
+
+*rss2email-2.70 (25 Dec 2010)
+
+ 25 Dec 2010; Sebastian Pipping <sping@gentoo.org> +rss2email-2.70.ebuild:
+ Bump to 2.70
+
+ 18 Dec 2010; Sebastian Pipping <sping@gentoo.org> rss2email-2.65.ebuild,
+ rss2email-2.69.ebuild, rss2email-2.69-r1.ebuild:
+ Update homepage link as requested from upstream
+
+*rss2email-2.69-r1 (28 Nov 2010)
+
+ 28 Nov 2010; <sping@gentoo.org> +rss2email-2.69-r1.ebuild:
+ Follow Arfrever's advice of calling python2, not python (bug #315339)
+
+ 25 Nov 2010; Sebastian Pipping <sping@gentoo.org> rss2email-2.69.ebuild:
+ Require dev-util/patchutils-0.3.0 (stable), not 0.3.1 (testing)
+
+*rss2email-2.69 (25 Nov 2010)
+
+ 25 Nov 2010; Sebastian Pipping <sping@gentoo.org> +rss2email-2.69.ebuild,
+ +files/rss2email-2.69-config-location.patch, metadata.xml:
+ Bump to 2.69, add support for several Python ABIs, move code and config out
+ of /usr/share, add myself as maintainer
+
+ 26 Jul 2009; Robert Buchholz <rbu@gentoo.org> rss2email-2.65.ebuild:
+ Include sample config on regular runs
+
+*rss2email-2.65 (26 Jul 2009)
+
+ 26 Jul 2009; Robert Buchholz <rbu@gentoo.org>
+ +files/rss2email-2.65-X-rss-feed.patch,
+ +files/rss2email-2.65-r2e-chmod.patch, +metadata.xml,
+ +rss2email-2.65.ebuild:
+ rss2email, new package. Thanks to the work of Fabian Groffen (grobian) in
+ bug 105175 as well as Joey Hess and David Watson of Debian.
+ Also added a patch to include the feed url in the header.
+
--- /dev/null
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI="4"
+
+PYTHON_DEPEND="3:3.2"
+SUPPORT_PYTHON_ABIS="1"
+RESTRICT_PYTHON_ABIS="2.* 3.[01]"
+
+inherit eutils distutils
+
+if [[ "${PV}" == "9999" ]] ; then
+ inherit git-2
+ EGIT_BRANCH="master"
+ EGIT_REPO_URI="git://tremily.us/${PN}.git"
+ SRC_URI=""
+else
+ #SRC_URI="http://git.tremily.us/?p=${PN}.git;a=snapshot;h=v${PV};sf=tgz"
+ SRC_URI="http://www.allthingsrss.com/${PN}/${P}.tar.gz
+ mirror://debian/pool/main/r/${PN}/${PN}_${DEBIAN_PV}-1.diff.gz"
+fi
+
+DESCRIPTION="A python script that converts RSS/Atom newsfeeds to email"
+HOMEPAGE="http://www.allthingsrss.com/rss2email"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND=">=dev-python/feedparser-5.0.1
+ >=dev-python/html2text-3.01"
+
+src_install() {
+ distutils_src_install
+ dodoc CHANGELOG README
+ doman r2e.1
+}