You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ka...@apache.org on 2014/11/07 23:31:45 UTC

[1/2] cordova-coho git commit: Fix create-archive for cordova-lib

Repository: cordova-coho
Updated Branches:
  refs/heads/master 061a3c0f0 -> 9111133c8


Fix create-archive for cordova-lib

It was going one level too deep into "cordova-lib/" * 3.
Probably related to recent changes with forEachRepo().


Project: http://git-wip-us.apache.org/repos/asf/cordova-coho/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-coho/commit/82074af4
Tree: http://git-wip-us.apache.org/repos/asf/cordova-coho/tree/82074af4
Diff: http://git-wip-us.apache.org/repos/asf/cordova-coho/diff/82074af4

Branch: refs/heads/master
Commit: 82074af42ae3e36c78635fdf6a0dfae1a8f37581
Parents: 061a3c0
Author: Mark Koudritsky <ka...@gmail.com>
Authored: Fri Nov 7 17:26:51 2014 -0500
Committer: Mark Koudritsky <ka...@gmail.com>
Committed: Fri Nov 7 17:26:51 2014 -0500

----------------------------------------------------------------------
 src/create-verify-archive.js | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-coho/blob/82074af4/src/create-verify-archive.js
----------------------------------------------------------------------
diff --git a/src/create-verify-archive.js b/src/create-verify-archive.js
index abd750e..098b920 100644
--- a/src/create-verify-archive.js
+++ b/src/create-verify-archive.js
@@ -76,7 +76,9 @@ exports.createCommand = function*(argv) {
                 apputil.fatal('Aborting because pending changes exist in ' + repo.repoName);
             }
             var cmd = 'npm pack';
+            /* Not needed since for-each cds to cordova-lib/cordova-lib for lib
             if (repo.id==='lib') cmd = 'npm pack cordova-'+repo.id;
+            */
             /* Not needed anymore due to package.json moving to root
             if (repo.id==='windows') cmd = 'npm pack '+repo.id;
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org


[2/2] cordova-coho git commit: Fixes in tools release doc

Posted by ka...@apache.org.
Fixes in tools release doc

Some lessons learned from last tools release
https://issues.apache.org/jira/browse/CB-7988


Project: http://git-wip-us.apache.org/repos/asf/cordova-coho/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-coho/commit/9111133c
Tree: http://git-wip-us.apache.org/repos/asf/cordova-coho/tree/9111133c
Diff: http://git-wip-us.apache.org/repos/asf/cordova-coho/diff/9111133c

Branch: refs/heads/master
Commit: 9111133c862bd2674cd7f57837d2b911cc9c7840
Parents: 82074af
Author: Mark Koudritsky <ka...@gmail.com>
Authored: Fri Nov 7 17:29:32 2014 -0500
Committer: Mark Koudritsky <ka...@gmail.com>
Committed: Fri Nov 7 17:29:32 2014 -0500

----------------------------------------------------------------------
 docs/tools-release-process.md | 11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-coho/blob/9111133c/docs/tools-release-process.md
----------------------------------------------------------------------
diff --git a/docs/tools-release-process.md b/docs/tools-release-process.md
index c01a4c7..86ed78c 100644
--- a/docs/tools-release-process.md
+++ b/docs/tools-release-process.md
@@ -42,6 +42,12 @@ E.g.:
 
     If not, I will start the release tomorrow.
 
+    The versions to be released are:
+     - lib@x.y.z
+     - cli@
+     - plugman@
+     - cordova-js@
+
 
 ## Create JIRA issues
 
@@ -86,7 +92,6 @@ Ensure license headers are present everywhere. For reference, see this [backgrou
     coho audit-license-headers -r cli | less
     coho audit-license-headers -r plugman | less
     coho audit-license-headers -r lib | less
-    coho audit-license-headers -r js | less
 
 Ensure all dependencies and subdependencies have Apache-compatible licenses
 
@@ -153,7 +158,7 @@ Update the version of cordova-js that cordova-lib depends on:
 
 Commit these changes together into one commit
 
-    for l in cordova-plugman cordova-cli cordova-js cordova-lib; do ( cd $l; v="$(grep '"version"' package.json | cut -d'"' -f4)"; git commit -am "$JIRA Updated version and RELEASENOTES.md for release $v" ); done
+    for l in cordova-plugman cordova-cli cordova-js cordova-lib/cordova-lib; do ( cd $l; v="$(grep '"version"' package.json | cut -d'"' -f4)"; git commit -am "$JIRA Updated version and RELEASENOTES.md for release $v" ); done
 
 ## Tag
 
@@ -187,7 +192,7 @@ Ensure you have the svn repos checked out:
 
     coho repo-clone -r dist -r dist/dev
 
-Create archives from your tags: (the archives for lib were already created above)
+Create archives from your tags:
 
     coho create-archive -r plugman -r cli -r lib -r js --dest cordova-dist-dev/$JIRA
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org