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
This commit is contained in:
Li-Wen Hsu 2015-11-19 01:28:38 +00:00
parent 4377847e80
commit 4c536e83f0
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=401909
25 changed files with 147 additions and 18 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -0,0 +1,7 @@
# $FreeBSD$
MASTERDIR= ${.CURDIR}/../py-gdbm
PYTHON_VERSION= python3.2
.include "${MASTERDIR}/Makefile"

View File

@ -0,0 +1,7 @@
# $FreeBSD$
MASTERDIR= ${.CURDIR}/../py-sqlite3
PYTHON_VERSION= python3.2
.include "${MASTERDIR}/Makefile"

View File

@ -0,0 +1,7 @@
# $FreeBSD$
MASTERDIR= ${.CURDIR}/../py-gdbm
PYTHON_VERSION= python3.3
.include "${MASTERDIR}/Makefile"

View File

@ -0,0 +1,7 @@
# $FreeBSD$
MASTERDIR= ${.CURDIR}/../py-sqlite3
PYTHON_VERSION= python3.3
.include "${MASTERDIR}/Makefile"

View File

@ -0,0 +1,7 @@
# $FreeBSD$
MASTERDIR= ${.CURDIR}/../py-gdbm
PYTHON_VERSION= python3.4
.include "${MASTERDIR}/Makefile"

View File

@ -0,0 +1,7 @@
# $FreeBSD$
MASTERDIR= ${.CURDIR}/../py-sqlite3
PYTHON_VERSION= python3.4
.include "${MASTERDIR}/Makefile"

View File

@ -0,0 +1,7 @@
# $FreeBSD$
MASTERDIR= ${.CURDIR}/../py-gdbm
PYTHON_VERSION= python3.5
.include "${MASTERDIR}/Makefile"

View File

@ -0,0 +1,7 @@
# $FreeBSD$
MASTERDIR= ${.CURDIR}/../py-sqlite3
PYTHON_VERSION= python3.5
.include "${MASTERDIR}/Makefile"

View File

