Revision
86885
Author
ram@macports.org
Date
2011-11-06 10:00:31 -0800 (Sun, 06 Nov 2011)

Log Message

python/py-numpy: don't run livecheck on all subports

Modified Paths

Diff

Modified: trunk/dports/python/py-numpy/Portfile (86884 => 86885)


--- trunk/dports/python/py-numpy/Portfile	2011-11-06 17:59:55 UTC (rev 86884)
+++ trunk/dports/python/py-numpy/Portfile	2011-11-06 18:00:31 UTC (rev 86885)
@@ -173,6 +173,10 @@
 
 }
 
-livecheck.type        regex
-livecheck.url         http://www.scipy.org
-livecheck.regex       {NumPy (\d+(\.\d+)*) released}
+if {${name} == ${subport}} {
+    livecheck.type        regex
+    livecheck.url         http://www.scipy.org
+    livecheck.regex       {NumPy (\d+(\.\d+)*) released}
+} else {
+    livecheck.type        none
+}