[73342] trunk/dports/python
michaelld at macports.org
michaelld at macports.org
Wed Nov 10 08:43:55 PST 2010
Revision: 73342
http://trac.macports.org/changeset/73342
Author: michaelld at macports.org
Date: 2010-11-10 08:43:50 -0800 (Wed, 10 Nov 2010)
Log Message:
-----------
pyXX-pyqt4: bump to 2.8.1; add in support for ccache.
Modified Paths:
--------------
trunk/dports/python/py25-pyqt4/Portfile
trunk/dports/python/py26-pyqt4/Portfile
trunk/dports/python/py27-pyqt4/Portfile
trunk/dports/python/py31-pyqt4/Portfile
Modified: trunk/dports/python/py25-pyqt4/Portfile
===================================================================
--- trunk/dports/python/py25-pyqt4/Portfile 2010-11-10 16:33:38 UTC (rev 73341)
+++ trunk/dports/python/py25-pyqt4/Portfile 2010-11-10 16:43:50 UTC (rev 73342)
@@ -5,8 +5,7 @@
PortGroup qt4 1.0
name py25-pyqt4
-version 4.7.7
-revision 1
+version 4.8.1
categories python devel
platforms macosx
maintainers nomaintainer
@@ -22,9 +21,9 @@
distname PyQt-mac-gpl-${version}
dist_subdir python
-checksums md5 18213126857b7c6e6da6f7a1720d4870 \
- sha1 e07f851b54fa5cf6ec3e146f07b1c234c5069ca3 \
- rmd160 fe1a01ce93a012224a4c590b56dc3bfa8fcdbe74
+checksums md5 177fa10c6420d6f7fc745478fa64304a \
+ sha1 55a448993fc011f886fd2d375e0748d1baae39eb \
+ rmd160 517cf7c3ac589b962a47dfa9410683f135e9b980
depends_lib-append port:py25-sip
@@ -43,6 +42,11 @@
reinplace "s|-bundle|-bundle -flat_namespace -undefined suppress|" \
${worksrcpath}/qmake.conf
+
+ # allow ccache, if specified by the user
+ if {[tbool configure.ccache]} {
+ configure.env-append "CCACHE=ccache"
+ }
}
configure.cmd "${prefix}/bin/python2.5 configure.py \
@@ -83,6 +87,12 @@
}
}
+# allow ccache, if specified by the user
+pre-build {
+ if {[tbool configure.ccache]} {
+ build.post_args "CCACHE=ccache"
+ }
+}
build.target all
use_parallel_build yes
Modified: trunk/dports/python/py26-pyqt4/Portfile
===================================================================
--- trunk/dports/python/py26-pyqt4/Portfile 2010-11-10 16:33:38 UTC (rev 73341)
+++ trunk/dports/python/py26-pyqt4/Portfile 2010-11-10 16:43:50 UTC (rev 73342)
@@ -5,8 +5,7 @@
PortGroup qt4 1.0
name py26-pyqt4
-version 4.7.7
-revision 1
+version 4.8.1
categories python devel
platforms macosx
maintainers michaelld openmaintainer
@@ -22,9 +21,9 @@
distname PyQt-mac-gpl-${version}
dist_subdir python
-checksums md5 18213126857b7c6e6da6f7a1720d4870 \
- sha1 e07f851b54fa5cf6ec3e146f07b1c234c5069ca3 \
- rmd160 fe1a01ce93a012224a4c590b56dc3bfa8fcdbe74
+checksums md5 177fa10c6420d6f7fc745478fa64304a \
+ sha1 55a448993fc011f886fd2d375e0748d1baae39eb \
+ rmd160 517cf7c3ac589b962a47dfa9410683f135e9b980
depends_lib-append port:py26-sip
@@ -43,6 +42,11 @@
reinplace "s|-bundle|-bundle -flat_namespace -undefined suppress|" \
${worksrcpath}/qmake.conf
+
+ # allow ccache, if specified by the user
+ if {[tbool configure.ccache]} {
+ configure.env-append "CCACHE=ccache"
+ }
}
configure.cmd "${prefix}/bin/python2.6 configure.py \
@@ -83,6 +87,12 @@
}
}
+# allow ccache, if specified by the user
+pre-build {
+ if {[tbool configure.ccache]} {
+ build.post_args "CCACHE=ccache"
+ }
+}
build.target all
use_parallel_build yes
Modified: trunk/dports/python/py27-pyqt4/Portfile
===================================================================
--- trunk/dports/python/py27-pyqt4/Portfile 2010-11-10 16:33:38 UTC (rev 73341)
+++ trunk/dports/python/py27-pyqt4/Portfile 2010-11-10 16:43:50 UTC (rev 73342)
@@ -5,8 +5,7 @@
PortGroup qt4 1.0
name py27-pyqt4
-version 4.7.7
-revision 1
+version 4.8.1
categories python devel
platforms macosx
maintainers michaelld openmaintainer
@@ -22,9 +21,9 @@
distname PyQt-mac-gpl-${version}
dist_subdir python
-checksums md5 18213126857b7c6e6da6f7a1720d4870 \
- sha1 e07f851b54fa5cf6ec3e146f07b1c234c5069ca3 \
- rmd160 fe1a01ce93a012224a4c590b56dc3bfa8fcdbe74
+checksums md5 177fa10c6420d6f7fc745478fa64304a \
+ sha1 55a448993fc011f886fd2d375e0748d1baae39eb \
+ rmd160 517cf7c3ac589b962a47dfa9410683f135e9b980
depends_lib-append port:py27-sip
@@ -43,6 +42,11 @@
reinplace "s|-bundle|-bundle -flat_namespace -undefined suppress|" \
${worksrcpath}/qmake.conf
+
+ # allow ccache, if specified by the user
+ if {[tbool configure.ccache]} {
+ configure.env-append "CCACHE=ccache"
+ }
}
configure.cmd "${prefix}/bin/python2.7 configure.py \
@@ -83,6 +87,12 @@
}
}
+# allow ccache, if specified by the user
+pre-build {
+ if {[tbool configure.ccache]} {
+ build.post_args "CCACHE=ccache"
+ }
+}
build.target all
use_parallel_build yes
Modified: trunk/dports/python/py31-pyqt4/Portfile
===================================================================
--- trunk/dports/python/py31-pyqt4/Portfile 2010-11-10 16:33:38 UTC (rev 73341)
+++ trunk/dports/python/py31-pyqt4/Portfile 2010-11-10 16:43:50 UTC (rev 73342)
@@ -5,8 +5,7 @@
PortGroup qt4 1.0
name py31-pyqt4
-version 4.7.7
-revision 1
+version 4.8.1
categories python devel
platforms macosx
maintainers nomaintainer
@@ -22,9 +21,9 @@
distname PyQt-mac-gpl-${version}
dist_subdir python
-checksums md5 18213126857b7c6e6da6f7a1720d4870 \
- sha1 e07f851b54fa5cf6ec3e146f07b1c234c5069ca3 \
- rmd160 fe1a01ce93a012224a4c590b56dc3bfa8fcdbe74
+checksums md5 177fa10c6420d6f7fc745478fa64304a \
+ sha1 55a448993fc011f886fd2d375e0748d1baae39eb \
+ rmd160 517cf7c3ac589b962a47dfa9410683f135e9b980
depends_lib-append port:py31-sip
@@ -43,6 +42,11 @@
reinplace "s|-bundle|-bundle -flat_namespace -undefined suppress|" \
${worksrcpath}/qmake.conf
+
+ # allow ccache, if specified by the user
+ if {[tbool configure.ccache]} {
+ configure.env-append "CCACHE=ccache"
+ }
}
configure.cmd "${prefix}/bin/python${pyversion} configure.py \
@@ -83,6 +87,12 @@
}
}
+# allow ccache, if specified by the user
+pre-build {
+ if {[tbool configure.ccache]} {
+ build.post_args "CCACHE=ccache"
+ }
+}
build.target all
use_parallel_build yes
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/macports-changes/attachments/20101110/7968a6a2/attachment-0001.html>
More information about the macports-changes
mailing list