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

Collapse All | Expand All

(-)b/Makefile (-6 / +13 lines)
Lines 1-24 Link Here
1
PORTNAME=	Wand
1
PORTNAME=	Wand
2
PORTVERSION=	0.4.5
2
PORTVERSION=	0.6.7
3
CATEGORIES=	graphics python
3
CATEGORIES=	graphics python
4
MASTER_SITES=	CHEESESHOP
4
MASTER_SITES=	CHEESESHOP
5
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
5
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
6
6
7
MAINTAINER=	python@FreeBSD.org
7
MAINTAINER=	rsmith@xs4all.nl
8
COMMENT=	MagickWand Python binding
8
COMMENT=	MagickWand Python binding
9
9
10
LICENSE=	MIT
10
LICENSE=	MIT
11
LICENSE_FILE=	${WRKSRC}/LICENSE
11
LICENSE_FILE=	${WRKSRC}/LICENSE
12
12
13
LIB_DEPENDS=	libMagickWand-6.so:graphics/ImageMagick6
13
LIB_DEPENDS=	libMagickWand-7.so:graphics/ImageMagick7
14
14
15
USES=		python:3.6+
15
USES=		python:3.6+
16
USE_PYTHON=	autoplist concurrent distutils
16
USE_PYTHON=	autoplist concurrent distutils
17
17
18
NO_ARCH=	yes
18
NO_ARCH=	yes
19
PORTDOCS=	*
19
20
20
.include <bsd.port.pre.mk>
21
OPTIONS_DEFINE=	DOCS
22
DOCS_BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}sphinx>=0,1:textproc/py-sphinx@${PY_FLAVOR}
23
DOCS_VARS=	PYDISTUTILS_BUILD_TARGET+="build_sphinx -a -E"
21
24
22
PYDISTUTILS_INSTALLARGS+=	--install-data ${DATADIR}
25
post-install-DOCS-on:
26
	@${MKDIR} ${STAGEDIR}${DOCSDIR}
27
	(cd ${WRKSRC}/build/sphinx/html && \
28
		${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR} \
29
			"! -name .buildinfo -and ! -name objects.inv")
23
30
24
.include <bsd.port.post.mk>
31
.include <bsd.port.mk>
(-)b/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1542296080
1
TIMESTAMP = 1631968670
2
SHA256 (Wand-0.4.5.tar.gz) = b40a2215545e8c7193b3fccd6e7251dc556ec9b878a4f67d992b056ff396bc65
2
SHA256 (Wand-0.6.7.tar.gz) = ebc01bccc25dba68414ab55b482341f9ad2b197d7f49d5e724f339bbf63fb6db
3
SIZE (Wand-0.4.5.tar.gz) = 65854
3
SIZE (Wand-0.6.7.tar.gz) = 11686093
(-)a/files/patch-setup.py (-10 lines)
Removed Link Here
1
--- setup.py.orig	2016-10-22 05:27:48 UTC
2
+++ setup.py
3
@@ -35,7 +35,6 @@ else:
4
 setup(
5
     name='Wand',
6
     packages=['wand'],
7
-    data_files=[('', ['README.rst'])],
8
     version=VERSION,
9
     description='Ctypes-based simple MagickWand API binding for Python',
10
     long_description=readme(),

Return to bug 234981