Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 16 Jun 2019 09:25:47 +0000 (UTC)
From:      Kubilay Kocak <koobs@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r504290 - head/devel/py-setproctitle
Message-ID:  <201906160925.x5G9PlYl045377@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: koobs
Date: Sun Jun 16 09:25:47 2019
New Revision: 504290
URL: https://svnweb.freebsd.org/changeset/ports/504290

Log:
  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)
  MFH:		2019Q2 (blanket: bugfix)

Modified:
  head/devel/py-setproctitle/Makefile

Modified: head/devel/py-setproctitle/Makefile
==============================================================================
--- head/devel/py-setproctitle/Makefile	Sun Jun 16 09:20:13 2019	(r504289)
+++ head/devel/py-setproctitle/Makefile	Sun Jun 16 09:25:47 2019	(r504290)
@@ -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
 



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