From owner-svn-ports-all@freebsd.org Tue Oct 9 14:27:41 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1BD8110ABA8A; Tue, 9 Oct 2018 14:27:41 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C447A8B685; Tue, 9 Oct 2018 14:27:40 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id BEB7613495; Tue, 9 Oct 2018 14:27:40 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w99EReci014914; Tue, 9 Oct 2018 14:27:40 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w99ERe90014913; Tue, 9 Oct 2018 14:27:40 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201810091427.w99ERe90014913@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Tue, 9 Oct 2018 14:27:40 +0000 (UTC) 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 X-SVN-Group: ports-head X-SVN-Commit-Author: rene X-SVN-Commit-Paths: head/www/py-django-bulk-update X-SVN-Commit-Revision: 481636 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2018 14:27:41 -0000 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