svn commit: r505542 - branches/2019Q2/devel/py-setproctitle

Kubilay Kocak koobs at FreeBSD.org
Mon Jul 1 06:32:45 UTC 2019


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 <tremere cainites net>
  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
 


More information about the svn-ports-all mailing list