svn commit: r454556 - in head: databases/ldb databases/ldb12 databases/tdb devel/talloc devel/tevent

Timur I. Bakeyev timur at FreeBSD.org
Mon Nov 20 13:39:18 UTC 2017


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  \


More information about the svn-ports-all mailing list