Return-Path: X-Original-To: apmail-incubator-callback-commits-archive@minotaur.apache.org Delivered-To: apmail-incubator-callback-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id C0C4D9F6C for ; Tue, 10 Apr 2012 19:15:22 +0000 (UTC) Received: (qmail 24923 invoked by uid 500); 10 Apr 2012 19:15:21 -0000 Delivered-To: apmail-incubator-callback-commits-archive@incubator.apache.org Received: (qmail 24867 invoked by uid 500); 10 Apr 2012 19:15:21 -0000 Mailing-List: contact callback-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: callback-dev@incubator.apache.org Delivered-To: mailing list callback-commits@incubator.apache.org Received: (qmail 24265 invoked by uid 99); 10 Apr 2012 19:15:20 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 Apr 2012 19:15:20 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id D1B3CC209; Tue, 10 Apr 2012 19:15:20 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: steven@apache.org To: callback-commits@incubator.apache.org X-Mailer: ASF-Git Admin Mailer Subject: [37/50] git commit: starting to add support for changes.txt Message-Id: <20120410191520.D1B3CC209@tyr.zones.apache.org> Date: Tue, 10 Apr 2012 19:15:20 +0000 (UTC) starting to add support for changes.txt Project: http://git-wip-us.apache.org/repos/asf/incubator-cordova-coho/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-cordova-coho/commit/7dc31651 Tree: http://git-wip-us.apache.org/repos/asf/incubator-cordova-coho/tree/7dc31651 Diff: http://git-wip-us.apache.org/repos/asf/incubator-cordova-coho/diff/7dc31651 Branch: refs/heads/master Commit: 7dc31651a12d82d4ebabd0a5620829dfa11507c2 Parents: d3ebe8a Author: stevengill Authored: Fri Jan 27 14:36:20 2012 -0800 Committer: stevengill Committed: Fri Jan 27 14:36:20 2012 -0800 ---------------------------------------------------------------------- README.md | 8 ++++++-- coho | 13 +++++++++++-- 2 files changed, 17 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-cordova-coho/blob/7dc31651/README.md ---------------------------------------------------------------------- diff --git a/README.md b/README.md index f54fd3e..363fd76 100644 --- a/README.md +++ b/README.md @@ -12,8 +12,12 @@ Perquisites Usage ===== - coho 1.2 - // creates phonegap-1.2.zip + coho 1.3.0 + // creates phonegap-1.3.0.zip + + coho 1.3.0 1.2.0 + // creates phonegap-1.3.0.zip with the changes made since 1.2.0 + ### the process http://git-wip-us.apache.org/repos/asf/incubator-cordova-coho/blob/7dc31651/coho ---------------------------------------------------------------------- diff --git a/coho b/coho index 293df14..a3bed36 100755 --- a/coho +++ b/coho @@ -52,7 +52,7 @@ function executeCommands(callback) { queueCommand("rm -rf temp && mkdir temp && cd temp && mkdir repositories && mkdir release"); queueCommand("cd temp/release && mkdir lib && cd lib && mkdir ios && mkdir android && mkdir blackberry && mkdir windows && mkdir webos && mkdir symbian && mkdir bada"); - +/* //ios queueCommand("cd temp/repositories && git clone "+ios+" && cd "+iosdir+" && git fetch --tags && git checkout "+VERSION); queueCommand("cd temp/repositories/"+iosdir+" && make"); @@ -86,7 +86,7 @@ queueCommand("cd temp/repositories/"+badadir+" && cp -r ./* ../../release/lib/ba //docs queueCommand("cd temp/repositories && git clone "+docs+" && cd "+docsdir+" && git fetch --tags && git checkout "+VERSION); queueCommand("cd temp/repositories/"+docsdir+" && ./bin/phonegap-docs && cp -r public ../../release/doc"); - +*/ //symbian fs.writeFile('depreciate.txt', 'PhoneGap-Symbian is being depreciated. You can find the last available code at https://github.com/callback/callback-symbian.', function (err) { if (err) throw err; @@ -94,6 +94,15 @@ fs.writeFile('depreciate.txt', 'PhoneGap-Symbian is being depreciated. You can f }); queueCommand("mv depreciate.txt temp/release/lib/symbian/depreciate.txt") +if (process.argv[3] != undefined){ + queueCommand() + queueCommand() + queueCommand() + queueCommand() + queueCommand() + queueCommand() +} + executeCommands(function(){ exec("cd temp/release && git archive master -o phonegap-"+VERSION+".zip", function(e, stdout, stderr) { });