@ -2,7 +2,7 @@
PORTNAME= python32
PORTVERSION= 3.2.5
PORTREVISION= 14
PORTREVISION= 15
CATEGORIES= lang python ipv6
MASTER_SITES= PYTHON/ftp/python/${PORTVERSION}
DISTNAME= Python-${PORTVERSION}
@ -30,6 +30,9 @@ MAKE_ARGS+= INSTALL_SHARED="${INSTALL_LIB}" # Strip shared library
MAKE_ARGS+= LIBPC="${PREFIX}/libdata/pkgconfig" # Until pathfix gets support for files other than Makefile.in
MAKE_JOBS_UNSAFE= yes # Parser/pgen build bug. See Issue: 200622, 201974
SUB_FILES= pkg-message
SUB_LIST= PYTHON_SUFFIX=${PORTVERSION:R:S/.//g}
PLIST_SUB= ABI=${ABIFLAGS} \
OSMAJOR=${OSVERSION:C/([0-9]*)[0-9]{5}/\1/} # For plat-freebsd* in pkg-plist. http://bugs.python.org/issue19554

View File

@ -3,8 +3,8 @@
Note that some standard Python modules are provided as separate ports
as they require additional dependencies. They are available as:
gdbm databases/py-gdbm
sqlite3 databases/py-sqlite3
tkinter x11-toolkits/py-tkinter
py%%PYTHON_SUFFIX%%-gdbm databases/py%%PYTHON_SUFFIX%%-gdbm
py%%PYTHON_SUFFIX%%-sqlite3 databases/py%%PYTHON_SUFFIX%%-sqlite3
py%%PYTHON_SUFFIX%%-tkinter x11-toolkits/py%%PYTHON_SUFFIX%%-tkinter
===========================================================================

View File

@ -2,7 +2,7 @@
PORTNAME= python33
PORTVERSION= 3.3.5
PORTREVISION= 7
PORTREVISION= 8
CATEGORIES= lang python ipv6
MASTER_SITES= PYTHON/ftp/python/${PORTVERSION}
DISTNAME= Python-${PORTVERSION}
@ -30,6 +30,9 @@ MAKE_ARGS+= INSTALL_SHARED="${INSTALL_LIB}" # Strip shared library
MAKE_ARGS+= LIBPC="${PREFIX}/libdata/pkgconfig" # Until pathfix gets support for files other than Makefile.in
MAKE_JOBS_UNSAFE= yes # Parser/pgen build bug. See Issue: 200622, 201974
SUB_FILES= pkg-message
SUB_LIST= PYTHON_SUFFIX=${PORTVERSION:R:S/.//g}
PLIST_SUB= ABI=${ABIFLAGS} \
OSMAJOR=${OSVERSION:C/([0-9]*)[0-9]{5}/\1/} # For plat-freebsd* in pkg-plist. http://bugs.python.org/issue19554

View File

@ -3,8 +3,8 @@
Note that some standard Python modules are provided as separate ports
as they require additional dependencies. They are available as:
gdbm databases/py-gdbm
sqlite3 databases/py-sqlite3
tkinter x11-toolkits/py-tkinter
py%%PYTHON_SUFFIX%%-gdbm databases/py%%PYTHON_SUFFIX%%-gdbm
py%%PYTHON_SUFFIX%%-sqlite3 databases/py%%PYTHON_SUFFIX%%-sqlite3
py%%PYTHON_SUFFIX%%-tkinter x11-toolkits/py%%PYTHON_SUFFIX%%-tkinter
===========================================================================

View File

@ -3,7 +3,7 @@
PORTNAME= python34
PORTVERSION= 3.4.3
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= lang python ipv6
MASTER_SITES= PYTHON/ftp/python/${PORTVERSION}
DISTNAME= Python-${PORTVERSION}
@ -32,6 +32,9 @@ MAKE_ARGS+= INSTALL_SHARED="${INSTALL_LIB}" # Strip shared library
MAKE_ARGS+= LIBPC="${PREFIX}/libdata/pkgconfig" # Until pathfix gets support for files other than Makefile.in
MAKE_JOBS_UNSAFE= yes # Parser/pgen build bug. See Issue: 200622, 201974
SUB_FILES= pkg-message
SUB_LIST= PYTHON_SUFFIX=${PORTVERSION:R:S/.//g}
PLIST_SUB= ABI=${ABIFLAGS} \
OSMAJOR=${OSVERSION:C/([0-9]*)[0-9]{5}/\1/} # For plat-freebsd* in pkg-plist. http://bugs.python.org/issue19554

View File

@ -0,0 +1,10 @@
===========================================================================
Note that some standard Python modules are provided as separate ports
as they require additional dependencies. They are available as:
py%%PYTHON_SUFFIX%%-gdbm databases/py%%PYTHON_SUFFIX%%-gdbm
py%%PYTHON_SUFFIX%%-sqlite3 databases/py%%PYTHON_SUFFIX%%-sqlite3
py%%PYTHON_SUFFIX%%-tkinter x11-toolkits/py%%PYTHON_SUFFIX%%-tkinter
===========================================================================

View File

@ -3,9 +3,10 @@
PORTNAME= python
DISTVERSION= 3.5.0
PORTREVISION= 1
CATEGORIES= lang python ipv6
MASTER_SITES= PYTHON/ftp/python/${DISTVERSION:C/^([0-9]+\.[0-9]+\.[0-9]+).*/\1/}
PKGNAMESUFFIX= 35
PKGNAMESUFFIX= ${PYTHON_SUFFIX}
DISTNAME= Python-${DISTVERSION}
DIST_SUBDIR= python
@ -24,9 +25,9 @@ CPE_PRODUCT= ${CPE_VENDOR}
CPE_VERSION= ${DISTVERSION}
# Duplicate python.mk variables. TODO: Let lang/python?? ports use python.mk bits.
PYTHON_VER= ${DISTVERSION:C/^([0-9]+\.[0-9]+).*/\1/}
PYTHON_VERSION= python${PYTHON_VER}
PYTHON_PORTVERSION= ${DISTVERSION:C/^([0-9]+\.[0-9]+\.[0-9]+).*/\1/}
PYTHON_VER= ${PYTHON_PORTVERSION:R}
PYTHON_VERSION= python${PYTHON_VER}
PYTHON_SUFFIX= ${PYTHON_VER:S/.//g}
DISABLED_EXTENSIONS= _sqlite3 _tkinter _gdbm
@ -38,6 +39,9 @@ MAKE_ARGS+= INSTALL_SHARED="${INSTALL_LIB}" # Strip shared library
MAKE_ARGS+= LIBPC="${PREFIX}/libdata/pkgconfig" # Until pathfix gets support for files other than Makefile.in
MAKE_JOBS_UNSAFE= yes # Parser/pgen build bug. See Issue: 200622, 201974
SUB_FILES= pkg-message
SUB_LIST= PYTHON_SUFFIX=${PYTHON_SUFFIX}
PLIST_SUB= XYDOT=${PYTHON_VER} XY=${PYTHON_SUFFIX} \
XYZDOT=${PYTHON_PORTVERSION} ABI=${ABIFLAGS} \
OSMAJOR=${OSVERSION:C/([0-9]*)[0-9]{5}/\1/} # For plat-freebsd* in pkg-plist. http://bugs.python.org/issue19554

View File

@ -0,0 +1,10 @@
===========================================================================
Note that some standard Python modules are provided as separate ports
as they require additional dependencies. They are available as:
py%%PYTHON_SUFFIX%%-gdbm databases/py%%PYTHON_SUFFIX%%-gdbm
py%%PYTHON_SUFFIX%%-sqlite3 databases/py%%PYTHON_SUFFIX%%-sqlite3
py%%PYTHON_SUFFIX%%-tkinter x11-toolkits/py%%PYTHON_SUFFIX%%-tkinter
===========================================================================

View File

@ -193,6 +193,10 @@
SUBDIR += py-qt4-gui
SUBDIR += py-sexy
SUBDIR += py-tkinter
SUBDIR += py32-tkinter
SUBDIR += py33-tkinter
SUBDIR += py34-tkinter
SUBDIR += py35-tkinter
SUBDIR += py-tktreectrl
SUBDIR += py-traitsbackendwx
SUBDIR += py-traitsgui

View File

@ -3,14 +3,14 @@
PORTNAME= tkinter
PORTVERSION= ${PYTHON_PORTVERSION}
PORTREVISION= 5
PORTREVISION= 6
CATEGORIES= x11-toolkits python
MASTER_SITES= PYTHON/ftp/python/${PORTVERSION}
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
DISTNAME= Python-${PORTVERSION}
MAINTAINER= python@FreeBSD.org
COMMENT= Python bindings to the Tk widget set
COMMENT= Python bindings to the Tk widget set (Python ${PYTHON_VER})
LICENSE= PSFL

View File

@ -0,0 +1,7 @@
# $FreeBSD$
MASTERDIR= ${.CURDIR}/../py-tkinter
PYTHON_VERSION= python3.2
.include "${MASTERDIR}/Makefile"

View File

@ -0,0 +1,7 @@
# $FreeBSD$
MASTERDIR= ${.CURDIR}/../py-tkinter
PYTHON_VERSION= python3.3
.include "${MASTERDIR}/Makefile"

View File

@ -0,0 +1,7 @@
# $FreeBSD$
MASTERDIR= ${.CURDIR}/../py-tkinter
PYTHON_VERSION= python3.4
.include "${MASTERDIR}/Makefile"

View File

@ -0,0 +1,7 @@
# $FreeBSD$
MASTERDIR= ${.CURDIR}/../py-tkinter
PYTHON_VERSION= python3.5
.include "${MASTERDIR}/Makefile"