Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 5 Jan 2021 22:08:22 +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: r560434 - in head: Mk/Uses databases/py-cassandra-driver databases/py-python-swiftclient devel/b2 devel/py-apscheduler devel/py-azure-datalake-store devel/py-azure-multiapi-storage deve...
Message-ID:  <202101052208.105M8M8u080144@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: rene
Date: Tue Jan  5 22:08:21 2021
New Revision: 560434
URL: https://svnweb.freebsd.org/changeset/ports/560434

Log:
  Follow up on devel/py-futures port removal in r559976
  
  The devel/py-futures port was removed in r559976 as it was for
  Python 2.7 only and no longer referenced in the default cases.
  However it was still defined in Mk/Uses/python.mk in PY_FUTURES,
  leaving a dangling reference.
  
  Remove it from Mk/Uses/python.mk and from affected ports, as
  it was already an empty definition for Python 3.6+
  
  Bump minimal Python version of security/theonionbox to 3.6+

Modified:
  head/Mk/Uses/python.mk
  head/databases/py-cassandra-driver/Makefile
  head/databases/py-python-swiftclient/Makefile
  head/devel/b2/Makefile
  head/devel/py-apscheduler/Makefile
  head/devel/py-azure-datalake-store/Makefile
  head/devel/py-azure-multiapi-storage/Makefile
  head/devel/py-azure-storage-blob/Makefile
  head/devel/py-b2sdk/Makefile
  head/devel/py-click-threading/Makefile
  head/devel/py-cloudpickle/Makefile
  head/devel/py-futurist1/Makefile
  head/devel/py-grpcio/Makefile
  head/devel/py-marrow.mailer/Makefile
  head/devel/py-openstacksdk043/Makefile
  head/devel/py-opentracing/Makefile
  head/devel/py-oslo.privsep1/Makefile
  head/devel/py-pebble/Makefile
  head/devel/py-taskflow3/Makefile
  head/devel/py-tenacity/Makefile
  head/devel/py-tooz1/Makefile
  head/devel/py-trollius/Makefile
  head/devel/py-txaio/Makefile
  head/devel/youcompleteme/Makefile
  head/multimedia/livestreamer/Makefile
  head/multimedia/mythtv/Makefile
  head/multimedia/py-subliminal/Makefile
  head/net/py-confluent-kafka/Makefile
  head/net/py-s3transfer/Makefile
  head/security/py-trustme/Makefile
  head/security/theonionbox/Makefile
  head/sysutils/py-salt-2019/Makefile
  head/sysutils/py-salt/Makefile
  head/www/py-autobahn/Makefile
  head/www/py-django-pipeline/Makefile
  head/www/py-google-api-core/Makefile
  head/www/py-hyper/Makefile
  head/www/py-requests-futures/Makefile
  head/www/py-requests-unixsocket/Makefile
  head/www/py-weboob/Makefile

Modified: head/Mk/Uses/python.mk
==============================================================================
--- head/Mk/Uses/python.mk	Tue Jan  5 22:02:24 2021	(r560433)
+++ head/Mk/Uses/python.mk	Tue Jan  5 22:08:21 2021	(r560434)
@@ -668,12 +668,6 @@ PY_IPADDRESS=	${PYTHON_PKGNAMEPREFIX}ipaddress>=1.0.23
 PY_IPADDRESS=
 .endif
 
-.if ${PYTHON_REL} < 3200
-PY_FUTURES=	${PYTHON_PKGNAMEPREFIX}futures>=3.2:devel/py-futures@${PY_FLAVOR}
-.else
-PY_FUTURES=
-.endif
-
 .if ${PYTHON_VER} != ${PYTHON_DEFAULT}
 PY_MERCURIAL=	${PYTHON_PKGNAMEPREFIX}mercurial>=5.5:devel/mercurial@${PY_FLAVOR}
 .else

Modified: head/databases/py-cassandra-driver/Makefile
==============================================================================
--- head/databases/py-cassandra-driver/Makefile	Tue Jan  5 22:02:24 2021	(r560433)
+++ head/databases/py-cassandra-driver/Makefile	Tue Jan  5 22:08:21 2021	(r560434)
@@ -12,8 +12,7 @@ COMMENT=	Python client library for Apache Cassandra
 LICENSE=	APACHE20
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
-RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}six>=0:devel/py-six@${PY_FLAVOR} \
-		${PY_FUTURES}
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}six>=0:devel/py-six@${PY_FLAVOR}
 TEST_DEPENDS=	${PYTHON_PKGNAMEPREFIX}nose>=0:devel/py-nose@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}mock>=2.0.0:devel/py-mock@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}yaml>0:devel/py-yaml@${PY_FLAVOR} \

