Revision: 86878 http://trac.macports.org/changeset/86878 Author: ram@macports.org Date: 2011-11-06 09:56:43 -0800 (Sun, 06 Nov 2011) Log Message: ----------- python/py-crypto: don't run livecheck on all subports Modified Paths: -------------- trunk/dports/python/py-crypto/Portfile Modified: trunk/dports/python/py-crypto/Portfile =================================================================== --- trunk/dports/python/py-crypto/Portfile 2011-11-06 17:56:12 UTC (rev 86877) +++ trunk/dports/python/py-crypto/Portfile 2011-11-06 17:56:43 UTC (rev 86878) @@ -39,6 +39,10 @@ } } -livecheck.type regex -livecheck.url ${homepage} -livecheck.regex pycrypto-(\[0-9\.\]+).tar.gz +if {${name} == ${subport}} { + livecheck.type regex + livecheck.url ${homepage} + livecheck.regex pycrypto-(\[0-9\.\]+).tar.gz +} else { + livecheck.type none +}