Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 20 Nov 2017 13:39:16 +0000 (UTC)
From:      "Timur I. Bakeyev" <timur@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r454556 - in head: databases/ldb databases/ldb12 databases/tdb devel/talloc devel/tevent
Message-ID:  <201711201339.vAKDdGjk077436@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: timur
Date: Mon Nov 20 13:39:16 2017
New Revision: 454556
URL: https://svnweb.freebsd.org/changeset/ports/454556

Log:
  Fix too broad Python specification, cut down to 2.7 explicitly.

Modified:
  head/databases/ldb/Makefile
  head/databases/ldb12/Makefile
  head/databases/tdb/Makefile
  head/devel/talloc/Makefile
  head/devel/tevent/Makefile

Modified: head/databases/ldb/Makefile
==============================================================================
--- head/databases/ldb/Makefile	Mon Nov 20 13:33:46 2017	(r454555)
+++ head/databases/ldb/Makefile	Mon Nov 20 13:39:16 2017	(r454556)
@@ -79,7 +79,8 @@ PLIST_FILES=		include/ldb_version.h \
 .if defined(NO_PYTHON)
 CONFIGURE_ARGS+=	--disable-python
 .else
-USES+=			python:2.7+
+USES+=			python:2.7
+
 PLIST_FILES+=		include/pyldb.h \
 			lib/libpyldb-util.so \
 			lib/libpyldb-util.so.1 \

Modified: head/databases/ldb12/Makefile
==============================================================================
--- head/databases/ldb12/Makefile	Mon Nov 20 13:33:46 2017	(r454555)
+++ head/databases/ldb12/Makefile	Mon Nov 20 13:39:16 2017	(r454556)
@@ -81,7 +81,7 @@ PLIST_FILES=		include/ldb_version.h \
 .if defined(NO_PYTHON)
 CONFIGURE_ARGS+=	--disable-python
 .else
-USES+=			python:2.7+
+USES+=			python:2.7
 
 PLIST_FILES+=		include/pyldb.h \
 			lib/libpyldb-util.so \

Modified: head/databases/tdb/Makefile
==============================================================================
--- head/databases/tdb/Makefile	Mon Nov 20 13:33:46 2017	(r454555)
+++ head/databases/tdb/Makefile	Mon Nov 20 13:39:16 2017	(r454556)
@@ -46,7 +46,7 @@ PLIST_FILES+=		include/tdb.h \
 .if defined(NO_PYTHON)
 CONFIGURE_ARGS+=	--disable-python
 .else
-USES+=			python:2.7+
+USES+=			python:2.7
 
 PLIST_FILES+=		%%PYTHON_SITELIBDIR%%/tdb.so \
 			%%PYTHON_SITELIBDIR%%/_tdb_text.py

Modified: head/devel/talloc/Makefile
==============================================================================
--- head/devel/talloc/Makefile	Mon Nov 20 13:33:46 2017	(r454555)
+++ head/devel/talloc/Makefile	Mon Nov 20 13:39:16 2017	(r454556)
@@ -39,7 +39,7 @@ PLIST_FILES+=		include/talloc.h \
 .if defined(NO_PYTHON)
 CONFIGURE_ARGS+=	--disable-python
 .else
-USES+=			python:2.7+
+USES+=			python:2.7
 
 PLIST_FILES+=		include/pytalloc.h \
 			lib/libpytalloc-util.so \

Modified: head/devel/tevent/Makefile
==============================================================================
--- head/devel/tevent/Makefile	Mon Nov 20 13:33:46 2017	(r454555)
+++ head/devel/tevent/Makefile	Mon Nov 20 13:39:16 2017	(r454556)
@@ -45,7 +45,7 @@ PLIST_FILES+=		include/tevent.h \
 .if defined(NO_PYTHON)
 CONFIGURE_ARGS+=	--disable-python
 .else
-USES+=			python:2.7+
+USES+=			python:2.7
 
 PLIST_FILES+=		%%PYTHON_SITELIBDIR%%/_tevent.so \
 			%%PYTHON_SITELIBDIR%%/tevent.py  \



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