Remove hellanzb, development dead upstream since 7+ years, probably

doesnt work with newer twisted, and there are other alternatives to
download NZB 'free content' (sabnzbd and sickbeard are in the portstree)
This commit is contained in:
landry 2017-05-16 19:44:04 +00:00
parent 8a61e60289
commit 6aaeeb1211
10 changed files with 0 additions and 181 deletions

View File

@ -1,31 +0,0 @@
# $OpenBSD: Makefile,v 1.13 2013/03/11 11:35:58 espie Exp $
COMMENT= retrieve and process nzb-files
DISTNAME= hellanzb-0.13
REVISION = 8
CATEGORIES= news
HOMEPAGE= http://www.hellanzb.com/trac/
# BSD-3
PERMIT_PACKAGE_CDROM= Yes
MASTER_SITES= http://www.hellanzb.com/distfiles/
MODULES= lang/python
RUN_DEPENDS= archivers/par2cmdline \
archivers/unrar \
devel/py-twisted/core \
devel/py-twisted/web \
news/py-yenc
MODPY_ADJ_FILES= hellanzb.py
NO_TEST= Yes
pre-configure:
${SUBST_CMD} ${WRKSRC}/Hellanzb/Core.py
.include <bsd.port.mk>

View File

@ -1,2 +0,0 @@
SHA256 (hellanzb-0.13.tar.gz) = VlsIcl65KsHiePp98seyeyFYjE4kwUD92+xKViUVkSc=
SIZE (hellanzb-0.13.tar.gz) = 163698

View File

@ -1,12 +0,0 @@
$OpenBSD: patch-Hellanzb_Core_py,v 1.2 2011/01/14 19:12:13 jasper Exp $
--- Hellanzb/Core.py.orig Mon Jun 11 00:58:14 2007
+++ Hellanzb/Core.py Mon Jun 11 00:58:40 2007
@@ -35,7 +35,7 @@ def findAndLoadConfig(optionalConfigFile = None):
sys.exit(1)
# look for conf in this order: sys.prefix, ./, or ./etc/
- confDirs = [os.path.join(sys.prefix, 'etc')]
+ confDirs = [os.path.join('${SYSCONFDIR}')]
try:
confDirs.append(os.path.join(os.getcwd(), 'etc'))
confDirs.append(os.getcwd())

View File

@ -1,16 +0,0 @@
$OpenBSD: patch-Hellanzb_HellaReactor_py,v 1.2 2012/01/08 11:05:54 eric Exp $
--- Hellanzb/HellaReactor.py.orig Tue Mar 27 06:20:43 2007
+++ Hellanzb/HellaReactor.py Tue Dec 27 20:53:16 2011
@@ -9,7 +9,11 @@ reactor system so it can catch signals, and shutdown h
import Hellanzb, sys, time
import twisted.copyright
-if twisted.copyright.version >= '2.0.0':
+if twisted.copyright.version >= '11.1.0':
+ from twisted.internet.selectreactor import SelectReactor
+ from twisted.internet.posixbase import _NO_FILENO
+ from twisted.internet.posixbase import _NO_FILEDESC
+elif twisted.copyright.version >= '2.0.0' or twisted.copyright.version >= '10.0.0':
from twisted.internet.selectreactor import SelectReactor
from twisted.internet.selectreactor import _NO_FILENO
from twisted.internet.selectreactor import _NO_FILEDESC

View File

@ -1,12 +0,0 @@
$OpenBSD: patch-Hellanzb_HellaXMLRPC_HtPasswdAuth_py,v 1.1 2010/08/23 07:02:06 giovanni Exp $
--- Hellanzb/HellaXMLRPC/HtPasswdAuth.py.orig Fri Aug 13 17:16:54 2010
+++ Hellanzb/HellaXMLRPC/HtPasswdAuth.py Fri Aug 13 17:17:06 2010
@@ -13,7 +13,7 @@ from twisted.web import static
from twisted.web.resource import Resource
import twisted.copyright
-if twisted.copyright.version >= '2.0.0':
+if twisted.copyright.version >= '2.0.0' or twisted.copyright.version >= '10.0.0':
from twisted.web import http
else:
from twisted.protocols import http

View File

@ -1,12 +0,0 @@
$OpenBSD: patch-Hellanzb_HellaXMLRPC_xmlrpc_py,v 1.1 2010/08/23 07:02:06 giovanni Exp $
--- Hellanzb/HellaXMLRPC/xmlrpc.py.orig Fri Aug 13 17:15:52 2010
+++ Hellanzb/HellaXMLRPC/xmlrpc.py Fri Aug 13 17:16:49 2010
@@ -31,7 +31,7 @@ from twisted.internet import defer, protocol, reactor
from twisted.python import log, reflect
import twisted.copyright
-if twisted.copyright.version >= '2.0.0':
+if twisted.copyright.version >= '2.0.0' or twisted.copyright.version >= '10.0.0':
from twisted.web import http
else:
from twisted.protocols import http

