From 56bd759df1d0c750a065b8c845e93d5dfa6b549d Mon Sep 17 00:00:00 2001 From: "Robin H. Johnson" Date: Sat, 8 Aug 2015 13:49:04 -0700 Subject: proj/gentoo: Initial commit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit represents a new era for Gentoo: Storing the gentoo-x86 tree in Git, as converted from CVS. This commit is the start of the NEW history. Any historical data is intended to be grafted onto this point. Creation process: 1. Take final CVS checkout snapshot 2. Remove ALL ChangeLog* files 3. Transform all Manifests to thin 4. Remove empty Manifests 5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$ 5.1. Do not touch files with -kb/-ko keyword flags. Signed-off-by: Robin H. Johnson X-Thanks: Alec Warner - did the GSoC 2006 migration tests X-Thanks: Robin H. Johnson - infra guy, herding this project X-Thanks: Nguyen Thai Ngoc Duy - Former Gentoo developer, wrote Git features for the migration X-Thanks: Brian Harring - wrote much python to improve cvs2svn X-Thanks: Rich Freeman - validation scripts X-Thanks: Patrick Lauer - Gentoo dev, running new 2014 work in migration X-Thanks: Michał Górny - scripts, QA, nagging X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed --- net-news/rawdog/Manifest | 2 ++ net-news/rawdog/metadata.xml | 12 ++++++++++++ net-news/rawdog/rawdog-2.19.ebuild | 27 +++++++++++++++++++++++++++ net-news/rawdog/rawdog-2.20.ebuild | 27 +++++++++++++++++++++++++++ 4 files changed, 68 insertions(+) create mode 100644 net-news/rawdog/Manifest create mode 100644 net-news/rawdog/metadata.xml create mode 100644 net-news/rawdog/rawdog-2.19.ebuild create mode 100644 net-news/rawdog/rawdog-2.20.ebuild (limited to 'net-news/rawdog') diff --git a/net-news/rawdog/Manifest b/net-news/rawdog/Manifest new file mode 100644 index 000000000000..04e4f855c858 --- /dev/null +++ b/net-news/rawdog/Manifest @@ -0,0 +1,2 @@ +DIST rawdog-2.19.tar.gz 66231 SHA256 fea40f673c334f8b0f21cac8c1498ae2130b7c2c79670c5d166bd5634e5313db SHA512 4e2ebf51feb98a0ce994218e6f057268846ed3194626877b5bd0b71971b5e79f1482af8dece29dc6be0a2e04728333b4814a73469b60c0970a323177511a5ae6 WHIRLPOOL 4635121c848660c54a10fde5045d3a810189b9e8b5486c03d7a99d99bcc44c1f9684f0d6f0fe18e9c3358c9d652c117b3c6eda11432ccc3a61d0e49aeb0aa5fb +DIST rawdog-2.20.tar.gz 66933 SHA256 0a63b26cc111b0deca441f498177b49be0330760c5c0e24584cdb9ba1e7fd5a6 SHA512 83a023f4256cd49242769deef7eaee7ad40f6e61fe97885dd2b311f3e3c9c8a87338a06b1e08a634496bb939d6574795027405decf361f38727efd73dd2ba96b WHIRLPOOL 0582b05560ee18dfef115141f408c3e90b458b506cbb801cd984fba8ba2dc1c95c20d2d60a07137322f61e3e63226e3df4d906554957a1d1ec77c3d4be69161b diff --git a/net-news/rawdog/metadata.xml b/net-news/rawdog/metadata.xml new file mode 100644 index 000000000000..f2ed6f38b1fe --- /dev/null +++ b/net-news/rawdog/metadata.xml @@ -0,0 +1,12 @@ + + + +python + +rawdog is an RSS Aggregator Without Delusions Of Grandeur. Written in Python, +it uses Mark Pilgrim's feed parser. It runs from cron, collects articles from +a number of feeds, and generates a static HTML page listing the newest articles +in date order. It supports per-feed customizable update times, and uses ETags, +Last-Modified, and gzip compression to minimize network bandwidth usage. + + diff --git a/net-news/rawdog/rawdog-2.19.ebuild b/net-news/rawdog/rawdog-2.19.ebuild new file mode 100644 index 000000000000..76b81fb7aa18 --- /dev/null +++ b/net-news/rawdog/rawdog-2.19.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +PYTHON_COMPAT=( python2_7 pypy ) + +inherit distutils-r1 + +DESCRIPTION="Rawdog - RSS Aggregator Without Delusions Of Grandeur" +HOMEPAGE="http://offog.org/code/rawdog.html http://pypi.python.org/pypi/rawdog" +SRC_URI="http://offog.org/files/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="alpha amd64 hppa ia64 ppc ~s390 sparc x86" +IUSE="" + +DEPEND="dev-python/feedparser[${PYTHON_USEDEP}]" +RDEPEND="" +# Test run fails under multi threading +DISTUTILS_NO_PARALLEL_BUILD=1 + +python_test() { + # pypy fails half way through; meh + ./test-rawdog || die "Test run aborted" +} diff --git a/net-news/rawdog/rawdog-2.20.ebuild b/net-news/rawdog/rawdog-2.20.ebuild new file mode 100644 index 000000000000..a47c33e6ae39 --- /dev/null +++ b/net-news/rawdog/rawdog-2.20.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +PYTHON_COMPAT=( python2_7 pypy ) + +inherit distutils-r1 + +DESCRIPTION="Rawdog - RSS Aggregator Without Delusions Of Grandeur" +HOMEPAGE="http://offog.org/code/rawdog.html http://pypi.python.org/pypi/rawdog" +SRC_URI="http://offog.org/files/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~s390 ~sparc ~x86" +IUSE="" + +DEPEND="dev-python/feedparser[${PYTHON_USEDEP}]" +RDEPEND="" +# Test run fails under multi threading +DISTUTILS_NO_PARALLEL_BUILD=1 + +python_test() { + # pypy fails half way through; meh + ./test-rawdog || die "Test run aborted" +} -- cgit v1.2.3