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

Collapse All | Expand All

(-)Makefile (-6 / +9 lines)
Lines 3-25 Link Here
3
3
4
PORTNAME=	pysendfile
4
PORTNAME=	pysendfile
5
PORTVERSION=	2.0.0
5
PORTVERSION=	2.0.0
6
PORTREVISION=	1
6
DISTVERSIONPREFIX=	release-
7
PORTREVISION=	2
7
CATEGORIES=	net python devel
8
CATEGORIES=	net python devel
8
MASTER_SITES=	GOOGLE_CODE
9
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
9
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
10
10
11
MAINTAINER=	koobs@FreeBSD.org
11
MAINTAINER=	koobs@FreeBSD.org
12
COMMENT=	Python interface to sendfile(2)
12
COMMENT=	Python interface to sendfile(2)
13
13
14
LICENSE=	MIT
14
LICENSE=	MIT
15
15
LICENSE_FILE=	${WRKSRC}/LICENSE
16
BROKEN=		Unfetchable (google code has gone away)
17
DEPRECATED=	Unfetchable for more than six months (google code has gone away)
18
EXPIRATION_DATE=	2017-04-30
19
16
20
CONFLICTS_INSTALL=	py*-sendfile-[0-9]*
17
CONFLICTS_INSTALL=	py*-sendfile-[0-9]*
21
18
19
USE_GITHUB=	yes
20
GH_ACCOUNT=	giampaolo
21
22
USES=		python
22
USES=		python
23
USE_PYTHON=	distutils autoplist
23
USE_PYTHON=	distutils autoplist
24
24
25
post-install:
26
	@${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/sendfile.so
27
25
.include <bsd.port.mk>
28
.include <bsd.port.mk>
(-)distinfo (-2 / +3 lines)
Lines 1-2 Link Here
1
SHA256 (pysendfile-2.0.0.tar.gz) = b7b747e47f2b1b16942d8db9139e0f0f70546ca80a06460bd5abfdc7a1bca957
1
TIMESTAMP = 1488116510
2
SIZE (pysendfile-2.0.0.tar.gz) = 11155
2
SHA256 (giampaolo-pysendfile-release-2.0.0_GH0.tar.gz) = e23e1fddd8e3f77b9a9d63ccd80ce3776c9623d433680937f9d1974bdf6cccd3
3
SIZE (giampaolo-pysendfile-release-2.0.0_GH0.tar.gz) = 11200
(-)files/patch-setup.py (-3 / +3 lines)
Lines 1-6 Link Here
1
--- ./setup.py.orig	2012-06-17 22:22:27.000000000 +1000
1
--- setup.py.orig	2012-01-13 08:36:44 UTC
2
+++ ./setup.py	2012-06-17 22:22:42.000000000 +1000
2
+++ setup.py
3
@@ -79,6 +79,7 @@
3
@@ -79,6 +79,7 @@ def main():
4
               'Topic :: Internet :: WWW/HTTP',
4
               'Topic :: Internet :: WWW/HTTP',
5
               'License :: OSI Approved :: MIT License',
5
               'License :: OSI Approved :: MIT License',
6
           ],
6
           ],
(-)pkg-descr (-1 / +1 lines)
Lines 3-6 Link Here
3
to the fact that all of the copying of data between the two descriptors is
3
to the fact that all of the copying of data between the two descriptors is
4
done entirely by the kernel, with no copying of data into userspace buffers.
4
done entirely by the kernel, with no copying of data into userspace buffers.
5
5
6
WWW: http://code.google.com/p/pysendfile
6
WWW: https://github.com/giampaolo/pysendfile

Return to bug 217373