Modified: head/databases/py-python-swiftclient/Makefile
==============================================================================
--- head/databases/py-python-swiftclient/Makefile	Tue Jan  5 22:02:24 2021	(r560433)
+++ head/databases/py-python-swiftclient/Makefile	Tue Jan  5 22:08:21 2021	(r560434)
@@ -16,8 +16,7 @@ LICENSE_FILE=	${WRKSRC}/LICENSE
 BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pbr>=0.5.21:devel/py-pbr@${PY_FLAVOR}
 
 RUN_DEPENDS:=	${BUILD_DEPENDS}
-RUN_DEPENDS+=	${PY_FUTURES} \
-		${PYTHON_PKGNAMEPREFIX}six>=1.9.0:devel/py-six@${PY_FLAVOR} \
+RUN_DEPENDS+=	${PYTHON_PKGNAMEPREFIX}six>=1.9.0:devel/py-six@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}requests>=1.1:www/py-requests@${PY_FLAVOR}
 
 USES=		python:3.6+

Modified: head/devel/b2/Makefile
==============================================================================
--- head/devel/b2/Makefile	Tue Jan  5 22:02:24 2021	(r560433)
+++ head/devel/b2/Makefile	Tue Jan  5 22:08:21 2021	(r560434)
@@ -14,7 +14,6 @@ LICENSE=	MIT
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
 RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}arrow>=0.8.0:devel/py-arrow@${PY_FLAVOR} \
-		${PY_FUTURES} \
 		${PYTHON_PKGNAMEPREFIX}logfury>=0.1.2:devel/py-logfury@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}requests>=2.9.1:www/py-requests@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}six>=1.10:devel/py-six@${PY_FLAVOR} \

Modified: head/devel/py-apscheduler/Makefile
==============================================================================
--- head/devel/py-apscheduler/Makefile	Tue Jan  5 22:02:24 2021	(r560433)
+++ head/devel/py-apscheduler/Makefile	Tue Jan  5 22:08:21 2021	(r560434)
@@ -14,8 +14,7 @@ LICENSE=	MIT
 LICENSE_FILE=	${WRKSRC}/LICENSE.txt
 
 BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}setuptools_scm>0:devel/py-setuptools_scm@${PY_FLAVOR}
-RUN_DEPENDS=	${PY_FUTURES} \
-		${PYTHON_PKGNAMEPREFIX}pytz>0:devel/py-pytz@${PY_FLAVOR} \
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pytz>0:devel/py-pytz@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}six>=1.4.0:devel/py-six@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}tzlocal>=1.2:devel/py-tzlocal@${PY_FLAVOR}
 TEST_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pytest>=3.3:devel/py-pytest@${PY_FLAVOR}

Modified: head/devel/py-azure-datalake-store/Makefile
==============================================================================
--- head/devel/py-azure-datalake-store/Makefile	Tue Jan  5 22:02:24 2021	(r560433)
+++ head/devel/py-azure-datalake-store/Makefile	Tue Jan  5 22:08:21 2021	(r560434)
@@ -13,8 +13,7 @@ LICENSE=	MIT
 
 RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}adal>=0.4.2:net-mgmt/py-adal@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}cffi>=0:devel/py-cffi@${PY_FLAVOR} \
-		${PYTHON_PKGNAMEPREFIX}requests>=2.20.0:www/py-requests@${PY_FLAVOR} \
-		${PY_FUTURES}
+		${PYTHON_PKGNAMEPREFIX}requests>=2.20.0:www/py-requests@${PY_FLAVOR}
 
 USES=		azurepy python:3.6+
 USE_PYTHON=	autoplist concurrent distutils

Modified: head/devel/py-azure-multiapi-storage/Makefile
==============================================================================
--- head/devel/py-azure-multiapi-storage/Makefile	Tue Jan  5 22:02:24 2021	(r560433)
+++ head/devel/py-azure-multiapi-storage/Makefile	Tue Jan  5 22:08:21 2021	(r560434)
@@ -15,8 +15,7 @@ RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}azure-common>=0:ww
 		${PYTHON_PKGNAMEPREFIX}cryptography>=0:security/py-cryptography@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}requests>=0:www/py-requests@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}dateutil>=0:devel/py-dateutil@${PY_FLAVOR} \
-		${PYTHON_PKGNAMEPREFIX}azure-core>=0:devel/py-azure-core@${PY_FLAVOR} \
-		${PY_FUTURES}
+		${PYTHON_PKGNAMEPREFIX}azure-core>=0:devel/py-azure-core@${PY_FLAVOR}
 
 USES=		azurepy python:3.6+
 USE_PYTHON=	autoplist concurrent distutils

