From owner-freebsd-ports@FreeBSD.ORG Tue Mar 18 21:26:35 2014 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 055A95D9 for ; Tue, 18 Mar 2014 21:26:35 +0000 (UTC) Received: from mail-pb0-f46.google.com (mail-pb0-f46.google.com [209.85.160.46]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CFB34FE7 for ; Tue, 18 Mar 2014 21:26:34 +0000 (UTC) Received: by mail-pb0-f46.google.com with SMTP id rq2so7907807pbb.33 for ; Tue, 18 Mar 2014 14:26:28 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:message-id:date:from:user-agent:mime-version:to :subject:content-type:content-transfer-encoding; bh=WeHVXFyubYA7J5SZ+xBEU3bJD/+YaqUw79Z6SmPP5Aw=; b=LybZj5ANs42rtcNZ/2AzMgTn3XAoTQOfo2CUU2vbrg6tkSOMylZjerr/EkUZmpVZrk HBEDe114QyTo2MA9Ap88s81P81PEhZFWrRLjzUfsc+GJNaKyhROlmJHpW2td7V9qd/lr 2JW6h14alwTP6uenh84IbvVW7IBuWmPZT0XeXeesZKfNTj5LYgI3nYSB+StABMDi5QYC bZP2xB8bXBY9CqBV/vrzwX8RfRA2mYOLlCsV7ZUCkqg2NFZMYJxg2FdH1hAwWEcrHJu5 Qul6j3IKTAxiWws6adbv2OxLPk6UvmCUMa1RpEIMR+mPtQwO2/Yg7ABqZMvclb7cIxsO ES7A== X-Gm-Message-State: ALoCoQk9qhFvwRu9r/X5rjSVy89Al63T6311Hf5gz7AB/WJeWLiQXBj/afQx2BMUSRIqehldw8TO X-Received: by 10.66.217.133 with SMTP id oy5mr36302224pac.46.1395177987863; Tue, 18 Mar 2014 14:26:27 -0700 (PDT) Received: from blackbox.krakensys.lokal ([121.54.58.131]) by mx.google.com with ESMTPSA id gg3sm55682883pbc.34.2014.03.18.14.26.23 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 18 Mar 2014 14:26:26 -0700 (PDT) Message-ID: <5328B9F6.6050800@anarchy.in.the.ph> Date: Wed, 19 Mar 2014 05:26:14 +0800 From: "Mars G. Miro" User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/17.0 Thunderbird/17.0 MIME-Version: 1.0 To: freebsd-ports@freebsd.org Subject: mail/thunderbird dependency on mercurial Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Mar 2014 21:26:35 -0000 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:anonymous@cvs-mirror.mozilla.org:/cvsroot co -r HEAD NSPR &>> $TEST_OUTPUT/nisccBuildLog - cvs -d :pserver:anonymous@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