You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ranger.apache.org by sn...@apache.org on 2017/01/25 22:20:17 UTC

ranger git commit: RANGER-1332: updated docs and scripts for removal of incubation

Repository: ranger
Updated Branches:
  refs/heads/master 1eb8938de -> 28d2ed14d


RANGER-1332: updated docs and scripts for removal of incubation


Project: http://git-wip-us.apache.org/repos/asf/ranger/repo
Commit: http://git-wip-us.apache.org/repos/asf/ranger/commit/28d2ed14
Tree: http://git-wip-us.apache.org/repos/asf/ranger/tree/28d2ed14
Diff: http://git-wip-us.apache.org/repos/asf/ranger/diff/28d2ed14

Branch: refs/heads/master
Commit: 28d2ed14d71185103168d407c5c2efb944fb44f0
Parents: 1eb8938
Author: Selvamohan Neethiraj <sn...@apache.org>
Authored: Wed Jan 25 17:01:35 2017 -0500
Committer: Selvamohan Neethiraj <sn...@apache.org>
Committed: Wed Jan 25 17:19:55 2017 -0500

----------------------------------------------------------------------
 DISCLAIMER.txt                           | 17 ++++-----------
 build_ranger_using_docker.sh             |  4 ++--
 docs/README.txt                          |  4 ++--
 docs/pom.xml                             | 30 +++++++++++++--------------
 docs/src/site/apt/index.apt.vm           |  2 +-
 docs/src/site/site.xml                   |  8 -------
 docs/src/site/xdoc/download.xml          |  8 +++----
 docs/src/site/xdoc/quick_start_guide.xml | 26 +++++++++++------------
 pom.xml                                  | 26 +++++++++++------------
 release-build.xml                        |  2 +-
 10 files changed, 55 insertions(+), 72 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ranger/blob/28d2ed14/DISCLAIMER.txt
----------------------------------------------------------------------
diff --git a/DISCLAIMER.txt b/DISCLAIMER.txt
index 4d8e175..b3bc204 100644
--- a/DISCLAIMER.txt
+++ b/DISCLAIMER.txt
@@ -1,15 +1,6 @@
-Apache Ranger is an effort undergoing incubation at the Apache Software 
-Foundation (ASF), sponsored by the Apache Incubator PMC. 
+Apache Ranger is a Top Level Project (TLP) at the Apache Software Foundation (ASF).
 
