[59364] trunk/dports/python

Ryan Schmidt ryandesign at macports.org
Wed Oct 14 02:50:11 PDT 2009


On Oct 13, 2009, at 19:46, blair at macports.org wrote:

> +livecheck.regex     CouchDB (0\.\[0-9\]+(\.\[0-9\]+)?)


Note that for proper escaping, you either need double backslashes in  
front of the periods...

livecheck.regex     CouchDB (0\\.\[0-9\]+(\\.\[0-9\]+)?)

...or you need to enclose the entire regex in curly quotes to disable  
tcl special characters...

livecheck.regex     {CouchDB (0\.[0-9]+(\.[0-9]+)?)}



More information about the macports-dev mailing list