Modified: head/devel/py-azure-storage-blob/Makefile
==============================================================================
--- head/devel/py-azure-storage-blob/Makefile	Tue Jan  5 22:02:24 2021	(r560433)
+++ head/devel/py-azure-storage-blob/Makefile	Tue Jan  5 22:08:21 2021	(r560434)
@@ -12,8 +12,7 @@ COMMENT=	Microsoft Azure Storage Blob Client Library f
 LICENSE=	MIT
 
 RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}azure-common>=1.1.5:www/py-azure-common@${PY_FLAVOR} \
-		${PYTHON_PKGNAMEPREFIX}azure-storage-common>=2.1:devel/py-azure-storage-common@${PY_FLAVOR} \
-		${PY_FUTURES}
+		${PYTHON_PKGNAMEPREFIX}azure-storage-common>=2.1:devel/py-azure-storage-common@${PY_FLAVOR}
 
 USES=		azurepy python:3.6+
 USE_PYTHON=	autoplist concurrent distutils

Modified: head/devel/py-b2sdk/Makefile
==============================================================================
--- head/devel/py-b2sdk/Makefile	Tue Jan  5 22:02:24 2021	(r560433)
+++ head/devel/py-b2sdk/Makefile	Tue Jan  5 22:08:21 2021	(r560434)
@@ -19,7 +19,6 @@ RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}arrow>=0.8.0:devel
 		${PYTHON_PKGNAMEPREFIX}six>=1.10:devel/py-six@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}tqdm>=4.5.0:misc/py-tqdm@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3@${PY_FLAVOR} \
-		${PY_FUTURES} \
 		${PY_ENUM34}
 TEST_DEPENDS=	${PYTHON_PKGNAMEPREFIX}nose>0:devel/py-nose@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}mock>0:devel/py-mock@${PY_FLAVOR}

Modified: head/devel/py-click-threading/Makefile
==============================================================================
--- head/devel/py-click-threading/Makefile	Tue Jan  5 22:02:24 2021	(r560433)
+++ head/devel/py-click-threading/Makefile	Tue Jan  5 22:08:21 2021	(r560434)
@@ -12,8 +12,7 @@ COMMENT=	Multithreaded Click apps made easy
 
 LICENSE=	MIT
 
-RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}click>0:devel/py-click@${PY_FLAVOR} \
-		${PY_FUTURES}
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}click>0:devel/py-click@${PY_FLAVOR}
 TEST_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest@${PY_FLAVOR} \
 		${RUN_DEPENDS}
 

Modified: head/devel/py-cloudpickle/Makefile
==============================================================================
--- head/devel/py-cloudpickle/Makefile	Tue Jan  5 22:02:24 2021	(r560433)
+++ head/devel/py-cloudpickle/Makefile	Tue Jan  5 22:08:21 2021	(r560434)
@@ -13,8 +13,7 @@ COMMENT=	Extended pickling support for Python objects
 LICENSE=	BSD3CLAUSE
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
-TEST_DEPENDS=	${PY_FUTURES} \
-		${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest@${PY_FLAVOR} \
+TEST_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}psutil>0:sysutils/py-psutil@${PY_FLAVOR}
 
 USES=		python:3.6+

Modified: head/devel/py-futurist1/Makefile
==============================================================================
--- head/devel/py-futurist1/Makefile	Tue Jan  5 22:02:24 2021	(r560433)
+++ head/devel/py-futurist1/Makefile	Tue Jan  5 22:08:21 2021	(r560434)
@@ -16,8 +16,7 @@ LICENSE=	APACHE20
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
 BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pbr>=2.0.0:devel/py-pbr@${PY_FLAVOR}
-RUN_DEPENDS=	${PY_FUTURES} \
-		${PYTHON_PKGNAMEPREFIX}prettytable0>=0.7.1<0.8:devel/py-prettytable0@${PY_FLAVOR} \
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}prettytable0>=0.7.1<0.8:devel/py-prettytable0@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}six>=1.10.0:devel/py-six@${PY_FLAVOR}
 
 USES=		python:3.6+

Modified: head/devel/py-grpcio/Makefile
==============================================================================
--- head/devel/py-grpcio/Makefile	Tue Jan  5 22:02:24 2021	(r560433)
+++ head/devel/py-grpcio/Makefile	Tue Jan  5 22:08:21 2021	(r560434)
@@ -15,7 +15,6 @@ LICENSE=	APACHE20
 
 RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}six>1:devel/py-six@${PY_FLAVOR} \
 		${PY_ENUM34} \
-		${PY_FUTURES} \
 		${PYTHON_PKGNAMEPREFIX}protobuf>=3:devel/py-protobuf@${PY_FLAVOR}
 LIB_DEPENDS=	libcares.so:dns/c-ares
 

