Hi, It seems that thunderbird 24.3.0 now needs mercurial, otherwise it'll fail on the build. I don't know if it really does an hg pull but a diff between this and the previous version has something like :
+++++++++ ################################################################################ -# Do a cvs pull of NSS +# Do a HG pull of NSS ################################################################################ -cvs_pull() +hg_pull() { - # Tested NSS - by default using current CVS HEAD + # Tested NSS - by default using HG default tip if [ "$NO_BUILD_TEST" = "false" ]; then - echo "cloning NSS sources to be tested from CVS" + echo "cloning NSS sources to be tested from HG" [ ! -d "$LOCALDIST" ] && mkdir -p "$LOCALDIST" cd "$LOCALDIST" - cvs -d :pserver:anonym...@cvs-mirror.mozilla.org:/cvsroot co -r HEAD NSPR &>> $TEST_OUTPUT/nisccBuildLog - cvs -d :pserver:anonym...@cvs-mirror.mozilla.org:/cvsroot co -r HEAD NSS &>> $TEST_OUTPUT/nisccBuildLog + [ ! -d "$LOCALDIST/nspr" ] && hg clone --noupdate https://hg.mozilla.org/projects/nspr + cd nspr; hg pull; hg update -C -r default; cd .. + [ ! -d "$LOCALDIST/nss" ] && hg clone --noupdate https://hg.mozilla.org/projects/nss + cd nss; hg pull; hg update -C -r default; cd .. #find . -exec touch {} \; fi -- If society fits you comfortably enough, you call it freedom. -- Robert Frost _______________________________________________ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"