View | Details | Raw Unified | Return to bug 218722 | Differences between
and this patch

Collapse All | Expand All

(-)news/py-sabyenc/Makefile (+22 lines)
Line 0 Link Here
1
# Created by: Ralf van der Enden <tremere@cainites.net>
2
# $FreeBSD$
3
4
PORTNAME=	sabyenc
5
PORTVERSION=	3.0.2
6
CATEGORIES=	news python
7
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
8
DISTVERSIONPREFIX=	v
9
10
MAINTAINER=	tremere@cainites.net
11
COMMENT=	Python yEnc package optimized for use within SABnzbd
12
13
LICENSE=	GPLv3
14
15
BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pip>0:devel/py-pip
16
17
USES=		python
18
USE_GITHUB=	yes
19
GH_ACCOUNT=	sabnzbd
20
USE_PYTHON=	autoplist distutils
21
22
.include <bsd.port.mk>
(-)news/py-sabyenc/distinfo (+3 lines)
Line 0 Link Here
1
TIMESTAMP = 1491815965
2
SHA256 (sabnzbd-sabyenc-v3.0.2_GH0.tar.gz) = 72305bdacfb4f82764e7f3e33a7001983f9af5c8d633cbf57e950b570a56e55d
3
SIZE (sabnzbd-sabyenc-v3.0.2_GH0.tar.gz) = 16080819
(-)news/py-sabyenc/pkg-descr (+11 lines)
Line 0 Link Here
1
Modified the original yenc module by Alessandro Duca alessandro.duca@gmail.com
2
for use within SABnzbd.
3
4
The module was extended to do header parsing and full yEnc decoding from a
5
Python list of chunks, the way in which data is retrieved from usenet. This is
6
particularly beneficial when SSL is enabled, which limits the size of each
7
chunk to 16K. Parsing these chunks in python is much more costly. Additionally,
8
this module releases Python's GIL during decoding, greatly increasing
9
performance of the overall download process.
10
11
WWW: https://github.com/sabnzbd/sabyenc

Return to bug 218722