Modified: head/devel/py-marrow.mailer/Makefile
==============================================================================
--- head/devel/py-marrow.mailer/Makefile	Tue Jan  5 22:02:24 2021	(r560433)
+++ head/devel/py-marrow.mailer/Makefile	Tue Jan  5 22:08:21 2021	(r560434)
@@ -12,8 +12,7 @@ COMMENT=	Python library to ease sending emails
 LICENSE=	MIT
 
 RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}marrow.util>=1.2.3:devel/py-marrow.util@${PY_FLAVOR} \
-		${PYTHON_PKGNAMEPREFIX}requests>=0:www/py-requests@${PY_FLAVOR} \
-		${PY_FUTURES}
+		${PYTHON_PKGNAMEPREFIX}requests>=0:www/py-requests@${PY_FLAVOR}
 
 USES=		python:3.6+
 USE_PYTHON=	autoplist concurrent distutils

Modified: head/devel/py-openstacksdk043/Makefile
==============================================================================
--- head/devel/py-openstacksdk043/Makefile	Tue Jan  5 22:02:24 2021	(r560433)
+++ head/devel/py-openstacksdk043/Makefile	Tue Jan  5 22:08:21 2021	(r560434)
@@ -19,7 +19,6 @@ RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}appdirs>=1.3.0:dev
 		${PYTHON_PKGNAMEPREFIX}cryptography>=2.1:security/py-cryptography@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}decorator>=4.4.1:devel/py-decorator@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}dogpile.cache>=0.6.5:devel/py-dogpile.cache@${PY_FLAVOR} \
-		${PY_FUTURES} \
 		${PY_IPADDRESS} \
 		${PYTHON_PKGNAMEPREFIX}iso8601>=0.1.11:devel/py-iso8601@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}jmespath>=0.9.0:devel/py-jmespath@${PY_FLAVOR} \

Modified: head/devel/py-opentracing/Makefile
==============================================================================
--- head/devel/py-opentracing/Makefile	Tue Jan  5 22:02:24 2021	(r560433)
+++ head/devel/py-opentracing/Makefile	Tue Jan  5 22:08:21 2021	(r560434)
@@ -13,8 +13,6 @@ COMMENT=	OpenTracing API for Python
 LICENSE=	APACHE20
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
-RUN_DEPENDS=	${PY_FUTURES}
-
 USES=		python:3.6+
 USE_PYTHON=	autoplist concurrent distutils
 

Modified: head/devel/py-oslo.privsep1/Makefile
==============================================================================
--- head/devel/py-oslo.privsep1/Makefile	Tue Jan  5 22:02:24 2021	(r560433)
+++ head/devel/py-oslo.privsep1/Makefile	Tue Jan  5 22:08:21 2021	(r560434)
@@ -19,7 +19,6 @@ BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pbr>=2.0.0:devel
 RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}cffi>=1.7.0:devel/py-cffi@${PY_FLAVOR} \
 		${PY_ENUM34} \
 		${PYTHON_PKGNAMEPREFIX}eventlet>=0.18.2:net/py-eventlet@${PY_FLAVOR} \
-		${PY_FUTURES} \
 		${PYTHON_PKGNAMEPREFIX}greenlet>=0.4.10:devel/py-greenlet@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}msgpack>=0.5.0:devel/py-msgpack@${PY_FLAVOR}
 

Modified: head/devel/py-pebble/Makefile
==============================================================================
--- head/devel/py-pebble/Makefile	Tue Jan  5 22:02:24 2021	(r560433)
+++ head/devel/py-pebble/Makefile	Tue Jan  5 22:08:21 2021	(r560434)
@@ -14,8 +14,6 @@ COMMENT=	Threading and multiprocessing eye-candy
 LICENSE=	LGPL3
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
-RUN_DEPENDS=	${PY_FUTURES}
-
 USES=		python:3.6+
 USE_PYTHON=	autoplist concurrent distutils
 

Modified: head/devel/py-taskflow3/Makefile
==============================================================================
--- head/devel/py-taskflow3/Makefile	Tue Jan  5 22:02:24 2021	(r560433)
+++ head/devel/py-taskflow3/Makefile	Tue Jan  5 22:08:21 2021	(r560434)
@@ -18,7 +18,6 @@ LICENSE_FILE=	${WRKSRC}/LICENSE
 BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pbr>=2.0.0:devel/py-pbr@${PY_FLAVOR}
 RUN_DEPENDS=	${PY_ENUM34} \
 		${PYTHON_PKGNAMEPREFIX}fasteners>=0.7.0:devel/py-fasteners@${PY_FLAVOR} \
