aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrene <rene@FreeBSD.org>2018-10-09 22:27:40 +0800
committerrene <rene@FreeBSD.org>2018-10-09 22:27:40 +0800
commiteeb906d63d65b712f622ee315c74fd4b41c84289 (patch)
tree2868e8cd44e5a843dc406fbee7f22c234c3cb956
parent215c4985a1c29a15a5e61a315978282f078384da (diff)
downloadfreebsd-ports-gnome-eeb906d63d65b712f622ee315c74fd4b41c84289.tar.gz
freebsd-ports-gnome-eeb906d63d65b712f622ee315c74fd4b41c84289.tar.zst
freebsd-ports-gnome-eeb906d63d65b712f622ee315c74fd4b41c84289.zip
www/py-django-bulk-update: fix reverse conflicts
Do not install empty tests/__init__.py to avoid a conflict with devel/py-phply which is a dependency of textproc/translate-toolkit. All of these ports are dependencies of textproc/pootle, which then fails to build. While here pet portlint. Reported by: pkg-fallout Pointy hat: jpaetzel
-rw-r--r--www/py-django-bulk-update/Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/www/py-django-bulk-update/Makefile b/www/py-django-bulk-update/Makefile
index 0eb631dba090..edc5e73d491b 100644
--- a/www/py-django-bulk-update/Makefile
+++ b/www/py-django-bulk-update/Makefile
@@ -2,7 +2,7 @@
PORTNAME= django-bulk-update
PORTVERSION= 2.2.0
-PORTREVISION= 3
+PORTREVISION= 4
CATEGORIES= www python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
@@ -14,8 +14,12 @@ LICENSE= MIT
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}django>=1.11:www/py-django@${PY_FLAVOR}
-NO_ARCH= yes
USES= python:-3.4
USE_PYTHON= autoplist distutils
+NO_ARCH= yes
+
+post-extract:
+ ${RM} ${WRKSRC}/tests/__init__.py # prevent conflict with devel/py-phply in textproc/pootle
+
.include <bsd.port.mk>