From owner-svn-ports-all@freebsd.org Mon Jul 1 06:32:44 2019 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 C813C15C95B0; Mon, 1 Jul 2019 06:32:44 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6A7149398D; Mon, 1 Jul 2019 06:32:44 +0000 (UTC) (envelope-from koobs@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 43DC8932A; Mon, 1 Jul 2019 06:32:44 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x616WiHu042890; Mon, 1 Jul 2019 06:32:44 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x616Wi2I042889; Mon, 1 Jul 2019 06:32:44 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201907010632.x616Wi2I042889@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Mon, 1 Jul 2019 06:32:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r505542 - branches/2019Q2/devel/py-setproctitle X-SVN-Group: ports-branches X-SVN-Commit-Author: koobs X-SVN-Commit-Paths: branches/2019Q2/devel/py-setproctitle X-SVN-Commit-Revision: 505542 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 6A7149398D X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.82 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.82)[-0.821,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 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: Mon, 01 Jul 2019 06:32:45 -0000 Author: koobs Date: Mon Jul 1 06:32:43 2019 New Revision: 505542 URL: https://svnweb.freebsd.org/changeset/ports/505542 Log: MFH: r504290 devel/py-setproctitle: Fix conflict with concurrent Python flavors Since devel/py-setproctitle installs HISTORY.rst and README.rst in a fixed location, pkg won't allow multiple flavors installed at the same time and concurrent ports conflict on install with each other. This change adds USE_PYTHON=concurrent which compensates for files in DOCSDIR automatically, by using a different directory for each Python version. PR: 238601 Submitted by: Ralf van der Enden Approved by: portmgr (blanket(s): just fix it, ports (python) compliance) Approved by: ports-secteam (blanket: bugfix) Modified: branches/2019Q2/devel/py-setproctitle/Makefile Directory Properties: branches/2019Q2/ (props changed) Modified: branches/2019Q2/devel/py-setproctitle/Makefile ============================================================================== --- branches/2019Q2/devel/py-setproctitle/Makefile Mon Jul 1 06:30:28 2019 (r505541) +++ branches/2019Q2/devel/py-setproctitle/Makefile Mon Jul 1 06:32:43 2019 (r505542) @@ -3,6 +3,7 @@ PORTNAME= setproctitle PORTVERSION= 1.1.10 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -14,7 +15,7 @@ LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/COPYRIGHT USES= python -USE_PYTHON= autoplist distutils +USE_PYTHON= autoplist concurrent distutils PORTDOCS= HISTORY.rst README.rst