You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@systemml.apache.org by de...@apache.org on 2016/11/18 17:12:51 UTC

incubator-systemml git commit: [SYSTEMML-1084] Change .tar.gz artifact extensions to .tgz

Repository: incubator-systemml
Updated Branches:
  refs/heads/master 19a97e251 -> b8596f823


[SYSTEMML-1084] Change .tar.gz artifact extensions to .tgz

Use Apache parent pom assembly plugin version.
Update artifact .tar.gz extensions to .tgz
Change .tar.gz references to .tgz in Release Process document.
Remove tar.gz references from Engine Dev Guide and Beginner's Guide.

Closes #283.


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

Branch: refs/heads/master
Commit: b8596f823b54c17e79b00b96af3af14d043cebc5
Parents: 19a97e2
Author: Deron Eriksson <de...@us.ibm.com>
Authored: Fri Nov 18 09:04:34 2016 -0800
Committer: Deron Eriksson <de...@us.ibm.com>
Committed: Fri Nov 18 09:04:34 2016 -0800

----------------------------------------------------------------------
 docs/beginners-guide-to-dml-and-pydml.md |  2 +-
 docs/engine-dev-guide.md                 |  2 +-
 docs/release-process.md                  | 32 +++++++++++++--------------
 pom.xml                                  |  3 ---
 src/assembly/distrib.xml                 |  2 +-
 src/assembly/source.xml                  |  2 +-
 src/assembly/standalone.xml              |  4 ++--
 7 files changed, 22 insertions(+), 25 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-systemml/blob/b8596f82/docs/beginners-guide-to-dml-and-pydml.md
----------------------------------------------------------------------
diff --git a/docs/beginners-guide-to-dml-and-pydml.md b/docs/beginners-guide-to-dml-and-pydml.md
index a5374e7..67f1c96 100644
--- a/docs/beginners-guide-to-dml-and-pydml.md
+++ b/docs/beginners-guide-to-dml-and-pydml.md
@@ -50,7 +50,7 @@ DML and PyDML scripts can be invoked in a variety of ways. Suppose that we have
 
 	print('hello ' + $1)
 