-		${PY_FUTURES} \
 		${PYTHON_PKGNAMEPREFIX}jsonschema>=2.6.0:devel/py-jsonschema@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}pbr>=2.0.0:devel/py-pbr@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}pydot>=1.2.4:graphics/py-pydot@${PY_FLAVOR} \

Modified: head/devel/py-tenacity/Makefile
==============================================================================
--- head/devel/py-tenacity/Makefile	Tue Jan  5 22:02:24 2021	(r560433)
+++ head/devel/py-tenacity/Makefile	Tue Jan  5 22:08:21 2021	(r560434)
@@ -14,8 +14,7 @@ LICENSE=	APACHE20
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
 BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}setuptools_scm>=0:devel/py-setuptools_scm@${PY_FLAVOR}
-RUN_DEPENDS=	${PY_FUTURES} \
-		${PYTHON_PKGNAMEPREFIX}six>=1.9.0:devel/py-six@${PY_FLAVOR} \
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}six>=1.9.0:devel/py-six@${PY_FLAVOR} \
 		${PY_TYPING}
 
 USES=		python:3.6+

Modified: head/devel/py-tooz1/Makefile
==============================================================================
--- head/devel/py-tooz1/Makefile	Tue Jan  5 22:02:24 2021	(r560433)
+++ head/devel/py-tooz1/Makefile	Tue Jan  5 22:08:21 2021	(r560434)
@@ -18,7 +18,6 @@ LICENSE_FILE=	${WRKSRC}/LICENSE
 BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pbr>=1.8:devel/py-pbr@${PY_FLAVOR}
 RUN_DEPENDS=	${PY_ENUM34} \
 		${PYTHON_PKGNAMEPREFIX}fasteners>=0.7:devel/py-fasteners@${PY_FLAVOR} \
-		${PY_FUTURES} \
 		${PYTHON_PKGNAMEPREFIX}msgpack>=0.4.0:devel/py-msgpack@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}pbr>=1.6:devel/py-pbr@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}six>=1.9.0:devel/py-six@${PY_FLAVOR} \

Modified: head/devel/py-trollius/Makefile
==============================================================================
--- head/devel/py-trollius/Makefile	Tue Jan  5 22:02:24 2021	(r560433)
+++ head/devel/py-trollius/Makefile	Tue Jan  5 22:08:21 2021	(r560434)
@@ -12,8 +12,6 @@ COMMENT=	Port of the Tulip project (asyncio module, PE
 LICENSE=	APACHE20
 LICENSE_FILE=	${WRKSRC}/COPYING
 
-RUN_DEPENDS=	${PY_FUTURES}
-
 USES=		python:3.6+
 USE_PYTHON=	autoplist distutils
 

Modified: head/devel/py-txaio/Makefile
==============================================================================
--- head/devel/py-txaio/Makefile	Tue Jan  5 22:02:24 2021	(r560433)
+++ head/devel/py-txaio/Makefile	Tue Jan  5 22:08:21 2021	(r560434)
@@ -14,8 +14,7 @@ LICENSE=	MIT
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
 RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR}
-TEST_DEPENDS=	${PY_FUTURES} \
-		${PYTHON_PKGNAMEPREFIX}pytest>=2.6.4:devel/py-pytest@${PY_FLAVOR} \
+TEST_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pytest>=2.6.4:devel/py-pytest@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}mock>=1.3.0:devel/py-mock@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}twisted>=12.1.0:devel/py-twisted@${PY_FLAVOR}
 

Modified: head/devel/youcompleteme/Makefile
==============================================================================
--- head/devel/youcompleteme/Makefile	Tue Jan  5 22:02:24 2021	(r560433)
+++ head/devel/youcompleteme/Makefile	Tue Jan  5 22:08:21 2021	(r560434)
@@ -23,8 +23,7 @@ RUN_DEPENDS=	vim:editors/vim \
 		${PYTHON_PKGNAMEPREFIX}parso>0:textproc/py-parso@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}requests>0:www/py-requests@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}requests-futures>0:www/py-requests-futures@${PY_FLAVOR} \
-		${PYTHON_PKGNAMEPREFIX}waitress>0:www/py-waitress@${PY_FLAVOR} \
-		${PY_FUTURES}
+		${PYTHON_PKGNAMEPREFIX}waitress>0:www/py-waitress@${PY_FLAVOR}
 
 USES=		cmake compiler:c++11-lang python:3.6+
 USE_PYTHON=	flavors