-Incubation is required of all newly accepted projects until a further review 
-indicates that the infrastructure, communications, and decision making process 
-have stabilized in a manner consistent with other successful ASF projects. 
+This product includes software developed at The Apache Software
+Foundation (http://www.apache.org/).
 
-While incubation status is not necessarily a reflection of the completeness 
-or stability of the code, it does indicate that the project has yet to be 
-fully endorsed by the ASF.
-
-For more information about the incubation status of the Apache Ranger project you
-can go to the following page:
-
-http://ranger.incubator.apache.org
+http://ranger.apache.org

http://git-wip-us.apache.org/repos/asf/ranger/blob/28d2ed14/build_ranger_using_docker.sh
----------------------------------------------------------------------
diff --git a/build_ranger_using_docker.sh b/build_ranger_using_docker.sh
index 4f4c185..fb72234 100755
--- a/build_ranger_using_docker.sh
+++ b/build_ranger_using_docker.sh
@@ -44,7 +44,7 @@ remote_home=
 container_name="--name ranger_build"
 
 if [ ! -d security-admin ]; then
-    echo "ERROR: Run the script from root folder of source. e.g. $HOME/git/incubator-ranger"
+    echo "ERROR: Run the script from root folder of source. e.g. $HOME/git/ranger"
     exit 1
 fi
 
@@ -116,4 +116,4 @@ src_folder=`pwd`
 LOCAL_M2="$HOME/.m2"
 mkdir -p $LOCAL_M2
 set -x
-docker run --rm  -v "${src_folder}:/incubator-ranger" -w "/incubator-ranger" -v "${LOCAL_M2}:${remote_home}/.m2" $container_name $image_name $params
+docker run --rm  -v "${src_folder}:/ranger" -w "/ranger" -v "${LOCAL_M2}:${remote_home}/.m2" $container_name $image_name $params

http://git-wip-us.apache.org/repos/asf/ranger/blob/28d2ed14/docs/README.txt
----------------------------------------------------------------------
diff --git a/docs/README.txt b/docs/README.txt
index d15551c..05edfb9 100644
--- a/docs/README.txt
+++ b/docs/README.txt
@@ -17,7 +17,7 @@
 # Build Instruction for Apache Ranger Documentation
 # ---------------------------------------------------------------------
 
-$ export DOC_SRC_DIR=incubator-ranger/docs
+$ export DOC_SRC_DIR=ranger/docs
 $ cd ${DOC_SRC_DIR}
 
 $ mvn site
@@ -29,7 +29,7 @@ $ mvn site
 
 DOC_DEPLOY_DIR=/tmp/doc_deploy_dir.$$
 mkdir -p ${DOC_DEPLOY_DIR}
-svn co https://svn.apache.org/repos/asf/incubator/ranger/site/trunk ranger
+svn co https://svn.apache.org/repos/asf/ranger/site/trunk ranger
 
 cd ${DOC_SRC_DIR}/target
 rsync -avcn * ${DOC_DEPLOY_DIR}/ranger

http://git-wip-us.apache.org/repos/asf/ranger/blob/28d2ed14/docs/pom.xml
----------------------------------------------------------------------
diff --git a/docs/pom.xml b/docs/pom.xml
index cc63bff..7677a72 100644
--- a/docs/pom.xml
+++ b/docs/pom.xml
@@ -21,9 +21,9 @@
         Apache Ranger is a framework to enable, monitor and manage comprehensive data security across the Hadoop platform. Apache Ranger currently provides a centralized security adminstration, fine grain access control and detailed auditing for user access within Apache Hadoop, Apache Hive, Apache HBase and other Apache components
         
     </description>
-    <url>http://ranger.incubator.apache.org/</url>
+    <url>http://ranger.apache.org/</url>
     <modelVersion>4.0.0</modelVersion>
-    <groupId>org.incubator.apache.ranger</groupId>
+    <groupId>org.apache.ranger</groupId>
     <version>0.7.0-SNAPSHOT</version>
     <artifactId>ranger</artifactId>
     <packaging>pom</packaging>
@@ -35,10 +35,10 @@
         </license>
     </licenses>
     <scm>
-        <connection>scm:svn:https://svn.apache.org/repos/asf/incubator/ranger/site/trunk</connection>
-        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/incubator/ranger/site/trunk</developerConnection>
+        <connection>scm:svn:https://svn.apache.org/repos/asf/ranger/site/trunk</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/ranger/site/trunk</developerConnection>
         <tag>HEAD</tag>
-        <url>http://svn.apache.org/repos/asf/incubator/ranger/site/trunk</url>
+        <url>http://svn.apache.org/repos/asf/ranger/site/trunk</url>
     </scm>
     <issueManagement>
         <system>Jira</system>
@@ -47,29 +47,29 @@
     <mailingLists>
         <mailingList>
             <name>User list</name>
-            <subscribe>mailto:user-subscribe@ranger.incubator.apache.org
+            <subscribe>mailto:user-subscribe@ranger.apache.org
             </subscribe>
-            <unsubscribe>mailto:user-unsubscribe@ranger.incubator.apache.org
+            <unsubscribe>mailto:user-unsubscribe@ranger.apache.org
             </unsubscribe>
-            <post>mailto:user@ranger.incubator.apache.org</post>
+            <post>mailto:user@ranger.apache.org</post>
             <archive>http://mail-archives.apache.org/mod_mbox/ranger-user/</archive>
         </mailingList>
         <mailingList>
             <name>Development list</name>
-            <subscribe>mailto:dev-subscribe@ranger.incubator.apache.org
+            <subscribe>mailto:dev-subscribe@ranger.apache.org
             </subscribe>
-            <unsubscribe>mailto:dev-unsubscribe@ranger.incubator.apache.org
+            <unsubscribe>mailto:dev-unsubscribe@ranger.apache.org
             </unsubscribe>
-            <post>mailto:dev@ranger.incubator.apache.org</post>
+            <post>mailto:dev@ranger.apache.org</post>
             <archive>http://mail-archives.apache.org/mod_mbox/ranger-dev/</archive>
         </mailingList>
         <mailingList>
             <name>Commit list</name>
-            <subscribe>mailto:commits-subscribe@ranger.incubator.apache.org
+            <subscribe>mailto:commits-subscribe@ranger.apache.org
             </subscribe>
-            <unsubscribe>mailto:commits-unsubscribe@ranger.incubator.apache.org
+            <unsubscribe>mailto:commits-unsubscribe@ranger.apache.org
             </unsubscribe>
-            <post>mailto:commits@ranger.incubator.apache.org</post>
+            <post>mailto:commits@ranger.apache.org</post>
             <archive>http://mail-archives.apache.org/mod_mbox/ranger-commits/</archive>
         </mailingList>
     </mailingLists>
@@ -460,7 +460,7 @@
         <site>
             <id>apache-website</id>
             <name>Apache website</name>
-            <url>scpexe://people.apache.org/www/incubator.apache.org/ranger</url>
+            <url>scpexe://people.apache.org/www/apache.org/ranger</url>
         </site>
     </distributionManagement>
 </project>

http://git-wip-us.apache.org/repos/asf/ranger/blob/28d2ed14/docs/src/site/apt/index.apt.vm
----------------------------------------------------------------------
diff --git a/docs/src/site/apt/index.apt.vm b/docs/src/site/apt/index.apt.vm
index 5e42bd6..5ce2cef 100644
--- a/docs/src/site/apt/index.apt.vm
+++ b/docs/src/site/apt/index.apt.vm
@@ -64,7 +64,7 @@ ${project.name}
   concern. Especially for fixing bugs it is crucial that the developers can reproduce your problem.
   
   Contributors can check out the source codefrom our
-  {{{http://git.apache.org/incubator-ranger.git/}Git repository}}
+  {{{http://git.apache.org/ranger.git/}Git repository}}
 
 * Disclaimer
 

http://git-wip-us.apache.org/repos/asf/ranger/blob/28d2ed14/docs/src/site/site.xml
----------------------------------------------------------------------
diff --git a/docs/src/site/site.xml b/docs/src/site/site.xml
index 39e7e05..d6a5e2a 100644
--- a/docs/src/site/site.xml
+++ b/docs/src/site/site.xml
@@ -36,14 +36,6 @@ under the License.
     <href></href>
 </bannerLeft>
 
-<bannerRight>
-	<name>Apache Incubator</name>
-    <src>http://incubator.apache.org/images/egg-logo.png</src>
-	<height>200px</height>
-	<width>400px</width>
-	<href>http://incubator.apache.org/</href>
-</bannerRight>
-
 <body>
     <menu name="Overview">
       <item name="Introduction" href="index.html"/>

http://git-wip-us.apache.org/repos/asf/ranger/blob/28d2ed14/docs/src/site/xdoc/download.xml
----------------------------------------------------------------------
diff --git a/docs/src/site/xdoc/download.xml b/docs/src/site/xdoc/download.xml
index 687d0db..4e178f1 100644
--- a/docs/src/site/xdoc/download.xml
+++ b/docs/src/site/xdoc/download.xml
@@ -34,9 +34,9 @@ LICENSE.txt and NOTICE.txt files contained in each release artifact.
 The current stable release is Apache Ranger 0.6.2:
 </p>
 <p>
-<a href="https://dist.apache.org/repos/dist/release/incubator/ranger/0.6.2-incubating/apache-ranger-incubating-0.6.2.tar.gz">apache-ranger-incubating-0.6.2.tar.gz</a>
-(<a href="https://dist.apache.org/repos/dist/release/incubator/ranger/0.6.2-incubating/apache-ranger-incubating-0.6.2.tar.gz.asc">PGP</a>)
-(<a href="https://dist.apache.org/repos/dist/release/incubator/ranger/0.6.2-incubating/apache-ranger-incubating-0.6.2.tar.gz.mds">Digests</a>)
+<a href="https://dist.apache.org/repos/dist/release/ranger/0.6.2-incubating/apache-ranger-incubating-0.6.2.tar.gz">apache-ranger-incubating-0.6.2.tar.gz</a>
+(<a href="https://dist.apache.org/repos/dist/release/ranger/0.6.2-incubating/apache-ranger-incubating-0.6.2.tar.gz.asc">PGP</a>)
+(<a href="https://dist.apache.org/repos/dist/release/ranger/0.6.2-incubating/apache-ranger-incubating-0.6.2.tar.gz.mds">Digests</a>)
 </p>
 </li>
 <li>
@@ -65,7 +65,7 @@ An older branch release is Apache Ranger 0.4.0:
 <p>
 When downloading from a mirror please check the SHA1/MD5 checksums as well
 as verifying the OpenPGP compatible signature available from the main Apache
-site. The <a href="https://www.apache.org/dist/incubator/ranger/KEYS">KEYS</a>
+site. The <a href="https://www.apache.org/dist/ranger/KEYS">KEYS</a>
 file contains the public keys used for signing the release. It is recommended
 that a web of trust is used to confirm the identity of these keys.
 </p>

http://git-wip-us.apache.org/repos/asf/ranger/blob/28d2ed14/docs/src/site/xdoc/quick_start_guide.xml
----------------------------------------------------------------------
diff --git a/docs/src/site/xdoc/quick_start_guide.xml b/docs/src/site/xdoc/quick_start_guide.xml
index 933ca12..bdfee7d 100644
--- a/docs/src/site/xdoc/quick_start_guide.xml
+++ b/docs/src/site/xdoc/quick_start_guide.xml
@@ -31,15 +31,15 @@
                 1. Check out the code from GIT repository
             </p>
             <ul>
-               <source>git clone https://git-wip-us.apache.org/repos/asf/incubator-ranger.git</source>
-               <source>cd incubator-ranger </source>
+               <source>git clone https://git-wip-us.apache.org/repos/asf/ranger.git</source>
+               <source>cd ranger </source>
             </ul>
             <p>
                 Alternatively, you can checkout the code from github:
             </p>
             <ul>
-               <source>git clone https://github.com/apache/incubator-ranger</source>
-               <source>cd incubator-ranger </source>
+               <source>git clone https://github.com/apache/ranger</source>
+               <source>cd ranger </source>
             </ul>
             
             <p>
@@ -92,30 +92,30 @@
             <p>
                5. Now, the following files are ready to be published for release:
                 <source>
-        ./target/apache-ranger-incubating-%version-number%.tar.gz
-        ./target/apache-ranger-incubating-%version-number%.tar.gz.asc
-        ./target/apache-ranger-incubating-%version-number%.tar.gz.mds
+        ./target/apache-ranger-%version-number%.tar.gz
+        ./target/apache-ranger-%version-number%.tar.gz.asc
+        ./target/apache-ranger-%version-number%.tar.gz.mds
                 </source>
             </p>
             </subsection>
 
         <subsection name = "Verifying Build (also called as a Release)">
             <p>
-                1. Download the release source file, apache-ranger-incubating-%version-number%.tar.gz  (from URL provided in the release email)
+                1. Download the release source file, apache-ranger-%version-number%.tar.gz  (from URL provided in the release email)
            
 			</p>
 			<p>
-            	2. Download the PGP signature for, apache-ranger-incubating-%version-number%.tar.gz which usaully named as apache-ranger-incubating-%version-number%.tar.gz.asc (from URL provided in the release email)
+            	2. Download the PGP signature for, apache-ranger-%version-number%.tar.gz which usaully named as apache-ranger-%version-number%.tar.gz.asc (from URL provided in the release email)
 			</p>
 			<p>
             	3. Execute the following command to verify the release
-        <source> $ gpg --verify apache-ranger-incubating-%version-number%.tar.gz.asc apache-ranger-incubating-%version-number%.tar.gz </source>
+        <source> $ gpg --verify apache-ranger-%version-number%.tar.gz.asc apache-ranger-%version-number%.tar.gz </source>
         
 			</p>
         <p>
-            4. Download MD5/SHA hash for apache-ranger-incubating-%version-number%.tar.gz which usaully named as apache-ranger-incubating-%version-number%.tar.gz.mds (from URL provided in the release email)
-            <source>$ gpg --print-mds apache-ranger-incubating-%version-number%.tar.gz </source>
-            Compare MD5, SHA hash generated from the above command and the signature available in the apache-ranger-incubating-%version-number%.tar.gz.mds.
+            4. Download MD5/SHA hash for apache-ranger-%version-number%.tar.gz which usaully named as apache-ranger-%version-number%.tar.gz.mds (from URL provided in the release email)
+            <source>$ gpg --print-mds apache-ranger-%version-number%.tar.gz </source>
+            Compare MD5, SHA hash generated from the above command and the signature available in the apache-ranger-%version-number%.tar.gz.mds.
         </p>
 
         </subsection>

http://git-wip-us.apache.org/repos/asf/ranger/blob/28d2ed14/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 2ad43d5..bb48ff0 100644
--- a/pom.xml
+++ b/pom.xml
@@ -27,7 +27,7 @@
     <description>Security for Enforcing Enterprise Policies</description>
     <packaging>pom</packaging>
     <name>ranger</name>
-    <url>http://ranger.incubator.apache.org/</url>
+    <url>http://ranger.apache.org/</url>
     <licenses>
         <license>
             <name>Apache 2.0 License</name>
@@ -36,9 +36,9 @@
         </license>
     </licenses>
     <scm>
-        <connection>scm:git:git@github.com:apache/incubator-ranger.git</connection>
-        <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/incubator-ranger.git</developerConnection>
-        <url>scm:git:git@github.com:apache/incubator-ranger.git</url>
+        <connection>scm:git:git@github.com:apache/ranger.git</connection>
+        <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/ranger.git</developerConnection>
+        <url>scm:git:git@github.com:apache/ranger.git</url>
         <tag>HEAD</tag>
     </scm>
     <issueManagement>
@@ -51,21 +51,21 @@
     <mailingLists>
         <mailingList>
             <name>Dev Mailing List</name>
-            <post>dev@ranger.incubator.apache.org</post>
-            <subscribe>dev-subscribe@ranger.incubator.apache.org</subscribe>
-            <unsubscribe>dev-unsubscribe@ranger.incubator.apache.org</unsubscribe>
+            <post>dev@ranger.apache.org</post>
+            <subscribe>dev-subscribe@ranger.apache.org</subscribe>
+            <unsubscribe>dev-unsubscribe@ranger.apache.org</unsubscribe>
         </mailingList>
         <mailingList>
             <name>User Mailing List</name>
-            <post>user@ranger.incubator.apache.org</post>
-            <subscribe>user-subscribe@ranger.incubator.apache.org</subscribe>
-            <unsubscribe>user-unsubscribe@ranger.incubator.apache.org</unsubscribe>
+            <post>user@ranger.apache.org</post>
+            <subscribe>user-subscribe@ranger.apache.org</subscribe>
+            <unsubscribe>user-unsubscribe@ranger.apache.org</unsubscribe>
         </mailingList>
         <mailingList>
             <name>Commits Mailing List</name>
-            <post>commits@ranger.incubator.apache.org</post>
-            <subscribe>commits-subscribe@ranger.incubator.apache.org</subscribe>
-            <unsubscribe>commits-unsubscribe@ranger.incubator.apache.org</unsubscribe>
+            <post>commits@ranger.apache.org</post>
+            <subscribe>commits-subscribe@ranger.apache.org</subscribe>
+            <unsubscribe>commits-unsubscribe@ranger.apache.org</unsubscribe>
         </mailingList>
     </mailingLists>
     <modules>

http://git-wip-us.apache.org/repos/asf/ranger/blob/28d2ed14/release-build.xml
----------------------------------------------------------------------
diff --git a/release-build.xml b/release-build.xml
index b968d85..8f0629d 100644
--- a/release-build.xml
+++ b/release-build.xml
@@ -21,7 +21,7 @@
     </description>
 	
     <property name="release-dir"  value="target" />
-    <property name="incubationstr" value="-incubating" />
+    <property name="incubationstr" value="" />     <!-- value="-incubating" -->
 	<property name="release-name" value="apache-ranger${incubationstr}-${ranger-release-version}" />
 
 	<property name="build-release-tar-file" value="${release-name}.tar.gz" />