-One way to begin working with SystemML is to [download a standalone tar.gz or zip distribution of SystemML](http://systemml.apache.org/download.html)
+One way to begin working with SystemML is to [download a standalone distribution of SystemML](http://systemml.apache.org/download.html)
 and use the `runStandaloneSystemML.sh` and `runStandaloneSystemML.bat` scripts to run SystemML in standalone
 mode. The name of the DML or PyDML script
 is passed as the first argument to these scripts, along with a variety of arguments.

http://git-wip-us.apache.org/repos/asf/incubator-systemml/blob/b8596f82/docs/engine-dev-guide.md
----------------------------------------------------------------------
diff --git a/docs/engine-dev-guide.md b/docs/engine-dev-guide.md
index 4240408..5ee3999 100644
--- a/docs/engine-dev-guide.md
+++ b/docs/engine-dev-guide.md
@@ -33,7 +33,7 @@ To build SystemML, run:
 
     mvn clean package
 
-To build the SystemML distributions (`.tar.gz`, `.zip`, etc.), run:
+To build the SystemML distributions, run:
 
     mvn clean package -P distribution
 

http://git-wip-us.apache.org/repos/asf/incubator-systemml/blob/b8596f82/docs/release-process.md
----------------------------------------------------------------------
diff --git a/docs/release-process.md b/docs/release-process.md
index 5a65768..d734f4f 100644
--- a/docs/release-process.md
+++ b/docs/release-process.md
@@ -96,7 +96,7 @@ The test suite can be run using:
 <a href="#release-candidate-checklist">Up to Checklist</a>
 
 Validate that all of the binary artifacts can execute, including those artifacts packaged
-in other artifacts (in the tar.gz and zip artifacts).
+in other artifacts (in the tgz and zip artifacts).
 
 The build artifacts should be downloaded from [https://dist.apache.org/repos/dist/dev/incubator/systemml/](https://dist.apache.org/repos/dist/dev/incubator/systemml/) and these artifacts should be tested, as in
 this OS X example.
@@ -104,8 +104,8 @@ this OS X example.
 	# download artifacts
 	wget -r -nH -nd -np -R index.html* https://dist.apache.org/repos/dist/dev/incubator/systemml/0.11.0-incubating-rc1/
 
-	# verify standalone tar.gz works
-	tar -xvzf systemml-0.11.0-incubating-standalone.tar.gz
+	# verify standalone tgz works
+	tar -xvzf systemml-0.11.0-incubating-standalone.tgz
 	cd systemml-0.11.0-incubating-standalone
 	echo "print('hello world');" > hello.dml
 	./runStandaloneSystemML.sh hello.dml
@@ -118,7 +118,7 @@ this OS X example.
 	java -cp ./lib/*:systemml-0.11.0-incubating.jar org.apache.sysml.api.DMLScript -s "print('hello world');"
 
 	# verify src works
-	tar -xvzf systemml-0.11.0-incubating-src.tar.gz
+	tar -xvzf systemml-0.11.0-incubating-src.tgz
 	cd systemml-0.11.0-incubating-src
 	mvn clean package -P distribution
 	cd target/
@@ -127,8 +127,8 @@ this OS X example.
 	cd ..
 	cd ..
 
-	# verify distrib tar.gz works
-	tar -xvzf systemml-0.11.0-incubating.tar.gz
+	# verify distrib tgz works
+	tar -xvzf systemml-0.11.0-incubating.tgz
 	cd systemml-0.11.0-incubating
 	java -cp ../lib/*:SystemML.jar org.apache.sysml.api.DMLScript -s "print('hello world');"
 
@@ -155,7 +155,7 @@ sanity check on OS X after building the artifacts manually.
 	java -cp ./lib/*:SystemML.jar org.apache.sysml.api.DMLScript -s "print('hello world');"
 
 	# verify src works
-	tar -xvzf systemml-0.11.0-incubating-src.tar.gz
+	tar -xvzf systemml-0.11.0-incubating-src.tgz
 	cd systemml-0.11.0-incubating-src
 	mvn clean package -P distribution
 	cd target/
@@ -164,15 +164,15 @@ sanity check on OS X after building the artifacts manually.
 	cd ..
 	cd ..
 
-	# verify standalone tar.gz works
-	tar -xvzf systemml-0.11.0-incubating-standalone.tar.gz
+	# verify standalone tgz works
+	tar -xvzf systemml-0.11.0-incubating-standalone.tgz
 	cd systemml-0.11.0-incubating-standalone
 	echo "print('hello world');" > hello.dml
 	./runStandaloneSystemML.sh hello.dml
 	cd ..
 
-	# verify distrib tar.gz works
-	tar -xvzf systemml-0.11.0-incubating.tar.gz
+	# verify distrib tgz works
+	tar -xvzf systemml-0.11.0-incubating.tgz
 	cd systemml-0.11.0-incubating
 	java -cp ../lib/*:SystemML.jar org.apache.sysml.api.DMLScript -s "print('hello world');"
 
@@ -205,11 +205,11 @@ For more information, see:
 
 <a href="#release-candidate-checklist">Up to Checklist</a>
 
-The project should be built using the `src` (tar.gz and zip) artifacts.
+The project should be built using the `src` (tgz and zip) artifacts.
 In addition, the test suite should be run using an `src` artifact and
 the tests should pass.
 
-	tar -xvzf systemml-0.11.0-incubating-src.tar.gz
+	tar -xvzf systemml-0.11.0-incubating-src.tgz
 	cd systemml-0.11.0-incubating-src
 	mvn clean package -P distribution
 	mvn verify
@@ -219,14 +219,14 @@ the tests should pass.
 
 <a href="#release-candidate-checklist">Up to Checklist</a>
 
-The standalone tar.gz and zip artifacts contain `runStandaloneSystemML.sh` and `runStandaloneSystemML.bat`
+The standalone tgz and zip artifacts contain `runStandaloneSystemML.sh` and `runStandaloneSystemML.bat`
 files. Verify that one or more algorithms can be run on a single node using these
 standalone distributions.
 
 Here is an example based on the [Standalone Guide](http://apache.github.io/incubator-systemml/standalone-guide.html)
 demonstrating the execution of an algorithm (on OS X).
 
-	$ tar -xvzf systemml-0.11.0-incubating-standalone.tar.gz
+	$ tar -xvzf systemml-0.11.0-incubating-standalone.tgz
 	$ cd systemml-0.11.0-incubating-standalone
 	$ wget -P data/ http://archive.ics.uci.edu/ml/machine-learning-databases/haberman/haberman.data
 	$ echo '{"rows": 306, "cols": 4, "format": "csv"}' > data/haberman.data.mtd
@@ -243,7 +243,7 @@ Verify that SystemML runs algorithms on Spark locally.
 
 Here is an example of running the `Univar-Stats.dml` algorithm on random generated data.
 
-	$ tar -xvzf systemml-0.11.0-incubating.tar.gz
+	$ tar -xvzf systemml-0.11.0-incubating.tgz
 	$ cd systemml-0.11.0-incubating
 	$ export SPARK_HOME=/Users/deroneriksson/spark-1.5.1-bin-hadoop2.6
 	$ $SPARK_HOME/bin/spark-submit SystemML.jar -f scripts/datagen/genRandData4Univariate.dml -exec hybrid_spark -args 1000000 100 10 1 2 3 4 uni.mtx

http://git-wip-us.apache.org/repos/asf/incubator-systemml/blob/b8596f82/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index f8a1ee1..59c7ef6 100644
--- a/pom.xml
+++ b/pom.xml
@@ -460,7 +460,6 @@
 
 			<plugin>
 				<artifactId>maven-assembly-plugin</artifactId>
-				<version>2.4</version><!--$NO-MVN-MAN-VER$-->
 				<configuration>
 					<tarLongFileMode>gnu</tarLongFileMode>
 				</configuration>
@@ -692,7 +691,6 @@
 				<plugins>
 					<plugin>
 						<artifactId>maven-assembly-plugin</artifactId>
-						<version>2.4</version><!--$NO-MVN-MAN-VER$-->
 						<configuration>
 							<tarLongFileMode>gnu</tarLongFileMode>
 						</configuration>
@@ -894,7 +892,6 @@
 				<plugins>
 					<plugin>
 						<artifactId>maven-assembly-plugin</artifactId>
-						<version>2.4</version><!--$NO-MVN-MAN-VER$-->
 						<configuration>
 							<tarLongFileMode>gnu</tarLongFileMode>
 						</configuration>

http://git-wip-us.apache.org/repos/asf/incubator-systemml/blob/b8596f82/src/assembly/distrib.xml
----------------------------------------------------------------------
diff --git a/src/assembly/distrib.xml b/src/assembly/distrib.xml
index 67a476a..35df092 100644
--- a/src/assembly/distrib.xml
+++ b/src/assembly/distrib.xml
@@ -24,7 +24,7 @@
 	<id>distrib</id>
 
 	<formats>
-		<format>tar.gz</format>
+		<format>tgz</format>
 		<format>zip</format>
 	</formats>
 

http://git-wip-us.apache.org/repos/asf/incubator-systemml/blob/b8596f82/src/assembly/source.xml
----------------------------------------------------------------------
diff --git a/src/assembly/source.xml b/src/assembly/source.xml
index 518bd3c..8831dd9 100644
--- a/src/assembly/source.xml
+++ b/src/assembly/source.xml
@@ -24,7 +24,7 @@
 	<id>src</id>
 
 	<formats>
-		<format>tar.gz</format>
+		<format>tgz</format>
 		<format>zip</format>
 	</formats>
 

http://git-wip-us.apache.org/repos/asf/incubator-systemml/blob/b8596f82/src/assembly/standalone.xml
----------------------------------------------------------------------
diff --git a/src/assembly/standalone.xml b/src/assembly/standalone.xml
index 4812a79..c4b9694 100644
--- a/src/assembly/standalone.xml
+++ b/src/assembly/standalone.xml
@@ -20,11 +20,11 @@
 	xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
 	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 	xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd">
-	<!-- Assembly file for the "standalone" tar.gz and zip SystemML releases for running on a standalone machine. -->
+	<!-- Assembly file for the "standalone" tgz and zip SystemML releases for running on a standalone machine. -->
 	<id>standalone</id>
 
 	<formats>
-		<format>tar.gz</format>
+		<format>tgz</format>
 		<format>zip</format>
 	</formats>