Modified: head/multimedia/livestreamer/Makefile
==============================================================================
--- head/multimedia/livestreamer/Makefile	Tue Jan  5 22:02:24 2021	(r560433)
+++ head/multimedia/livestreamer/Makefile	Tue Jan  5 22:08:21 2021	(r560434)
@@ -16,7 +16,6 @@ LICENSE_COMB=	multi
 
 RUN_DEPENDS=	rtmpdump:multimedia/rtmpdump \
 		${PYTHON_PKGNAMEPREFIX}requests>=0:www/py-requests@${PY_FLAVOR} \
-		${PY_FUTURES} \
 		${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}librtmp>=0:multimedia/py-librtmp@${PY_FLAVOR}
 

Modified: head/multimedia/mythtv/Makefile
==============================================================================
--- head/multimedia/mythtv/Makefile	Tue Jan  5 22:02:24 2021	(r560433)
+++ head/multimedia/mythtv/Makefile	Tue Jan  5 22:08:21 2021	(r560434)
@@ -123,7 +123,6 @@ BINDINGS_BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mysqlcl
 			p5-LWP-UserAgent-Determined>=0:www/p5-LWP-UserAgent-Determined
 BINDINGS_RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}mysqlclient>=1.2.2:databases/py-mysqlclient@${PY_FLAVOR} \
 			${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3@${PY_FLAVOR} \
-			${PY_FUTURES} \
 			${PYTHON_PKGNAMEPREFIX}lxml>=0:devel/py-lxml@${PY_FLAVOR} \
 			${PYTHON_PKGNAMEPREFIX}requests>0:www/py-requests@${PY_FLAVOR} \
 			${PYTHON_PKGNAMEPREFIX}requests-cache>0:www/py-requests-cache@${PY_FLAVOR} \

Modified: head/multimedia/py-subliminal/Makefile
==============================================================================
--- head/multimedia/py-subliminal/Makefile	Tue Jan  5 22:02:24 2021	(r560433)
+++ head/multimedia/py-subliminal/Makefile	Tue Jan  5 22:08:21 2021	(r560434)
@@ -15,7 +15,6 @@ LICENSE_FILE=	${WRKSRC}/LICENSE
 
 RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}beautifulsoup>=4.4.0:www/py-beautifulsoup@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}enzyme>=0.4.1:multimedia/py-enzyme@${PY_FLAVOR} \
-		${PY_FUTURES} \
 		${PYTHON_PKGNAMEPREFIX}guessit>=3.0.0:multimedia/py-guessit@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}requests>=2.0.1:www/py-requests@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}click>=4.0:devel/py-click@${PY_FLAVOR} \

Modified: head/net/py-confluent-kafka/Makefile
==============================================================================
--- head/net/py-confluent-kafka/Makefile	Tue Jan  5 22:02:24 2021	(r560433)
+++ head/net/py-confluent-kafka/Makefile	Tue Jan  5 22:08:21 2021	(r560434)
@@ -13,8 +13,7 @@ LICENSE=	APACHE20
 LICENSE_FILE=	${WRKSRC}/LICENSE.txt
 
 LIB_DEPENDS=	librdkafka.so:net/librdkafka
-RUN_DEPENDS=	${PY_ENUM34} \
-		${PY_FUTURES}
+RUN_DEPENDS=	${PY_ENUM34}
 py27_RUN_DEPENDS+=	${PYTHON_PKGNAMEPREFIX}requests>=0:www/py-requests@${PY_FLAVOR}
 
 USES=		localbase python:3.6+

Modified: head/net/py-s3transfer/Makefile
==============================================================================
--- head/net/py-s3transfer/Makefile	Tue Jan  5 22:02:24 2021	(r560433)
+++ head/net/py-s3transfer/Makefile	Tue Jan  5 22:08:21 2021	(r560434)
@@ -12,8 +12,7 @@ COMMENT=	Amazon S3 Transfer Manager for Python
 LICENSE=	APACHE20
 LICENSE_FILE=	${WRKSRC}/LICENSE.txt
 
-RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}botocore>=1.12.36:devel/py-botocore@${PY_FLAVOR} \
-		${PY_FUTURES}
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}botocore>=1.12.36:devel/py-botocore@${PY_FLAVOR}
 TEST_DEPENDS=	${PYTHON_PKGNAMEPREFIX}nose>=1.3.3:devel/py-nose@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}mock>=1.3.0:devel/py-mock@${PY_FLAVOR}
 

Modified: head/security/py-trustme/Makefile
==============================================================================
--- head/security/py-trustme/Makefile	Tue Jan  5 22:02:24 2021	(r560433)
+++ head/security/py-trustme/Makefile	Tue Jan  5 22:08:21 2021	(r560434)
@@ -18,7 +18,6 @@ LICENSE_FILE_MIT=	${WRKSRC}/LICENSE.MIT
 RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}cryptography>=0:security/py-cryptography@${PY_FLAVOR}
 TEST_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pytest>=0:devel/py-pytest@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}pytest-cov>=0:devel/py-pytest-cov@${PY_FLAVOR} \
