summaryrefslogtreecommitdiff
path: root/databases
diff options
context:
space:
mode:
authorLi-Wen Hsu <lwhsu@FreeBSD.org>2015-11-19 01:28:38 +0000
committerLi-Wen Hsu <lwhsu@FreeBSD.org>2015-11-19 01:28:38 +0000
commit4c536e83f0992dff95019536ff4b314b8627475f (patch)
treee9968692ea40cefe464e220ad58f438060131121 /databases
parent- Switch to options helpers (diff)
Add version specified ports of separated standard Python modules for
non-default Python versions: - Add pyXY-{sqlite3,gdbm,tkinter} ports for generating binary packages - Improve/add pkg-message to point users to install respective packages of separated Python standard modules - Add COMMENT to explicitly show the Python version that package should be used with - Simplify version-related PYTHON_* for lang/python35 Reviewed by: koobs Differential Revision: https://reviews.freebsd.org/D4170
Notes
Notes: svn path=/head/; revision=401909
Diffstat (limited to 'databases')
-rw-r--r--databases/Makefile8
-rw-r--r--databases/py-gdbm/Makefile4
-rw-r--r--databases/py-sqlite3/Makefile4
-rw-r--r--databases/py32-gdbm/Makefile7
-rw-r--r--databases/py32-sqlite3/Makefile7
-rw-r--r--databases/py33-gdbm/Makefile7
-rw-r--r--databases/py33-sqlite3/Makefile7
-rw-r--r--databases/py34-gdbm/Makefile7
-rw-r--r--databases/py34-sqlite3/Makefile7
-rw-r--r--databases/py35-gdbm/Makefile7
-rw-r--r--databases/py35-sqlite3/Makefile7
11 files changed, 68 insertions, 4 deletions
diff --git a/databases/Makefile b/databases/Makefile
index f49b52eb2987..1faf64613c7f 100644
--- a/databases/Makefile
+++ b/databases/Makefile
@@ -723,6 +723,10 @@
SUBDIR += py-flask-sqlalchemy
SUBDIR += py-forgetsql
SUBDIR += py-gdbm
+ SUBDIR += py32-gdbm
+ SUBDIR += py33-gdbm
+ SUBDIR += py34-gdbm
+ SUBDIR += py35-gdbm
SUBDIR += py-geoalchemy
SUBDIR += py-geoalchemy2
SUBDIR += py-hiredis
@@ -766,6 +770,10 @@
SUBDIR += py-sqlalchemy-migrate
SUBDIR += py-sqlalchemy06
SUBDIR += py-sqlite3
+ SUBDIR += py32-sqlite3
+ SUBDIR += py33-sqlite3
+ SUBDIR += py34-sqlite3
+ SUBDIR += py35-sqlite3
SUBDIR += py-sqlite3dbm
SUBDIR += py-sqlkit
SUBDIR += py-sqlobject
diff --git a/databases/py-gdbm/Makefile b/databases/py-gdbm/Makefile
index 5b211307eb86..9006ad977874 100644
--- a/databases/py-gdbm/Makefile
+++ b/databases/py-gdbm/Makefile
@@ -3,14 +3,14 @@
PORTNAME= gdbm
PORTVERSION= ${PYTHON_PORTVERSION}
-PORTREVISION= 3
+PORTREVISION= 4
CATEGORIES= databases python
MASTER_SITES= PYTHON/ftp/python/${PORTVERSION}
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
DISTNAME= Python-${PORTVERSION}
MAINTAINER= python@FreeBSD.org
-COMMENT= Python bindings to the GNU dbm library
+COMMENT= Python bindings to the GNU dbm library (Python ${PYTHON_VER})
LICENSE= PSFL
diff --git a/databases/py-sqlite3/Makefile b/databases/py-sqlite3/Makefile
index a0e9265a3d42..96ed67f481fa 100644
--- a/databases/py-sqlite3/Makefile
+++ b/databases/py-sqlite3/Makefile
@@ -3,7 +3,7 @@
PORTNAME= sqlite3
PORTVERSION= ${PYTHON_PORTVERSION}
-PORTREVISION= 6
+PORTREVISION= 7
CATEGORIES= databases python
MASTER_SITES= PYTHON/ftp/python/${PORTVERSION}
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
@@ -11,7 +11,7 @@ DISTNAME= Python-${PORTVERSION}
DIST_SUBDIR= python
MAINTAINER= python@FreeBSD.org
-COMMENT= Standard Python binding to the SQLite3 library
+COMMENT= Standard Python binding to the SQLite3 library (Python ${PYTHON_VER})
LICENSE= PSFL
LICENSE_FILE= ${WRKDIR}/Python-${PORTVERSION}/LICENSE
diff --git a/databases/py32-gdbm/Makefile b/databases/py32-gdbm/Makefile
new file mode 100644
index 000000000000..39d284609341
--- /dev/null
+++ b/databases/py32-gdbm/Makefile
@@ -0,0 +1,7 @@
+# $FreeBSD$
+
+MASTERDIR= ${.CURDIR}/../py-gdbm
+
+PYTHON_VERSION= python3.2
+
+.include "${MASTERDIR}/Makefile"
diff --git a/databases/py32-sqlite3/Makefile b/databases/py32-sqlite3/Makefile
new file mode 100644
index 000000000000..c551d4f168d9
--- /dev/null
+++ b/databases/py32-sqlite3/Makefile
@@ -0,0 +1,7 @@
+# $FreeBSD$
+
+MASTERDIR= ${.CURDIR}/../py-sqlite3
+
+PYTHON_VERSION= python3.2
+
+.include "${MASTERDIR}/Makefile"
diff --git a/databases/py33-gdbm/Makefile b/databases/py33-gdbm/Makefile
new file mode 100644
index 000000000000..54dac98e7409
--- /dev/null
+++ b/databases/py33-gdbm/Makefile
@@ -0,0 +1,7 @@
+# $FreeBSD$
+
+MASTERDIR= ${.CURDIR}/../py-gdbm
+
+PYTHON_VERSION= python3.3
+
+.include "${MASTERDIR}/Makefile"
diff --git a/databases/py33-sqlite3/Makefile b/databases/py33-sqlite3/Makefile
new file mode 100644
index 000000000000..d0738f8c672e
--- /dev/null
+++ b/databases/py33-sqlite3/Makefile
@@ -0,0 +1,7 @@
+# $FreeBSD$
+
+MASTERDIR= ${.CURDIR}/../py-sqlite3
+
+PYTHON_VERSION= python3.3
+
+.include "${MASTERDIR}/Makefile"
diff --git a/databases/py34-gdbm/Makefile b/databases/py34-gdbm/Makefile
new file mode 100644
index 000000000000..22f120f834cf
--- /dev/null
+++ b/databases/py34-gdbm/Makefile
@@ -0,0 +1,7 @@
+# $FreeBSD$
+
+MASTERDIR= ${.CURDIR}/../py-gdbm
+
+PYTHON_VERSION= python3.4
+
+.include "${MASTERDIR}/Makefile"
diff --git a/databases/py34-sqlite3/Makefile b/databases/py34-sqlite3/Makefile
new file mode 100644
index 000000000000..b755b044d8fa
--- /dev/null
+++ b/databases/py34-sqlite3/Makefile
@@ -0,0 +1,7 @@
+# $FreeBSD$
+
+MASTERDIR= ${.CURDIR}/../py-sqlite3
+
+PYTHON_VERSION= python3.4
+
+.include "${MASTERDIR}/Makefile"
diff --git a/databases/py35-gdbm/Makefile b/databases/py35-gdbm/Makefile
new file mode 100644
index 000000000000..9013fe6859bb
--- /dev/null
+++ b/databases/py35-gdbm/Makefile
@@ -0,0 +1,7 @@
+# $FreeBSD$
+
+MASTERDIR= ${.CURDIR}/../py-gdbm
+
+PYTHON_VERSION= python3.5
+
+.include "${MASTERDIR}/Makefile"
diff --git a/databases/py35-sqlite3/Makefile b/databases/py35-sqlite3/Makefile
new file mode 100644
index 000000000000..024e9246feb0
--- /dev/null
+++ b/databases/py35-sqlite3/Makefile
@@ -0,0 +1,7 @@
+# $FreeBSD$
+
+MASTERDIR= ${.CURDIR}/../py-sqlite3
+
+PYTHON_VERSION= python3.5
+
+.include "${MASTERDIR}/Makefile"