Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 9 Oct 2018 14:27:40 +0000 (UTC)
From:      Rene Ladan <rene@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r481636 - head/www/py-django-bulk-update
Message-ID:  <201810091427.w99ERe90014913@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: rene
Date: Tue Oct  9 14:27:40 2018
New Revision: 481636
URL: https://svnweb.freebsd.org/changeset/ports/481636

Log:
  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

Modified:
  head/www/py-django-bulk-update/Makefile

Modified: head/www/py-django-bulk-update/Makefile
==============================================================================
--- head/www/py-django-bulk-update/Makefile	Tue Oct  9 13:57:34 2018	(r481635)
+++ head/www/py-django-bulk-update/Makefile	Tue Oct  9 14:27:40 2018	(r481636)
@@ -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>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201810091427.w99ERe90014913>