diff options
Diffstat (limited to 'www-apps/venus')
-rw-r--r-- | www-apps/venus/Manifest | 7 | ||||
-rw-r--r-- | www-apps/venus/files/postinstall-en.txt | 10 | ||||
-rw-r--r-- | www-apps/venus/files/venus-bsddb3.patch | 39 | ||||
-rw-r--r-- | www-apps/venus/files/venus-xml-utf8.patch | 80 | ||||
-rw-r--r-- | www-apps/venus/metadata.xml | 13 | ||||
-rw-r--r-- | www-apps/venus/venus-20100911-r3.ebuild | 77 | ||||
-rw-r--r-- | www-apps/venus/venus-20100911-r4.ebuild | 81 |
7 files changed, 0 insertions, 307 deletions
diff --git a/www-apps/venus/Manifest b/www-apps/venus/Manifest deleted file mode 100644 index b8c39b644686..000000000000 --- a/www-apps/venus/Manifest +++ /dev/null @@ -1,7 +0,0 @@ -AUX postinstall-en.txt 192 BLAKE2B e64917b92cc44853bca099f672be29b78a58679490dd8f5a2619fe3861484030c1372cdd2496208521942d5291d942aa5c60e030f660fae32007b8c32c473589 SHA512 6185dc665439d4d5d877501a60566f04bc40bf43e568ab158a20aec68902104662129e945129d7914bfcb20e804b0484686893d11deb2310fcc9f097bc7cd2ee -AUX venus-bsddb3.patch 1366 BLAKE2B a764ee9447dd8034f9b3b50ee4d0fb0e977edb006f861b20a114a1589c38672bb7a16abfc895d64ecb3c9cde6e0ea9f4a8f52adfa879031d27e9675c6da7b32d SHA512 cb3cca0415a9d12356dd85aa1434270612e09153c443a2f207af8d0be53c64e8a87bdd10b3e89b4d5a3fa56334cc691f3c44221078fbe2931c99b6215fc1925d -AUX venus-xml-utf8.patch 4058 BLAKE2B 03d24dd8265754e006e5083b3aff7c4894fd4cf039c8b7177ff3a25b6529e4da42e1b031837490e1c9af480106b1c4f02297bbee2167f6d07067bcf06d4c2e81 SHA512 1466ec1fabaef90b7907cc7587ff994a8a9d8935eed77c725ebb65b9b86f3daa15d6e0da907ce84ce7090d14c82e1c96739b3a4a7c862bcc22af60cb74e0ad6c -DIST venus-20100911.tar.bz2 349639 BLAKE2B 386b6b7381b9dbf9515fdad03179a844dcf884a928d291b8a7b3a1897b4f67bec9418e2fec5373f640b5eab7c028671e28ff92e08461f779869b81c0388fd54b SHA512 516a503e1e43e4bf694f007382603d6415bf508f79feb8db55dba533ca9b8b367f922ede84b2ef4ec74684f81ad17919ba754abfe5e79aac51da732ceb8c2897 -EBUILD venus-20100911-r3.ebuild 1636 BLAKE2B 8356d1ef984737bdf87be28a1b1ee371dcdd2ea661981a3befb72d1d88201a877928b66fe097306ffcefb4ac952611c871abd4c53ab527d4e3ee123e1943a7fb SHA512 b56a6dbf8b77e477cdaf8eb4760b32f1102f0c7c4c15acda60a2ffae9c34db52058a3bb706b37cbceb59f94fd32df59bb42b053364519b92c98580a520a8c6cd -EBUILD venus-20100911-r4.ebuild 1688 BLAKE2B 7605112b1e5fbae391d0d8f2ca9ab2c14e836b4206ae7a40ef7d387f4b65922d84444f2a502f356cf441c0251e01c875bc8fc904b81c3864e3fff5b178e580ac SHA512 d141b55ea1f46e7924c299b531f1864a6fb4c6ada1d33c3a0b022e5f5bd2448750af0412af5cc5dba1d78d31baebd53914df97f492aa1cd41498bd4dccd41fee -MISC metadata.xml 480 BLAKE2B 997ccc6bcd7147a44d4928d558f82170bbb032c57b0dd4d9a7daf5584cbdd66f3733e6bf2d5c5711a843b199552d82f00a4508586ee1de7fb922cdccaeb95db1 SHA512 0caa5f4788096b3eaaa02c6cbc2f0685975e25f95ce1775e330acae28c708a0cf1bf38f31c8384068da0258948ada6ce09c6c864dac680753fb83a0d272d3bc9 diff --git a/www-apps/venus/files/postinstall-en.txt b/www-apps/venus/files/postinstall-en.txt deleted file mode 100644 index 37427c4a8d5a..000000000000 --- a/www-apps/venus/files/postinstall-en.txt +++ /dev/null @@ -1,10 +0,0 @@ -INSTALLATION - -Installation instructions can be found at: - -http://intertwingly.net/code/venus/docs/ -/usr/share/doc/\${PF}/html - -Example configuration files can be found at: - -${VHOST_ROOT}/conf diff --git a/www-apps/venus/files/venus-bsddb3.patch b/www-apps/venus/files/venus-bsddb3.patch deleted file mode 100644 index b57499c23698..000000000000 --- a/www-apps/venus/files/venus-bsddb3.patch +++ /dev/null @@ -1,39 +0,0 @@ -Use bsddb3 instead of deprecated python[berkdb]. Patch by Arfrever. - ---- a/planet/idindex.py -+++ b/planet/idindex.py -@@ -13,8 +13,8 @@ - cache = config.cache_directory() - index=os.path.join(cache,'index') - if not os.path.exists(index): return None -- import dbhash -- return dbhash.open(filename(index, 'id'),'w') -+ import bsddb3 -+ return bsddb3.hashopen(filename(index, 'id'),'w') - except Exception, e: - if e.__class__.__name__ == 'DBError': e = e.args[-1] - from planet import logger as log -@@ -35,8 +35,8 @@ - cache = config.cache_directory() - index=os.path.join(cache,'index') - if not os.path.exists(index): os.makedirs(index) -- import dbhash -- index = dbhash.open(filename(index, 'id'),'c') -+ import bsddb3 -+ index = bsddb3.hashopen(filename(index, 'id'),'c') - - try: - import libxml2 ---- a/tests/test_idindex.py -+++ b/tests/test_idindex.py -@@ -67,8 +67,8 @@ - self.assertEqual(12,len(doc.getElementsByTagName('planet:name'))) - - try: -- module = 'dbhash' -+ import bsddb3 - except ImportError: -- planet.logger.warn("dbhash is not available => can't test id index") -+ planet.logger.warn("bsddb3 is not available => can't test id index") - for method in dir(idIndexTest): - if method.startswith('test_'): delattr(idIndexTest,method) diff --git a/www-apps/venus/files/venus-xml-utf8.patch b/www-apps/venus/files/venus-xml-utf8.patch deleted file mode 100644 index f7c29782ff46..000000000000 --- a/www-apps/venus/files/venus-xml-utf8.patch +++ /dev/null @@ -1,80 +0,0 @@ -diff -Nuar --exclude '*~' venus.orig/themes/common/atom.xml.xslt venus/themes/common/atom.xml.xslt ---- venus.orig/themes/common/atom.xml.xslt 2010-09-11 06:41:53.000000000 -0700 -+++ venus/themes/common/atom.xml.xslt 2017-03-17 17:24:51.668976850 -0700 -@@ -1,3 +1,4 @@ -+<?xml version="1.0" encoding="UTF-8"?> - <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" - xmlns:access="http://www.bloglines.com/about/specs/fac-1.0" - xmlns:atom="http://www.w3.org/2005/Atom" -@@ -7,6 +8,7 @@ - xmlns="http://www.w3.org/1999/xhtml" - exclude-result-prefixes="planet xhtml"> - -+ <xsl:output indent="yes" method="xml" encoding="UTF-8"/> - <!-- strip planet elements and attributes --> - <xsl:template match="planet:*|@planet:*"/> - -diff -Nuar --exclude '*~' venus.orig/themes/common/foafroll.xml.xslt venus/themes/common/foafroll.xml.xslt ---- venus.orig/themes/common/foafroll.xml.xslt 2010-09-11 06:41:53.000000000 -0700 -+++ venus/themes/common/foafroll.xml.xslt 2017-03-17 17:25:01.477165384 -0700 -@@ -1,3 +1,4 @@ -+<?xml version="1.0" encoding="UTF-8"?> - <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" -@@ -8,7 +9,7 @@ - xmlns:planet="http://planet.intertwingly.net/" - exclude-result-prefixes="atom planet"> - -- <xsl:output indent="yes" method="xml"/> -+ <xsl:output indent="yes" method="xml" encoding="UTF-8"/> - - <xsl:template match="atom:feed"> - <rdf:RDF> -diff -Nuar --exclude '*~' venus.orig/themes/common/opml.xml.xslt venus/themes/common/opml.xml.xslt ---- venus.orig/themes/common/opml.xml.xslt 2010-09-11 06:41:53.000000000 -0700 -+++ venus/themes/common/opml.xml.xslt 2017-03-17 17:26:20.930692531 -0700 -@@ -1,9 +1,10 @@ -+<?xml version="1.0" encoding="UTF-8"?> - <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" - xmlns:atom="http://www.w3.org/2005/Atom" - xmlns:planet="http://planet.intertwingly.net/" - exclude-result-prefixes="atom planet"> - -- <xsl:output indent="yes" method="xml"/> -+ <xsl:output indent="yes" method="xml" encoding="UTF-8"/> - - <xsl:template name="rfc822" xmlns:date="http://exslt.org/dates-and-times"> - <xsl:param name="date"/> -diff -Nuar --exclude '*~' venus.orig/themes/common/rss10.xml.tmpl venus/themes/common/rss10.xml.tmpl ---- venus.orig/themes/common/rss10.xml.tmpl 2010-09-11 06:41:53.000000000 -0700 -+++ venus/themes/common/rss10.xml.tmpl 2017-03-17 17:26:18.558646942 -0700 -@@ -1,4 +1,4 @@ --<?xml version="1.0"?> -+<?xml version="1.0" encoding="UTF-8"?> - <rdf:RDF - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:dc="http://purl.org/dc/elements/1.1/" -diff -Nuar --exclude '*~' venus.orig/themes/common/rss20.xml.tmpl venus/themes/common/rss20.xml.tmpl ---- venus.orig/themes/common/rss20.xml.tmpl 2010-09-11 06:41:53.000000000 -0700 -+++ venus/themes/common/rss20.xml.tmpl 2017-03-17 17:26:16.718611577 -0700 -@@ -1,4 +1,4 @@ --<?xml version="1.0"?> -+<?xml version="1.0" encoding="UTF-8"?> - <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> - - <channel> -diff -Nuar --exclude '*~' venus.orig/themes/common/validate.html.xslt venus/themes/common/validate.html.xslt ---- venus.orig/themes/common/validate.html.xslt 2010-09-11 06:41:53.000000000 -0700 -+++ venus/themes/common/validate.html.xslt 2017-03-17 17:26:58.275410251 -0700 -@@ -1,8 +1,10 @@ -+<?xml version="1.0" encoding="UTF-8"?> - <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" - xmlns:atom="http://www.w3.org/2005/Atom" - xmlns:xhtml="http://www.w3.org/1999/xhtml" - xmlns:planet="http://planet.intertwingly.net/" - xmlns="http://www.w3.org/1999/xhtml"> -+ <xsl:output indent="yes" method="html" encoding="UTF-8"/> - - <xsl:template match="atom:feed"> - <html xmlns="http://www.w3.org/1999/xhtml"> diff --git a/www-apps/venus/metadata.xml b/www-apps/venus/metadata.xml deleted file mode 100644 index 1f74e9175222..000000000000 --- a/www-apps/venus/metadata.xml +++ /dev/null @@ -1,13 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="project"> - <email>web-apps@gentoo.org</email> - <name>Gentoo Webapps</name> - </maintainer> - <use> - <flag name="django">Support for django template style to config files</flag> - <flag name="genshi">Support for genshi style to config files</flag> - <flag name="redland">Enable support for Redland RDF</flag> - </use> -</pkgmetadata> diff --git a/www-apps/venus/venus-20100911-r3.ebuild b/www-apps/venus/venus-20100911-r3.ebuild deleted file mode 100644 index 228801836103..000000000000 --- a/www-apps/venus/venus-20100911-r3.ebuild +++ /dev/null @@ -1,77 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -PYTHON_COMPAT=( python2_7 ) - -inherit webapp python-single-r1 - -WEBAPP_MANUAL_SLOT="yes" - -DESCRIPTION="A feed aggregator application" -HOMEPAGE="http://intertwingly.net/code/venus/" -SRC_URI="mirror://gentoo/${P}.tar.bz2" - -LICENSE="PSF-2.2" -KEYWORDS="amd64 x86" -IUSE="django genshi redland test" -RESTRICT="!test? ( test )" -SLOT="0" - -RDEPEND=" - $(python_gen_cond_dep ' - dev-python/bsddb3[${PYTHON_MULTI_USEDEP}] - dev-python/chardet[${PYTHON_MULTI_USEDEP}] - dev-python/httplib2[${PYTHON_MULTI_USEDEP}] - dev-python/utidylib[${PYTHON_MULTI_USEDEP}] - django? ( dev-python/django[${PYTHON_MULTI_USEDEP}] ) - genshi? ( dev-python/genshi[${PYTHON_MULTI_USEDEP}] ) - redland? ( dev-python/rdflib[redland,${PYTHON_MULTI_USEDEP}] ) - ') - ${PYTHON_DEPS}" -DEPEND="${RDEPEND}" - -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -S="${WORKDIR}"/${PN} - -pkg_setup() { - python-single-r1_pkg_setup - webapp_pkg_setup -} - -src_prepare() { - eapply "${FILESDIR}"/venus-bsddb3.patch - eapply_user - python_fix_shebang . -} - -src_test() { - "${PYTHON}" runtests.py || die -} - -src_install() { - webapp_src_preinst - - dodoc AUTHORS README TODO - dodoc -r docs - - python_moduleinto venus - python_domodule *.py filters planet - - insinto "${MY_APPDIR}" - doins -r themes - - insinto "${MY_HOSTROOTDIR}/conf" - doins -r examples - - webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt - - webapp_src_install -} - -pkg_postinst() { - webapp_pkg_postinst - elog "Installation instructions can be found at /usr/share/doc/${PF}/html/ - or http://intertwingly.net/code/venus/docs/index.html" -} diff --git a/www-apps/venus/venus-20100911-r4.ebuild b/www-apps/venus/venus-20100911-r4.ebuild deleted file mode 100644 index cd6f9036e379..000000000000 --- a/www-apps/venus/venus-20100911-r4.ebuild +++ /dev/null @@ -1,81 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -PYTHON_COMPAT=( python2_7 ) - -inherit webapp python-single-r1 - -WEBAPP_MANUAL_SLOT="yes" - -DESCRIPTION="A feed aggregator application" -HOMEPAGE="http://intertwingly.net/code/venus/" -SRC_URI="mirror://gentoo/${P}.tar.bz2" - -LICENSE="PSF-2.2" -KEYWORDS="~amd64 ~x86" -IUSE="django genshi redland test" -RESTRICT="!test? ( test )" -SLOT="0" - -RDEPEND=" - $(python_gen_cond_dep ' - dev-python/bsddb3[${PYTHON_MULTI_USEDEP}] - dev-python/chardet[${PYTHON_MULTI_USEDEP}] - dev-python/httplib2[${PYTHON_MULTI_USEDEP}] - dev-python/utidylib[${PYTHON_MULTI_USEDEP}] - django? ( dev-python/django[${PYTHON_MULTI_USEDEP}] ) - genshi? ( dev-python/genshi[${PYTHON_MULTI_USEDEP}] ) - redland? ( dev-python/rdflib[redland,${PYTHON_MULTI_USEDEP}] ) - ') - ${PYTHON_DEPS}" -DEPEND="${RDEPEND}" - -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -S="${WORKDIR}"/${PN} - -pkg_setup() { - python-single-r1_pkg_setup - webapp_pkg_setup -} - -PATCHES=( - "${FILESDIR}"/venus-bsddb3.patch - "${FILESDIR}"/venus-xml-utf8.patch -) - -src_prepare() { - default_src_prepare - python_fix_shebang . -} - -src_test() { - "${PYTHON}" runtests.py || die -} - -src_install() { - webapp_src_preinst - - dodoc AUTHORS README TODO - dodoc -r docs - - python_moduleinto venus - python_domodule *.py filters planet - - insinto "${MY_APPDIR}" - doins -r themes - - insinto "${MY_HOSTROOTDIR}/conf" - doins -r examples - - webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt - - webapp_src_install -} - -pkg_postinst() { - webapp_pkg_postinst - elog "Installation instructions can be found at /usr/share/doc/${PF}/html/ - or http://intertwingly.net/code/venus/docs/index.html" -} |