View File

@ -1,14 +0,0 @@
$OpenBSD: patch-setup_py,v 1.1.1.1 2007/06/24 16:57:40 jasper Exp $
--- setup.py.orig Tue Mar 27 06:20:43 2007
+++ setup.py Mon Jun 11 00:43:49 2007
@@ -38,8 +38,8 @@ def runSetup():
packages = [ 'Hellanzb', 'Hellanzb.NZBLeecher', 'Hellanzb.HellaXMLRPC',
'Hellanzb.external', 'Hellanzb.external.elementtree' ],
scripts = [ 'hellanzb.py' ],
- data_files = [ ( 'etc', [ 'etc/hellanzb.conf.sample' ] ),
- ( 'share/doc/hellanzb', [ 'CHANGELOG', 'CREDITS', 'README', 'LICENSE' ] ) ],
+ data_files = [ ( 'share/examples/hellanzb', [ 'etc/hellanzb.conf.sample' ] ),
+ ( 'share/doc/hellanzb', [ 'README'] ) ],
)
py2app_options = dict(
app = [ 'hellanzb.py' ],

View File

@ -1,6 +0,0 @@
hellanzb is a Python application designed for *nix environments that
retrieves nzb files and fully processes them. The goal being to make
getting files from Usenet (e.g.: Giganews Newsgroups) as hands-free as
possible. Once fully installed, all thats required is moving an nzb file
to the queue directory. The rest; fetching, par-checking, un-raring,
etc. is taken care of by hellanzb.

View File

@ -1,3 +0,0 @@
Please change the value of Hellanzb.PREFIX_DIR in
${SYSCONFDIR}/hellanzb.conf to point to an existing directory.
Like your home directory.

View File

@ -1,73 +0,0 @@
@comment $OpenBSD: PLIST,v 1.2 2011/01/14 19:12:13 jasper Exp $
bin/hellanzb.py
lib/python${MODPY_VERSION}/site-packages/Hellanzb/
lib/python${MODPY_VERSION}/site-packages/Hellanzb/Core.py
lib/python${MODPY_VERSION}/site-packages/Hellanzb/Core.pyc
lib/python${MODPY_VERSION}/site-packages/Hellanzb/Daemon.py
lib/python${MODPY_VERSION}/site-packages/Hellanzb/Daemon.pyc
lib/python${MODPY_VERSION}/site-packages/Hellanzb/Elite.py
lib/python${MODPY_VERSION}/site-packages/Hellanzb/Elite.pyc
lib/python${MODPY_VERSION}/site-packages/Hellanzb/Growl.py
lib/python${MODPY_VERSION}/site-packages/Hellanzb/Growl.pyc
lib/python${MODPY_VERSION}/site-packages/Hellanzb/HellaReactor.py
lib/python${MODPY_VERSION}/site-packages/Hellanzb/HellaReactor.pyc
lib/python${MODPY_VERSION}/site-packages/Hellanzb/HellaXMLRPC/
lib/python${MODPY_VERSION}/site-packages/Hellanzb/HellaXMLRPC/HtPasswdAuth.py
lib/python${MODPY_VERSION}/site-packages/Hellanzb/HellaXMLRPC/HtPasswdAuth.pyc
lib/python${MODPY_VERSION}/site-packages/Hellanzb/HellaXMLRPC/__init__.py
lib/python${MODPY_VERSION}/site-packages/Hellanzb/HellaXMLRPC/__init__.pyc
lib/python${MODPY_VERSION}/site-packages/Hellanzb/HellaXMLRPC/xmlrpc.py
lib/python${MODPY_VERSION}/site-packages/Hellanzb/HellaXMLRPC/xmlrpc.pyc
lib/python${MODPY_VERSION}/site-packages/Hellanzb/Log.py
lib/python${MODPY_VERSION}/site-packages/Hellanzb/Log.pyc
lib/python${MODPY_VERSION}/site-packages/Hellanzb/Logging.py
lib/python${MODPY_VERSION}/site-packages/Hellanzb/Logging.pyc
lib/python${MODPY_VERSION}/site-packages/Hellanzb/NZBDownloader.py
lib/python${MODPY_VERSION}/site-packages/Hellanzb/NZBDownloader.pyc
lib/python${MODPY_VERSION}/site-packages/Hellanzb/NZBLeecher/
lib/python${MODPY_VERSION}/site-packages/Hellanzb/NZBLeecher/ArticleDecoder.py
lib/python${MODPY_VERSION}/site-packages/Hellanzb/NZBLeecher/ArticleDecoder.pyc
lib/python${MODPY_VERSION}/site-packages/Hellanzb/NZBLeecher/DupeHandler.py
lib/python${MODPY_VERSION}/site-packages/Hellanzb/NZBLeecher/DupeHandler.pyc
lib/python${MODPY_VERSION}/site-packages/Hellanzb/NZBLeecher/NZBLeecherUtil.py
lib/python${MODPY_VERSION}/site-packages/Hellanzb/NZBLeecher/NZBLeecherUtil.pyc
lib/python${MODPY_VERSION}/site-packages/Hellanzb/NZBLeecher/NZBModel.py
lib/python${MODPY_VERSION}/site-packages/Hellanzb/NZBLeecher/NZBModel.pyc
lib/python${MODPY_VERSION}/site-packages/Hellanzb/NZBLeecher/NZBParser.py
lib/python${MODPY_VERSION}/site-packages/Hellanzb/NZBLeecher/NZBParser.pyc
lib/python${MODPY_VERSION}/site-packages/Hellanzb/NZBLeecher/NZBSegmentQueue.py
lib/python${MODPY_VERSION}/site-packages/Hellanzb/NZBLeecher/NZBSegmentQueue.pyc
lib/python${MODPY_VERSION}/site-packages/Hellanzb/NZBLeecher/Protocol.py
lib/python${MODPY_VERSION}/site-packages/Hellanzb/NZBLeecher/Protocol.pyc
lib/python${MODPY_VERSION}/site-packages/Hellanzb/NZBLeecher/__init__.py
lib/python${MODPY_VERSION}/site-packages/Hellanzb/NZBLeecher/__init__.pyc
lib/python${MODPY_VERSION}/site-packages/Hellanzb/NZBLeecher/nntp.py
lib/python${MODPY_VERSION}/site-packages/Hellanzb/NZBLeecher/nntp.pyc
lib/python${MODPY_VERSION}/site-packages/Hellanzb/NZBQueue.py
lib/python${MODPY_VERSION}/site-packages/Hellanzb/NZBQueue.pyc
lib/python${MODPY_VERSION}/site-packages/Hellanzb/NewzbinDownloader.py
lib/python${MODPY_VERSION}/site-packages/Hellanzb/NewzbinDownloader.pyc
lib/python${MODPY_VERSION}/site-packages/Hellanzb/PostProcessor.py
lib/python${MODPY_VERSION}/site-packages/Hellanzb/PostProcessor.pyc
lib/python${MODPY_VERSION}/site-packages/Hellanzb/PostProcessorUtil.py
lib/python${MODPY_VERSION}/site-packages/Hellanzb/PostProcessorUtil.pyc
lib/python${MODPY_VERSION}/site-packages/Hellanzb/SmartPar.py
lib/python${MODPY_VERSION}/site-packages/Hellanzb/SmartPar.pyc
lib/python${MODPY_VERSION}/site-packages/Hellanzb/Util.py
lib/python${MODPY_VERSION}/site-packages/Hellanzb/Util.pyc
lib/python${MODPY_VERSION}/site-packages/Hellanzb/__init__.py
lib/python${MODPY_VERSION}/site-packages/Hellanzb/__init__.pyc
lib/python${MODPY_VERSION}/site-packages/Hellanzb/external/
lib/python${MODPY_VERSION}/site-packages/Hellanzb/external/__init__.py
lib/python${MODPY_VERSION}/site-packages/Hellanzb/external/__init__.pyc
lib/python${MODPY_VERSION}/site-packages/Hellanzb/external/elementtree/
lib/python${MODPY_VERSION}/site-packages/Hellanzb/external/elementtree/SimpleXMLWriter.py
lib/python${MODPY_VERSION}/site-packages/Hellanzb/external/elementtree/SimpleXMLWriter.pyc
lib/python${MODPY_VERSION}/site-packages/Hellanzb/external/elementtree/__init__.py
lib/python${MODPY_VERSION}/site-packages/Hellanzb/external/elementtree/__init__.pyc
lib/python${MODPY_VERSION}/site-packages/hellanzb-0.13-py${MODPY_VERSION}.egg-info
share/doc/hellanzb/
share/doc/hellanzb/README
share/examples/hellanzb/
share/examples/hellanzb/hellanzb.conf.sample
@sample ${SYSCONFDIR}/hellanzb.conf