-		${PY_FUTURES} \
 		${PYTHON_PKGNAMEPREFIX}openssl>=0:security/py-openssl@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}service_identity>=0:security/py-service_identity@${PY_FLAVOR}
 

Modified: head/security/theonionbox/Makefile
==============================================================================
--- head/security/theonionbox/Makefile	Tue Jan  5 22:02:24 2021	(r560433)
+++ head/security/theonionbox/Makefile	Tue Jan  5 22:08:21 2021	(r560434)
@@ -13,7 +13,6 @@ LICENSE=	MIT
 
 RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}apscheduler>=3.4:devel/py-apscheduler@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}bottle>=0.12.13:www/py-bottle@${PY_FLAVOR} \
-		${PY_FUTURES} \
 		${PYTHON_PKGNAMEPREFIX}psutil>=5.4.0:sysutils/py-psutil@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}pysocks>=1.6.7:net/py-pysocks@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}requests>2.18:www/py-requests@${PY_FLAVOR} \
@@ -22,7 +21,7 @@ RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}apscheduler>=3.4:d
 		${PYTHON_PKGNAMEPREFIX}urllib3>=1.22:net/py-urllib3@${PY_FLAVOR}
 RUN_DEPENDS+=	${PYTHON_PKGNAMEPREFIX}sqlite3>=0:databases/py-sqlite3@${PY_FLAVOR} # workaround for bug#230613: missing internal sqlite3 module in python
 
-USES=		python
+USES=		python:3.6+
 USE_PYTHON=	distutils autoplist noflavors
 
 NO_ARCH=	yes

Modified: head/sysutils/py-salt-2019/Makefile
==============================================================================
--- head/sysutils/py-salt-2019/Makefile	Tue Jan  5 22:02:24 2021	(r560433)
+++ head/sysutils/py-salt-2019/Makefile	Tue Jan  5 22:08:21 2021	(r560434)
@@ -17,7 +17,6 @@ LICENSE_FILE=	${WRKSRC}/LICENSE
 RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}Jinja2>0:devel/py-Jinja2@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}markupsafe>0:textproc/py-markupsafe@${PY_FLAVOR} \
 		${PY_ENUM34} \
-		${PY_FUTURES} \
 		${PYTHON_PKGNAMEPREFIX}libcloud>=0.14.0:net/py-libcloud@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}msgpack>=0.3:devel/py-msgpack@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}progressbar>0:misc/py-progressbar@${PY_FLAVOR} \

Modified: head/sysutils/py-salt/Makefile
==============================================================================
--- head/sysutils/py-salt/Makefile	Tue Jan  5 22:02:24 2021	(r560433)
+++ head/sysutils/py-salt/Makefile	Tue Jan  5 22:08:21 2021	(r560434)
@@ -16,7 +16,6 @@ LICENSE_FILE=	${WRKSRC}/LICENSE
 
 RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}Jinja2>0:devel/py-Jinja2@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}markupsafe>0:textproc/py-markupsafe@${PY_FLAVOR} \
-		${PY_FUTURES} \
 		${PYTHON_PKGNAMEPREFIX}distro>=1.5.0:sysutils/py-distro@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}libcloud>=0.14.0:net/py-libcloud@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}msgpack>=0.3:devel/py-msgpack@${PY_FLAVOR} \

