You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@usergrid.apache.org by sf...@apache.org on 2014/08/27 00:41:14 UTC

[57/63] [abbrv] git commit: Get release file name correct. Also add md5 checksum to sign release script.

Get release file name correct. Also add md5 checksum to sign release script.


Project: http://git-wip-us.apache.org/repos/asf/incubator-usergrid/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-usergrid/commit/d184e80d
Tree: http://git-wip-us.apache.org/repos/asf/incubator-usergrid/tree/d184e80d
Diff: http://git-wip-us.apache.org/repos/asf/incubator-usergrid/diff/d184e80d

Branch: refs/heads/two-dot-o-notifications-queue
Commit: d184e80dcd8da7a9cd70996186949165306e3fb9
Parents: 08ec99b
Author: Dave Johnson <sn...@apache.org>
Authored: Tue Aug 26 12:48:26 2014 -0400
Committer: Dave Johnson <sn...@apache.org>
Committed: Tue Aug 26 12:48:26 2014 -0400

----------------------------------------------------------------------
 release/pom.xml                                             | 3 ++-
 release/sign-release.sh                                     | 9 +++++++--
 release/src/main/assembly/source.xml                        | 3 +--
 .../org/apache/usergrid/persistence/query/tree/.gitignore   | 2 --
 stack/pom.xml                                               | 1 +
 5 files changed, 11 insertions(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-usergrid/blob/d184e80d/release/pom.xml
----------------------------------------------------------------------
diff --git a/release/pom.xml b/release/pom.xml
index 8d0872b..6463222 100644
--- a/release/pom.xml
+++ b/release/pom.xml
@@ -27,8 +27,9 @@
         <relativePath>../stack/pom.xml</relativePath>
     </parent>
 
-    <artifactId>usergrid-release</artifactId>
+    <artifactId>apache-usergrid-incubating</artifactId>
     <packaging>pom</packaging>
+    <version>1.0.0-rc2</version>
 
     <name>Usergrid Release Assembly</name>
     <description>Assembles Usergrid into a distribution package</description>

http://git-wip-us.apache.org/repos/asf/incubator-usergrid/blob/d184e80d/release/sign-release.sh
----------------------------------------------------------------------
diff --git a/release/sign-release.sh b/release/sign-release.sh
index 702ffde..59f19af 100755
--- a/release/sign-release.sh
+++ b/release/sign-release.sh
@@ -1,3 +1,4 @@
+#!/bin/bash
 #
 # Licensed to the Apache Software Foundation (ASF) under one or more
 # contributor license agreements.  See the NOTICE file distributed with
@@ -15,11 +16,15 @@
 # limitations under the License.
 #
 
+pushd target 
+
 export rcstring="-rc2"
 export vstring="1.0.0"
 
-gpg --armor --detach-sig target/apache-usergrid-incubating-${vstring}${rcstring}-source.zip
-gpg --armor --detach-sig target/apache-usergrid-incubating-${vstring}${rcstring}-source.tar.gz
+gpg --armor --detach-sig apache-usergrid-incubating-${vstring}${rcstring}-source.zip
+gpg --armor --detach-sig apache-usergrid-incubating-${vstring}${rcstring}-source.tar.gz
 
 gpg --print-md MD5 apache-usergrid-incubating-${vstring}${rcstring}-source.zip > apache-usergrid-incubating-${vstring}${rcstring}-source.zip.md5
 gpg --print-md MD5 apache-usergrid-incubating-${vstring}${rcstring}-source.tar.gz > apache-usergrid-incubating-${vstring}${rcstring}-source.tar.gz.md5
+
+popd

http://git-wip-us.apache.org/repos/asf/incubator-usergrid/blob/d184e80d/release/src/main/assembly/source.xml
----------------------------------------------------------------------
diff --git a/release/src/main/assembly/source.xml b/release/src/main/assembly/source.xml
index b26f61f..367d858 100644
--- a/release/src/main/assembly/source.xml
+++ b/release/src/main/assembly/source.xml
@@ -26,8 +26,7 @@
 	<includeBaseDirectory>false</includeBaseDirectory>
 	<fileSets>
 		<fileSet>
-			<outputDirectory>usergrid-${pom.version}-source
-			</outputDirectory>
+			<outputDirectory>apache-usergrid-incubating-${pom.version}</outputDirectory>
 			<directory>${project.basedir}/../</directory>
 			<includes>
 				<include>**</include>

http://git-wip-us.apache.org/repos/asf/incubator-usergrid/blob/d184e80d/stack/core/src/main/java/org/apache/usergrid/persistence/query/tree/.gitignore
----------------------------------------------------------------------
diff --git a/stack/core/src/main/java/org/apache/usergrid/persistence/query/tree/.gitignore b/stack/core/src/main/java/org/apache/usergrid/persistence/query/tree/.gitignore
deleted file mode 100644
index 65eb766..0000000
--- a/stack/core/src/main/java/org/apache/usergrid/persistence/query/tree/.gitignore
+++ /dev/null
@@ -1,2 +0,0 @@
-/QueryFilterLexer.java
-/QueryFilterParser.java

http://git-wip-us.apache.org/repos/asf/incubator-usergrid/blob/d184e80d/stack/pom.xml
----------------------------------------------------------------------
diff --git a/stack/pom.xml b/stack/pom.xml
index 6c50106..c7cf26d 100644
--- a/stack/pom.xml
+++ b/stack/pom.xml
@@ -1760,6 +1760,7 @@
                     <exclude>**/CHANGES.txt</exclude>
                     <exclude>**/*.json</exclude>
                     <exclude>**/*.log</exclude>
+                    <exclude>**/*.md5</exclude>
 
                     <!-- git and IDE project files -->
                     <exclude>**/.git/**</exclude>