forked from Lainports/freebsd-ports
Upgrade lang/python to 2.2. Adjust bsd.python.mk accordingly.
PR: 33444 Submitted by: Hye-Shik Chang <perky@fallin.lv> Add new MD5 to dependent ports.
This commit is contained in:
parent
266d759a9d
commit
555f286ca1
53 changed files with 4172 additions and 1614 deletions
|
|
@ -77,22 +77,33 @@ Python_Include_MAINTAINER= tg@FreeBSD.org
|
|||
# version number is substituted and the corresponding Python distribution
|
||||
# will be built through the dependency processing.
|
||||
_PYTHON_VERSION!= (python -c 'import sys; print sys.version[:3]') 2> /dev/null \
|
||||
|| echo 2.1
|
||||
|| echo 2.2
|
||||
PYTHON_VERSION?= python${_PYTHON_VERSION}
|
||||
_PYTHON_PORTVERSION= 2.1.1
|
||||
_PYTHON_PORTVERSION= 2.2
|
||||
PYTHON_PORTVERSION!= (${PYTHON_VERSION} -c 'import string, sys; \
|
||||
print string.split(sys.version)[0]') 2> /dev/null \
|
||||
|| echo ${_PYTHON_PORTVERSION}
|
||||
|
||||
# Python-2.2
|
||||
.if ${PYTHON_VERSION} == "python2.2"
|
||||
PYDISTUTILS= ${PYTHON_LIBDIR}/distutils/core.py:${PYTHON_PORTSDIR}
|
||||
PYXML= ${PYTHON_SITELIBDIR}/_xmlplus/__init__.py:${PORTSDIR}/textproc/py-xml
|
||||
|
||||
PYTHON_DISTFILE= Python-${_PYTHON_PORTVERSION}.tgz
|
||||
PYTHON_PORTSDIR= ${PORTSDIR}/lang/python
|
||||
PYTHON_REL= 220
|
||||
PYTHON_SUFFIX= 22
|
||||
PYTHON_WRKSRC= ${WRKDIR}/Python-${_PYTHON_PORTVERSION}
|
||||
|
||||
# Python-2.1
|
||||
.if ${PYTHON_VERSION} == "python2.1"
|
||||
.elif ${PYTHON_VERSION} == "python2.1"
|
||||
PYDISTUTILS= ${PYTHON_LIBDIR}/distutils/core.py:${PYTHON_PORTSDIR}
|
||||
PYXML= ${PYTHON_SITELIBDIR}/_xmlplus/__init__.py:${PORTSDIR}/textproc/py-xml
|
||||
|
||||
PYTHON_DISTFILE= Python-${_PYTHON_PORTVERSION}.tgz
|
||||
PYTHON_PORTSDIR= ${PORTSDIR}/lang/python
|
||||
PYTHON_REL= 211
|
||||
PYTHON_SUFFIX= # empty, default version
|
||||
PYTHON_SUFFIX= 21
|
||||
PYTHON_WRKSRC= ${WRKDIR}/Python-${_PYTHON_PORTVERSION}
|
||||
|
||||
# Python-2.0
|
||||
|
|
|
|||
|
|
@ -4,3 +4,4 @@ MD5 (python/BeOpen-Python-2.0.tar.gz) = 8c4a64891d3dc6422df2514c603f0c98
|
|||
MD5 (python/Python-2.0.1.tgz) = 8aa10dcf062723001b852d96e905af79
|
||||
MD5 (python/Python-2.1.tgz) = 2ba2baeccd6100a4be80e6368a975054
|
||||
MD5 (python/Python-2.1.1.tgz) = eb34371c49b271abc74b42572883e1b4
|
||||
MD5 (python/Python-2.2.tgz) = 87febf0780c8e18454022d34b2ca70a0
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
#
|
||||
|
||||
PORTNAME= python
|
||||
PORTVERSION= 2.1.1
|
||||
PORTVERSION= 2.2
|
||||
CATEGORIES= lang python
|
||||
MASTER_SITES= http://www.python.org/ftp/python/${PORTVERSION}/ \
|
||||
http://SunSITE.Informatik.RWTH-Aachen.DE/python/ftp/python/${PORTVERSION}/
|
||||
|
|
@ -23,7 +23,7 @@ INSTALL_TARGET= install
|
|||
MAN1= python.1
|
||||
|
||||
USE_PYTHON= yes
|
||||
PYTHON_VERSION= python2.1
|
||||
PYTHON_VERSION= python2.2
|
||||
PYTHON_NO_DEPENDS= yes
|
||||
|
||||
#
|
||||
|
|
@ -69,7 +69,7 @@ PLATFORMS=plat-freebsd3 plat-freebsd4 plat-freebsd5
|
|||
pre-install:
|
||||
.for platform in ${PLATFORMS}
|
||||
${MKDIR} ${PYTHON_LIBDIR}/${platform}
|
||||
.for file in FCNTL.py IN.py regen
|
||||
.for file in IN.py regen
|
||||
${INSTALL_DATA} ${WRKSRC}/Lib/${platform}/${file} \
|
||||
${PYTHON_LIBDIR}/${platform}/
|
||||
.endfor
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
MD5 (python/Python-2.1.1.tgz) = eb34371c49b271abc74b42572883e1b4
|
||||
MD5 (python/Python-2.2.tgz) = 87febf0780c8e18454022d34b2ca70a0
|
||||
|
|
|
|||
|
|
@ -1,11 +0,0 @@
|
|||
--- Misc/Makefile.pre.in.orig Wed Dec 9 18:05:33 1998
|
||||
+++ Misc/Makefile.pre.in Thu Sep 7 21:04:19 2000
|
||||
@@ -92,7 +92,7 @@
|
||||
TARGET= python
|
||||
|
||||
# Installed python binary (used only by boot target)
|
||||
-PYTHON= python
|
||||
+PYTHON?= python
|
||||
|
||||
# Add more -I and -D options here
|
||||
CFLAGS= $(OPT) -I$(INCLUDEPY) -I$(EXECINCLUDEPY) $(DEFS)
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -6,7 +6,7 @@
|
|||
#
|
||||
|
||||
PORTNAME= python
|
||||
PORTVERSION= 2.1.1
|
||||
PORTVERSION= 2.2
|
||||
CATEGORIES= lang python
|
||||
MASTER_SITES= http://www.python.org/ftp/python/${PORTVERSION}/ \
|
||||
http://SunSITE.Informatik.RWTH-Aachen.DE/python/ftp/python/${PORTVERSION}/
|
||||
|
|
@ -23,7 +23,7 @@ INSTALL_TARGET= install
|
|||
MAN1= python.1
|
||||
|
||||
USE_PYTHON= yes
|
||||
PYTHON_VERSION= python2.1
|
||||
PYTHON_VERSION= python2.2
|
||||
PYTHON_NO_DEPENDS= yes
|
||||
|
||||
#
|
||||
|
|
@ -69,7 +69,7 @@ PLATFORMS=plat-freebsd3 plat-freebsd4 plat-freebsd5
|
|||
pre-install:
|
||||
.for platform in ${PLATFORMS}
|
||||
${MKDIR} ${PYTHON_LIBDIR}/${platform}
|
||||
.for file in FCNTL.py IN.py regen
|
||||
.for file in IN.py regen
|
||||
${INSTALL_DATA} ${WRKSRC}/Lib/${platform}/${file} \
|
||||
${PYTHON_LIBDIR}/${platform}/
|
||||
.endfor
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
MD5 (python/Python-2.1.1.tgz) = eb34371c49b271abc74b42572883e1b4
|
||||
MD5 (python/Python-2.2.tgz) = 87febf0780c8e18454022d34b2ca70a0
|
||||
|
|
|
|||
|
|
@ -1,11 +0,0 @@
|
|||
--- Misc/Makefile.pre.in.orig Wed Dec 9 18:05:33 1998
|
||||
+++ Misc/Makefile.pre.in Thu Sep 7 21:04:19 2000
|
||||
@@ -92,7 +92,7 @@
|
||||
TARGET= python
|
||||
|
||||
# Installed python binary (used only by boot target)
|
||||
-PYTHON= python
|
||||
+PYTHON?= python
|
||||
|
||||
# Add more -I and -D options here
|
||||
CFLAGS= $(OPT) -I$(INCLUDEPY) -I$(EXECINCLUDEPY) $(DEFS)
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -6,7 +6,7 @@
|
|||
#
|
||||
|
||||
PORTNAME= python
|
||||
PORTVERSION= 2.1.1
|
||||
PORTVERSION= 2.2
|
||||
CATEGORIES= lang python
|
||||
MASTER_SITES= http://www.python.org/ftp/python/${PORTVERSION}/ \
|
||||
http://SunSITE.Informatik.RWTH-Aachen.DE/python/ftp/python/${PORTVERSION}/
|
||||
|
|
@ -23,7 +23,7 @@ INSTALL_TARGET= install
|
|||
MAN1= python.1
|
||||
|
||||
USE_PYTHON= yes
|
||||
PYTHON_VERSION= python2.1
|
||||
PYTHON_VERSION= python2.2
|
||||
PYTHON_NO_DEPENDS= yes
|
||||
|
||||
#
|
||||
|
|
@ -69,7 +69,7 @@ PLATFORMS=plat-freebsd3 plat-freebsd4 plat-freebsd5
|
|||
pre-install:
|
||||
.for platform in ${PLATFORMS}
|
||||
${MKDIR} ${PYTHON_LIBDIR}/${platform}
|
||||
.for file in FCNTL.py IN.py regen
|
||||
.for file in IN.py regen
|
||||
${INSTALL_DATA} ${WRKSRC}/Lib/${platform}/${file} \
|
||||
${PYTHON_LIBDIR}/${platform}/
|
||||
.endfor
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
MD5 (python/Python-2.1.1.tgz) = eb34371c49b271abc74b42572883e1b4
|
||||
MD5 (python/Python-2.2.tgz) = 87febf0780c8e18454022d34b2ca70a0
|
||||
|
|
|
|||
|
|
@ -1,11 +0,0 @@
|
|||
--- Misc/Makefile.pre.in.orig Wed Dec 9 18:05:33 1998
|
||||
+++ Misc/Makefile.pre.in Thu Sep 7 21:04:19 2000
|
||||
@@ -92,7 +92,7 @@
|
||||
TARGET= python
|
||||
|
||||
# Installed python binary (used only by boot target)
|
||||
-PYTHON= python
|
||||
+PYTHON?= python
|
||||
|
||||
# Add more -I and -D options here
|
||||
CFLAGS= $(OPT) -I$(INCLUDEPY) -I$(EXECINCLUDEPY) $(DEFS)
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -6,7 +6,7 @@
|
|||
#
|
||||
|
||||
PORTNAME= python
|
||||
PORTVERSION= 2.1.1
|
||||
PORTVERSION= 2.2
|
||||
CATEGORIES= lang python
|
||||
MASTER_SITES= http://www.python.org/ftp/python/${PORTVERSION}/ \
|
||||
http://SunSITE.Informatik.RWTH-Aachen.DE/python/ftp/python/${PORTVERSION}/
|
||||
|
|
@ -23,7 +23,7 @@ INSTALL_TARGET= install
|
|||
MAN1= python.1
|
||||
|
||||
USE_PYTHON= yes
|
||||
PYTHON_VERSION= python2.1
|
||||
PYTHON_VERSION= python2.2
|
||||
PYTHON_NO_DEPENDS= yes
|
||||
|
||||
#
|
||||
|
|
@ -69,7 +69,7 @@ PLATFORMS=plat-freebsd3 plat-freebsd4 plat-freebsd5
|
|||
pre-install:
|
||||
.for platform in ${PLATFORMS}
|
||||
${MKDIR} ${PYTHON_LIBDIR}/${platform}
|
||||
.for file in FCNTL.py IN.py regen
|
||||
.for file in IN.py regen
|
||||
${INSTALL_DATA} ${WRKSRC}/Lib/${platform}/${file} \
|
||||
${PYTHON_LIBDIR}/${platform}/
|
||||
.endfor
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
MD5 (python/Python-2.1.1.tgz) = eb34371c49b271abc74b42572883e1b4
|
||||
MD5 (python/Python-2.2.tgz) = 87febf0780c8e18454022d34b2ca70a0
|
||||
|
|
|
|||
|
|
@ -1,11 +0,0 @@
|
|||
--- Misc/Makefile.pre.in.orig Wed Dec 9 18:05:33 1998
|
||||
+++ Misc/Makefile.pre.in Thu Sep 7 21:04:19 2000
|
||||
@@ -92,7 +92,7 @@
|
||||
TARGET= python
|
||||
|
||||
# Installed python binary (used only by boot target)
|
||||
-PYTHON= python
|
||||
+PYTHON?= python
|
||||
|
||||
# Add more -I and -D options here
|
||||
CFLAGS= $(OPT) -I$(INCLUDEPY) -I$(EXECINCLUDEPY) $(DEFS)
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -6,7 +6,7 @@
|
|||
#
|
||||
|
||||
PORTNAME= python
|
||||
PORTVERSION= 2.1.1
|
||||
PORTVERSION= 2.2
|
||||
CATEGORIES= lang python
|
||||
MASTER_SITES= http://www.python.org/ftp/python/${PORTVERSION}/ \
|
||||
http://SunSITE.Informatik.RWTH-Aachen.DE/python/ftp/python/${PORTVERSION}/
|
||||
|
|
@ -23,7 +23,7 @@ INSTALL_TARGET= install
|
|||
MAN1= python.1
|
||||
|
||||
USE_PYTHON= yes
|
||||
PYTHON_VERSION= python2.1
|
||||
PYTHON_VERSION= python2.2
|
||||
PYTHON_NO_DEPENDS= yes
|
||||
|
||||
#
|
||||
|
|
@ -69,7 +69,7 @@ PLATFORMS=plat-freebsd3 plat-freebsd4 plat-freebsd5
|
|||
pre-install:
|
||||
.for platform in ${PLATFORMS}
|
||||
${MKDIR} ${PYTHON_LIBDIR}/${platform}
|
||||
.for file in FCNTL.py IN.py regen
|
||||
.for file in IN.py regen
|
||||
${INSTALL_DATA} ${WRKSRC}/Lib/${platform}/${file} \
|
||||
${PYTHON_LIBDIR}/${platform}/
|
||||
.endfor
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
MD5 (python/Python-2.1.1.tgz) = eb34371c49b271abc74b42572883e1b4
|
||||
MD5 (python/Python-2.2.tgz) = 87febf0780c8e18454022d34b2ca70a0
|
||||
|
|
|
|||
|
|
@ -1,11 +0,0 @@
|
|||
--- Misc/Makefile.pre.in.orig Wed Dec 9 18:05:33 1998
|
||||
+++ Misc/Makefile.pre.in Thu Sep 7 21:04:19 2000
|
||||
@@ -92,7 +92,7 @@
|
||||
TARGET= python
|
||||
|
||||
# Installed python binary (used only by boot target)
|
||||
-PYTHON= python
|
||||
+PYTHON?= python
|
||||
|
||||
# Add more -I and -D options here
|
||||
CFLAGS= $(OPT) -I$(INCLUDEPY) -I$(EXECINCLUDEPY) $(DEFS)
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -6,7 +6,7 @@
|
|||
#
|
||||
|
||||
PORTNAME= python
|
||||
PORTVERSION= 2.1.1
|
||||
PORTVERSION= 2.2
|
||||
CATEGORIES= lang python
|
||||
MASTER_SITES= http://www.python.org/ftp/python/${PORTVERSION}/ \
|
||||
http://SunSITE.Informatik.RWTH-Aachen.DE/python/ftp/python/${PORTVERSION}/
|
||||
|
|
@ -23,7 +23,7 @@ INSTALL_TARGET= install
|
|||
MAN1= python.1
|
||||
|
||||
USE_PYTHON= yes
|
||||
PYTHON_VERSION= python2.1
|
||||
PYTHON_VERSION= python2.2
|
||||
PYTHON_NO_DEPENDS= yes
|
||||
|
||||
#
|
||||
|
|
@ -69,7 +69,7 @@ PLATFORMS=plat-freebsd3 plat-freebsd4 plat-freebsd5
|
|||
pre-install:
|
||||
.for platform in ${PLATFORMS}
|
||||
${MKDIR} ${PYTHON_LIBDIR}/${platform}
|
||||
.for file in FCNTL.py IN.py regen
|
||||
.for file in IN.py regen
|
||||
${INSTALL_DATA} ${WRKSRC}/Lib/${platform}/${file} \
|
||||
${PYTHON_LIBDIR}/${platform}/
|
||||
.endfor
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
MD5 (python/Python-2.1.1.tgz) = eb34371c49b271abc74b42572883e1b4
|
||||
MD5 (python/Python-2.2.tgz) = 87febf0780c8e18454022d34b2ca70a0
|
||||
|
|
|
|||
|
|
@ -1,11 +0,0 @@
|
|||
--- Misc/Makefile.pre.in.orig Wed Dec 9 18:05:33 1998
|
||||
+++ Misc/Makefile.pre.in Thu Sep 7 21:04:19 2000
|
||||
@@ -92,7 +92,7 @@
|
||||
TARGET= python
|
||||
|
||||
# Installed python binary (used only by boot target)
|
||||
-PYTHON= python
|
||||
+PYTHON?= python
|
||||
|
||||
# Add more -I and -D options here
|
||||
CFLAGS= $(OPT) -I$(INCLUDEPY) -I$(EXECINCLUDEPY) $(DEFS)
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -6,7 +6,7 @@
|
|||
#
|
||||
|
||||
PORTNAME= python
|
||||
PORTVERSION= 2.1.1
|
||||
PORTVERSION= 2.2
|
||||
CATEGORIES= lang python
|
||||
MASTER_SITES= http://www.python.org/ftp/python/${PORTVERSION}/ \
|
||||
http://SunSITE.Informatik.RWTH-Aachen.DE/python/ftp/python/${PORTVERSION}/
|
||||
|
|
@ -23,7 +23,7 @@ INSTALL_TARGET= install
|
|||
MAN1= python.1
|
||||
|
||||
USE_PYTHON= yes
|
||||
PYTHON_VERSION= python2.1
|
||||
PYTHON_VERSION= python2.2
|
||||
PYTHON_NO_DEPENDS= yes
|
||||
|
||||
#
|
||||
|
|
@ -69,7 +69,7 @@ PLATFORMS=plat-freebsd3 plat-freebsd4 plat-freebsd5
|
|||
pre-install:
|
||||
.for platform in ${PLATFORMS}
|
||||
${MKDIR} ${PYTHON_LIBDIR}/${platform}
|
||||
.for file in FCNTL.py IN.py regen
|
||||
.for file in IN.py regen
|
||||
${INSTALL_DATA} ${WRKSRC}/Lib/${platform}/${file} \
|
||||
${PYTHON_LIBDIR}/${platform}/
|
||||
.endfor
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
MD5 (python/Python-2.1.1.tgz) = eb34371c49b271abc74b42572883e1b4
|
||||
MD5 (python/Python-2.2.tgz) = 87febf0780c8e18454022d34b2ca70a0
|
||||
|
|
|
|||
|
|
@ -1,11 +0,0 @@
|
|||
--- Misc/Makefile.pre.in.orig Wed Dec 9 18:05:33 1998
|
||||
+++ Misc/Makefile.pre.in Thu Sep 7 21:04:19 2000
|
||||
@@ -92,7 +92,7 @@
|
||||
TARGET= python
|
||||
|
||||
# Installed python binary (used only by boot target)
|
||||
-PYTHON= python
|
||||
+PYTHON?= python
|
||||
|
||||
# Add more -I and -D options here
|
||||
CFLAGS= $(OPT) -I$(INCLUDEPY) -I$(EXECINCLUDEPY) $(DEFS)
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -6,7 +6,7 @@
|
|||
#
|
||||
|
||||
PORTNAME= python
|
||||
PORTVERSION= 2.1.1
|
||||
PORTVERSION= 2.2
|
||||
CATEGORIES= lang python
|
||||
MASTER_SITES= http://www.python.org/ftp/python/${PORTVERSION}/ \
|
||||
http://SunSITE.Informatik.RWTH-Aachen.DE/python/ftp/python/${PORTVERSION}/
|
||||
|
|
@ -23,7 +23,7 @@ INSTALL_TARGET= install
|
|||
MAN1= python.1
|
||||
|
||||
USE_PYTHON= yes
|
||||
PYTHON_VERSION= python2.1
|
||||
PYTHON_VERSION= python2.2
|
||||
PYTHON_NO_DEPENDS= yes
|
||||
|
||||
#
|
||||
|
|
@ -69,7 +69,7 @@ PLATFORMS=plat-freebsd3 plat-freebsd4 plat-freebsd5
|
|||
pre-install:
|
||||
.for platform in ${PLATFORMS}
|
||||
${MKDIR} ${PYTHON_LIBDIR}/${platform}
|
||||
.for file in FCNTL.py IN.py regen
|
||||
.for file in IN.py regen
|
||||
${INSTALL_DATA} ${WRKSRC}/Lib/${platform}/${file} \
|
||||
${PYTHON_LIBDIR}/${platform}/
|
||||
.endfor
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
MD5 (python/Python-2.1.1.tgz) = eb34371c49b271abc74b42572883e1b4
|
||||
MD5 (python/Python-2.2.tgz) = 87febf0780c8e18454022d34b2ca70a0
|
||||
|
|
|
|||
|
|
@ -1,11 +0,0 @@
|
|||
--- Misc/Makefile.pre.in.orig Wed Dec 9 18:05:33 1998
|
||||
+++ Misc/Makefile.pre.in Thu Sep 7 21:04:19 2000
|
||||
@@ -92,7 +92,7 @@
|
||||
TARGET= python
|
||||
|
||||
# Installed python binary (used only by boot target)
|
||||
-PYTHON= python
|
||||
+PYTHON?= python
|
||||
|
||||
# Add more -I and -D options here
|
||||
CFLAGS= $(OPT) -I$(INCLUDEPY) -I$(EXECINCLUDEPY) $(DEFS)
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -6,7 +6,7 @@
|
|||
#
|
||||
|
||||
PORTNAME= python
|
||||
PORTVERSION= 2.1.1
|
||||
PORTVERSION= 2.2
|
||||
CATEGORIES= lang python
|
||||
MASTER_SITES= http://www.python.org/ftp/python/${PORTVERSION}/ \
|
||||
http://SunSITE.Informatik.RWTH-Aachen.DE/python/ftp/python/${PORTVERSION}/
|
||||
|
|
@ -23,7 +23,7 @@ INSTALL_TARGET= install
|
|||
MAN1= python.1
|
||||
|
||||
USE_PYTHON= yes
|
||||
PYTHON_VERSION= python2.1
|
||||
PYTHON_VERSION= python2.2
|
||||
PYTHON_NO_DEPENDS= yes
|
||||
|
||||
#
|
||||
|
|
@ -69,7 +69,7 @@ PLATFORMS=plat-freebsd3 plat-freebsd4 plat-freebsd5
|
|||
pre-install:
|
||||
.for platform in ${PLATFORMS}
|
||||
${MKDIR} ${PYTHON_LIBDIR}/${platform}
|
||||
.for file in FCNTL.py IN.py regen
|
||||
.for file in IN.py regen
|
||||
${INSTALL_DATA} ${WRKSRC}/Lib/${platform}/${file} \
|
||||
${PYTHON_LIBDIR}/${platform}/
|
||||
.endfor
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
MD5 (python/Python-2.1.1.tgz) = eb34371c49b271abc74b42572883e1b4
|
||||
MD5 (python/Python-2.2.tgz) = 87febf0780c8e18454022d34b2ca70a0
|
||||
|
|
|
|||
|
|
@ -1,11 +0,0 @@
|
|||
--- Misc/Makefile.pre.in.orig Wed Dec 9 18:05:33 1998
|
||||
+++ Misc/Makefile.pre.in Thu Sep 7 21:04:19 2000
|
||||
@@ -92,7 +92,7 @@
|
||||
TARGET= python
|
||||
|
||||
# Installed python binary (used only by boot target)
|
||||
-PYTHON= python
|
||||
+PYTHON?= python
|
||||
|
||||
# Add more -I and -D options here
|
||||
CFLAGS= $(OPT) -I$(INCLUDEPY) -I$(EXECINCLUDEPY) $(DEFS)
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -6,7 +6,7 @@
|
|||
#
|
||||
|
||||
PORTNAME= python
|
||||
PORTVERSION= 2.1.1
|
||||
PORTVERSION= 2.2
|
||||
CATEGORIES= lang python
|
||||
MASTER_SITES= http://www.python.org/ftp/python/${PORTVERSION}/ \
|
||||
http://SunSITE.Informatik.RWTH-Aachen.DE/python/ftp/python/${PORTVERSION}/
|
||||
|
|
@ -23,7 +23,7 @@ INSTALL_TARGET= install
|
|||
MAN1= python.1
|
||||
|
||||
USE_PYTHON= yes
|
||||
PYTHON_VERSION= python2.1
|
||||
PYTHON_VERSION= python2.2
|
||||
PYTHON_NO_DEPENDS= yes
|
||||
|
||||
#
|
||||
|
|
@ -69,7 +69,7 @@ PLATFORMS=plat-freebsd3 plat-freebsd4 plat-freebsd5
|
|||
pre-install:
|
||||
.for platform in ${PLATFORMS}
|
||||
${MKDIR} ${PYTHON_LIBDIR}/${platform}
|
||||
.for file in FCNTL.py IN.py regen
|
||||
.for file in IN.py regen
|
||||
${INSTALL_DATA} ${WRKSRC}/Lib/${platform}/${file} \
|
||||
${PYTHON_LIBDIR}/${platform}/
|
||||
.endfor
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
MD5 (python/Python-2.1.1.tgz) = eb34371c49b271abc74b42572883e1b4
|
||||
MD5 (python/Python-2.2.tgz) = 87febf0780c8e18454022d34b2ca70a0
|
||||
|
|
|
|||
|
|
@ -1,11 +0,0 @@
|
|||
--- Misc/Makefile.pre.in.orig Wed Dec 9 18:05:33 1998
|
||||
+++ Misc/Makefile.pre.in Thu Sep 7 21:04:19 2000
|
||||
@@ -92,7 +92,7 @@
|
||||
TARGET= python
|
||||
|
||||
# Installed python binary (used only by boot target)
|
||||
-PYTHON= python
|
||||
+PYTHON?= python
|
||||
|
||||
# Add more -I and -D options here
|
||||
CFLAGS= $(OPT) -I$(INCLUDEPY) -I$(EXECINCLUDEPY) $(DEFS)
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -6,7 +6,7 @@
|
|||
#
|
||||
|
||||
PORTNAME= python
|
||||
PORTVERSION= 2.1.1
|
||||
PORTVERSION= 2.2
|
||||
CATEGORIES= lang python
|
||||
MASTER_SITES= http://www.python.org/ftp/python/${PORTVERSION}/ \
|
||||
http://SunSITE.Informatik.RWTH-Aachen.DE/python/ftp/python/${PORTVERSION}/
|
||||
|
|
@ -23,7 +23,7 @@ INSTALL_TARGET= install
|
|||
MAN1= python.1
|
||||
|
||||
USE_PYTHON= yes
|
||||
PYTHON_VERSION= python2.1
|
||||
PYTHON_VERSION= python2.2
|
||||
PYTHON_NO_DEPENDS= yes
|
||||
|
||||
#
|
||||
|
|
@ -69,7 +69,7 @@ PLATFORMS=plat-freebsd3 plat-freebsd4 plat-freebsd5
|
|||
pre-install:
|
||||
.for platform in ${PLATFORMS}
|
||||
${MKDIR} ${PYTHON_LIBDIR}/${platform}
|
||||
.for file in FCNTL.py IN.py regen
|
||||
.for file in IN.py regen
|
||||
${INSTALL_DATA} ${WRKSRC}/Lib/${platform}/${file} \
|
||||
${PYTHON_LIBDIR}/${platform}/
|
||||
.endfor
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
MD5 (python/Python-2.1.1.tgz) = eb34371c49b271abc74b42572883e1b4
|
||||
MD5 (python/Python-2.2.tgz) = 87febf0780c8e18454022d34b2ca70a0
|
||||
|
|
|
|||
|
|
@ -1,11 +0,0 @@
|
|||
--- Misc/Makefile.pre.in.orig Wed Dec 9 18:05:33 1998
|
||||
+++ Misc/Makefile.pre.in Thu Sep 7 21:04:19 2000
|
||||
@@ -92,7 +92,7 @@
|
||||
TARGET= python
|
||||
|
||||
# Installed python binary (used only by boot target)
|
||||
-PYTHON= python
|
||||
+PYTHON?= python
|
||||
|
||||
# Add more -I and -D options here
|
||||
CFLAGS= $(OPT) -I$(INCLUDEPY) -I$(EXECINCLUDEPY) $(DEFS)
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -6,7 +6,7 @@
|
|||
#
|
||||
|
||||
PORTNAME= python
|
||||
PORTVERSION= 2.1.1
|
||||
PORTVERSION= 2.2
|
||||
CATEGORIES= lang python
|
||||
MASTER_SITES= http://www.python.org/ftp/python/${PORTVERSION}/ \
|
||||
http://SunSITE.Informatik.RWTH-Aachen.DE/python/ftp/python/${PORTVERSION}/
|
||||
|
|
@ -23,7 +23,7 @@ INSTALL_TARGET= install
|
|||
MAN1= python.1
|
||||
|
||||
USE_PYTHON= yes
|
||||
PYTHON_VERSION= python2.1
|
||||
PYTHON_VERSION= python2.2
|
||||
PYTHON_NO_DEPENDS= yes
|
||||
|
||||
#
|
||||
|
|
@ -69,7 +69,7 @@ PLATFORMS=plat-freebsd3 plat-freebsd4 plat-freebsd5
|
|||
pre-install:
|
||||
.for platform in ${PLATFORMS}
|
||||
${MKDIR} ${PYTHON_LIBDIR}/${platform}
|
||||
.for file in FCNTL.py IN.py regen
|
||||
.for file in IN.py regen
|
||||
${INSTALL_DATA} ${WRKSRC}/Lib/${platform}/${file} \
|
||||
${PYTHON_LIBDIR}/${platform}/
|
||||
.endfor
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
MD5 (python/Python-2.1.1.tgz) = eb34371c49b271abc74b42572883e1b4
|
||||
MD5 (python/Python-2.2.tgz) = 87febf0780c8e18454022d34b2ca70a0
|
||||
|
|
|
|||
|
|
@ -1,11 +0,0 @@
|
|||
--- Misc/Makefile.pre.in.orig Wed Dec 9 18:05:33 1998
|
||||
+++ Misc/Makefile.pre.in Thu Sep 7 21:04:19 2000
|
||||
@@ -92,7 +92,7 @@
|
||||
TARGET= python
|
||||
|
||||
# Installed python binary (used only by boot target)
|
||||
-PYTHON= python
|
||||
+PYTHON?= python
|
||||
|
||||
# Add more -I and -D options here
|
||||
CFLAGS= $(OPT) -I$(INCLUDEPY) -I$(EXECINCLUDEPY) $(DEFS)
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -15,8 +15,8 @@ DISTFILES= ${PYTHON_DISTFILE}
|
|||
|
||||
MAINTAINER= tg@FreeBSD.org
|
||||
|
||||
BUILD_DEPENDS= ${PYDISTUTILS} \
|
||||
gmp.3:${PORTSDIR}/math/libgmp
|
||||
BUILD_DEPENDS= ${PYDISTUTILS}
|
||||
LIB_DEPENDS= gmp.3:${PORTSDIR}/math/libgmp
|
||||
|
||||
DIST_SUBDIR= python
|
||||
USE_PYTHON= yes
|
||||
|
|
|
|||
|
|
@ -4,3 +4,4 @@ MD5 (python/BeOpen-Python-2.0.tar.gz) = 8c4a64891d3dc6422df2514c603f0c98
|
|||
MD5 (python/Python-2.0.1.tgz) = 8aa10dcf062723001b852d96e905af79
|
||||
MD5 (python/Python-2.1.tgz) = 2ba2baeccd6100a4be80e6368a975054
|
||||
MD5 (python/Python-2.1.1.tgz) = eb34371c49b271abc74b42572883e1b4
|
||||
MD5 (python/Python-2.2.tgz) = 87febf0780c8e18454022d34b2ca70a0
|
||||
|
|
|
|||
|
|
@ -4,3 +4,4 @@ MD5 (python/BeOpen-Python-2.0.tar.gz) = 8c4a64891d3dc6422df2514c603f0c98
|
|||
MD5 (python/Python-2.0.1.tgz) = 8aa10dcf062723001b852d96e905af79
|
||||
MD5 (python/Python-2.1.tgz) = 2ba2baeccd6100a4be80e6368a975054
|
||||
MD5 (python/Python-2.1.1.tgz) = eb34371c49b271abc74b42572883e1b4
|
||||
MD5 (python/Python-2.2.tgz) = 87febf0780c8e18454022d34b2ca70a0
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue