remove dead/abandoned upstream projects

pidgin-gfire: GameSpy shutdown 2014
pylons: superseded by Pyramid
libturpial: Twitter API killed it
pidgin-tlen: ebuild from 2010, protocol dead
xneur/gxneur: abandoned ~2016
unix-runescape-client: RuneScape dropped Java client
oursql: unmaintained since 2013
phun: closed-source abandonware

No sablink-specific patches worth keeping in any of these.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Mario Fetka
2026-06-30 06:08:27 +02:00
parent a6213d429b
commit 68c403466f
32 changed files with 0 additions and 736 deletions
-1
View File
@@ -1 +0,0 @@
DIST oursql-0.9.3.1.zip 175789 SHA256 a6d8044591b2ecb859b8bf72a1c535d0b33bd249f7fecdbe63d2173855b568b7
-10
View File
@@ -1,10 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>lxnay@gentoo.org</email>
</maintainer>
<maintainer type="person">
<email>skullbocks@sabayon.org</email>
</maintainer>
</pkgmetadata>
-19
View File
@@ -1,19 +0,0 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="6"
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1
DESCRIPTION="a set of MySQL bindings for Python with a focus on wrapping the MYSQL_STMT API"
HOMEPAGE="https://launchpad.net/oursql"
SRC_URI="https://launchpad.net/oursql/trunk/${PV}/+download/${P}.zip"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
IUSE=""
RDEPEND=">=virtual/mysql-4.1"
DEPEND="${RDEPEND}"
-1
View File
@@ -1 +0,0 @@
DIST Pylons-1.0.1.tar.gz 2299257 SHA256 7c22579516d92e6fcab3f9555b33fe7a259cc2e16d2fe414816c0138c91e8c0d SHA512 1b34541c912c914636fc7b0d358439a6705e5161a306a4bfa6a08cbc1ee4741cb3882afc9cae9a22d208f89f9648a4b7559304842339c8d6d75472f058a91ceb WHIRLPOOL 58019b223a0fc52f5cf7582a03ae7f5b25c29b88d3faff42c03ed5602f3fb2bc4bc9a4cce48d761109c2c7a4edc0b05ffcb100bf1bab70cf572f93c6da38d2c8
@@ -1,42 +0,0 @@
--- a/pylons/controllers/util.py
+++ b/pylons/controllers/util.py
@@ -174,7 +174,7 @@ def etag_cache(key=None):
response.headers.pop('Content-Type', None)
response.headers.pop('Cache-Control', None)
response.headers.pop('Pragma', None)
- raise status_map[304]().exception
+ raise status_map[304]()
else:
log.debug("ETag didn't match, returning response object")
@@ -207,7 +207,7 @@ def abort(status_code=None, detail="", h
comment=comment)
log.debug("Aborting request, status: %s, detail: %r, headers: %r, "
"comment: %r", status_code, detail, headers, comment)
- raise exc.exception
+ raise exc
def redirect(url, code=302):
@@ -221,4 +221,4 @@ def redirect(url, code=302):
"""
log.debug("Generating %s redirect" % code)
exc = status_map[code]
- raise exc(location=url).exception
+ raise exc(location=url)
--- a/tests/test_units/test_controller.py
+++ b/tests/test_units/test_controller.py
@@ -36,11 +36,11 @@ class BasicWSGIController(WSGIController
def use_redirect(self):
pylons.response.set_cookie('message', 'Hello World')
exc = status_map[301]
- raise exc('/elsewhere').exception
+ raise exc('/elsewhere')
def use_customnotfound(self):
exc = status_map[404]
- raise exc('Custom not found').exception
+ raise exc('Custom not found')
def header_check(self):
pylons.response.headers['Content-Type'] = 'text/plain'
@@ -1,12 +0,0 @@
diff -Nurp Pylons-1.0.1.orig/pylons/controllers/util.py Pylons-1.0.1/pylons/controllers/util.py
--- Pylons-1.0.1.orig/pylons/controllers/util.py 2011-12-13 22:40:32.000000000 +0000
+++ Pylons-1.0.1/pylons/controllers/util.py 2013-03-18 19:49:53.774373984 +0000
@@ -56,7 +56,7 @@ class Request(WebObRequest):
def languages(self):
# And we now have the old best_matches code that webob ditched!
al = self.accept_language
- items = [i for i, q in sorted(al._parsed, key=lambda iq: -iq[1])]
+ items = [i for i, q in sorted(getattr(al, '_parsed', []), key=lambda iq: -iq[1])]
for index, item in enumerate(items):
if al._match(item, self.language):
items[index:] = [self.language]
-12
View File
@@ -1,12 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>python</herd>
<use>
<flag name="genshi">Add optional genshi support</flag>
<flag name="jinja">Add optional jinja support</flag>
</use>
<upstream>
<remote-id type="pypi">Pylons</remote-id>
</upstream>
</pkgmetadata>
-58
View File
@@ -1,58 +0,0 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="5"
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1
MY_PN="Pylons"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="Pylons Web Framework"
HOMEPAGE="http://pylonshq.com/ http://pypi.python.org/pypi/Pylons"
SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="genshi jinja test"
RDEPEND=">=dev-python/beaker-1.3[${PYTHON_USEDEP}]
>=dev-python/decorator-2.3.2[${PYTHON_USEDEP}]
>=dev-python/formencode-1.2.1[${PYTHON_USEDEP}]
>=dev-python/mako-0.2.4[${PYTHON_USEDEP}]
>=dev-python/nose-0.10.4[${PYTHON_USEDEP}]
>=dev-python/paste-1.7.2[${PYTHON_USEDEP}]
>=dev-python/pastedeploy-1.3.3[${PYTHON_USEDEP}]
>=dev-python/pastescript-1.7.3[${PYTHON_USEDEP}]
>=dev-python/repoze-lru-0.3[${PYTHON_USEDEP}]
>=dev-python/routes-1.12[${PYTHON_USEDEP}]
>=dev-python/simplejson-2.0.8[${PYTHON_USEDEP}]
>=dev-python/tempita-0.2[${PYTHON_USEDEP}]
>=dev-python/weberror-0.10.1[${PYTHON_USEDEP}]
>=dev-python/webhelpers-0.6.4[${PYTHON_USEDEP}]
>=dev-python/webob-0.9.6.1[${PYTHON_USEDEP}]
>=dev-python/webtest-1.1[${PYTHON_USEDEP}]
genshi? ( >=dev-python/genshi-0.4.4[${PYTHON_USEDEP}] )
jinja? ( >=dev-python/jinja-2[${PYTHON_USEDEP}] )"
# Dependency on >=dev-python/coverage-2.85 and dev-python/genshi is not with Jython.
DEPEND="${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
>=dev-python/coverage-2.85[${PYTHON_USEDEP}]
dev-python/genshi[${PYTHON_USEDEP}]
>=dev-python/jinja-2.2.1[${PYTHON_USEDEP}]
)"
S="${WORKDIR}/${MY_P}"
PATCHES=(
"${FILESDIR}/${P}-new-webob-support.patch"
"${FILESDIR}/${P}-new-webob-support-2.patch"
)
python_test() {
nosetests || die "Tests fail with ${EPYTHON}"
}