Modified: head/www/py-autobahn/Makefile
==============================================================================
--- head/www/py-autobahn/Makefile	Tue Jan  5 22:02:24 2021	(r560433)
+++ head/www/py-autobahn/Makefile	Tue Jan  5 22:08:21 2021	(r560434)
@@ -69,8 +69,7 @@ OPTIONS_MULTI_BACKENDS:=	${OPTIONS_MULTI_BACKENDS:NASY
 COMPLETE_OPTIONS_LIST:=		${COMPLETE_OPTIONS_LIST:NASYNCIO}
 PORT_OPTIONS:=			${PORT_OPTIONS:NASYNCIO}
 .elif ${PORT_OPTIONS:MASYNCIO}
-RUN_DEPENDS+=	${PYTHON_PKGNAMEPREFIX}trollius>=2.0:devel/py-trollius@${PY_FLAVOR} \
-		${PY_FUTURES}
+RUN_DEPENDS+=	${PYTHON_PKGNAMEPREFIX}trollius>=2.0:devel/py-trollius@${PY_FLAVOR}
 .endif
 
 do-test:

Modified: head/www/py-django-pipeline/Makefile
==============================================================================
--- head/www/py-django-pipeline/Makefile	Tue Jan  5 22:02:24 2021	(r560433)
+++ head/www/py-django-pipeline/Makefile	Tue Jan  5 22:08:21 2021	(r560434)
@@ -13,8 +13,6 @@ COMMENT=	Asset (css/js) packaging library for Django
 LICENSE=	MIT
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
-RUN_DEPENDS=	${PY_FUTURES}
-
 NO_ARCH=	yes
 USES=		python:3.6+
 USE_PYTHON=	autoplist distutils

Modified: head/www/py-google-api-core/Makefile
==============================================================================
--- head/www/py-google-api-core/Makefile	Tue Jan  5 22:02:24 2021	(r560433)
+++ head/www/py-google-api-core/Makefile	Tue Jan  5 22:08:21 2021	(r560434)
@@ -13,8 +13,7 @@ COMMENT=	Core Google API Client Library
 LICENSE=	APACHE20
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
-RUN_DEPENDS=	${PY_FUTURES} \
-		${PYTHON_PKGNAMEPREFIX}google-auth>=1.21.1<2.0:security/py-google-auth@${PY_FLAVOR} \
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}google-auth>=1.21.1<2.0:security/py-google-auth@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}googleapis-common-protos>=1.6.0<2.0:devel/py-googleapis-common-protos@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}protobuf>=3.12.0,1:devel/py-protobuf@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}pytz>=0:devel/py-pytz@${PY_FLAVOR} \

Modified: head/www/py-hyper/Makefile
==============================================================================
--- head/www/py-hyper/Makefile	Tue Jan  5 22:02:24 2021	(r560433)
+++ head/www/py-hyper/Makefile	Tue Jan  5 22:08:21 2021	(r560434)
@@ -16,8 +16,7 @@ RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}h2>=2.4:www/py-h2@
 		${PYTHON_PKGNAMEPREFIX}hyperframe>=3.2:www/py-hyperframe@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}brotlipy>=0.7.0:archivers/py-brotlipy@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}rfc3986>=1.1.0,<2.0:www/py-rfc3986@${PY_FLAVOR}
-TEST_DEPENDS=	${PY_FUTURES} \
-		${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest@${PY_FLAVOR} \
+TEST_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}requests>0:www/py-requests@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}mock>0:devel/py-mock@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}hpack>0:www/py-hpack@${PY_FLAVOR}

Modified: head/www/py-requests-futures/Makefile
==============================================================================
--- head/www/py-requests-futures/Makefile	Tue Jan  5 22:02:24 2021	(r560433)
+++ head/www/py-requests-futures/Makefile	Tue Jan  5 22:08:21 2021	(r560434)
@@ -12,8 +12,7 @@ COMMENT=	HTTP library written in Python for human bein
 
 LICENSE=	APACHE20
 
-RUN_DEPENDS=	${PY_FUTURES} \
-		${PYTHON_PKGNAMEPREFIX}requests>=1.2.0:www/py-requests@${PY_FLAVOR}
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}requests>=1.2.0:www/py-requests@${PY_FLAVOR}
 
 USES=		python:3.6+
 USE_PYTHON=	autoplist concurrent distutils

Modified: head/www/py-requests-unixsocket/Makefile
==============================================================================
--- head/www/py-requests-unixsocket/Makefile	Tue Jan  5 22:02:24 2021	(r560433)
+++ head/www/py-requests-unixsocket/Makefile	Tue Jan  5 22:08:21 2021	(r560434)
@@ -14,8 +14,7 @@ LICENSE=	APACHE20
 BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pip>0:devel/py-pip@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}pbr>=2.0.0:devel/py-pbr@${PY_FLAVOR}
 
-RUN_DEPENDS=	${PY_FUTURES} \
-		${PYTHON_PKGNAMEPREFIX}requests>=1.2.0:www/py-requests@${PY_FLAVOR}
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}requests>=1.2.0:www/py-requests@${PY_FLAVOR}
 
 USES=		python:3.6+ shebangfix
 USE_PYTHON=	autoplist concurrent distutils

Modified: head/www/py-weboob/Makefile
==============================================================================
--- head/www/py-weboob/Makefile	Tue Jan  5 22:02:24 2021	(r560433)
+++ head/www/py-weboob/Makefile	Tue Jan  5 22:08:21 2021	(r560434)
@@ -14,7 +14,6 @@ LICENSE=	LGPL3+
 LICENSE_FILE=	${WRKSRC}/COPYING.LESSER
 
 BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}dateutil>0:devel/py-dateutil@${PY_FLAVOR} \
-		${PY_FUTURES} \
 		${PYTHON_PKGNAMEPREFIX}lxml>0:devel/py-lxml@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}yaml>0:devel/py-yaml@${PY_FLAVOR} \



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