You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@edgent.apache.org by dl...@apache.org on 2016/11/10 20:35:47 UTC

[1/2] incubator-edgent git commit: [Edgent-280] tweak bundle READMEs

Repository: incubator-edgent
Updated Branches:
  refs/heads/release1.0.0 68c722c9c -> cfd046666


[Edgent-280] tweak bundle READMEs

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

Branch: refs/heads/release1.0.0
Commit: fd15b3784d9965d9e5472f0bc22492473f7d6cb6
Parents: 49384a5
Author: Dale LaBossiere <dl...@us.ibm.com>
Authored: Thu Nov 10 14:44:52 2016 -0500
Committer: Dale LaBossiere <dl...@us.ibm.com>
Committed: Thu Nov 10 14:44:52 2016 -0500

----------------------------------------------------------------------
 README                      | 32 ++++++++++++++++++++++++++++++++
 README-binary-release       | 17 +++++++++++++++++
 build.gradle                |  7 ++-----
 legal/binary-release-readme | 13 -------------
 legal/source-release-readme | 31 -------------------------------
 5 files changed, 51 insertions(+), 49 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-edgent/blob/fd15b378/README
----------------------------------------------------------------------
diff --git a/README b/README
new file mode 100644
index 0000000..8c3717f
--- /dev/null
+++ b/README
@@ -0,0 +1,32 @@
+Building Edgent from a Source Distribution
+
+Apache Edgent is an effort undergoing incubation at The Apache Software Foundation (ASF),
+sponsored by the Incubator PMC. 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. 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.
+
+Apache Edgent is released under the Apache License Version 2.0.
+
+Apache Edgent is supported on several Java target platforms.
+For more information see JAVA_SUPPORT.md in the source tree
+or in the ASF git repository https://git-wip-us.apache.org/repos/asf/incubator-edgent.git
+or in the repository mirror at github https://github.com/apache/incubator-edgent.
+
+Pre-requisites:
+- Java 8 is required to build an Edgent binary distribution
+
+Build an Edgent binary distribution:
+$ ./gradlew release   # .\gradlew.bat on Windows
+
+The build reports the location of the binary distribution bundle that can then
+be unpacked and used in building applications.
+
+See Getting Started https://edgent.apache.org/docs/edgent-getting-started
+
+For more information about the Edgent sources, testing, and
+contributing to Edgent runtime development see DEVELOPMENT.md in the source tree
+or in the ASF git repository https://git-wip-us.apache.org/repos/asf/incubator-edgent.git
+or in the repository mirror at github https://github.com/apache/incubator-edgent.

http://git-wip-us.apache.org/repos/asf/incubator-edgent/blob/fd15b378/README-binary-release
----------------------------------------------------------------------
diff --git a/README-binary-release b/README-binary-release
new file mode 100644
index 0000000..3edba57
--- /dev/null
+++ b/README-binary-release
@@ -0,0 +1,17 @@
+
+Apache Edgent is an effort undergoing incubation at The Apache Software Foundation (ASF),
+sponsored by the Incubator PMC. 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. 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.
+
+Apache Edgent is released under the Apache License Version 2.0.
+
+Apache Edgent is supported on several Java target platforms.
+For more information see JAVA_SUPPORT.md 
+
+See Getting Started https://edgent.apache.org/docs/edgent-getting-started for
+information about using this binary release to develop applications that
+use Edgent.

http://git-wip-us.apache.org/repos/asf/incubator-edgent/blob/fd15b378/build.gradle
----------------------------------------------------------------------
diff --git a/build.gradle b/build.gradle
index a6ef819..ac3e59a 100644
--- a/build.gradle
+++ b/build.gradle
@@ -715,7 +715,7 @@ task releaseTarGz(type: Tar) {
   from 'DISCLAIMER', 'JAVA_SUPPORT.md'
   with copySpec {
     rename { 'README' }
-    from rootProject.file('legal/binary-release-readme')
+    from rootProject.file('README-binary-release')
   }
   from 'RELEASE_NOTES'
   from "$target_dir/version.txt"
@@ -740,10 +740,7 @@ task srcReleaseTarGz(type: Tar) {
   from 'LICENSE', 'NOTICE'
   from 'DISCLAIMER', 'JAVA_SUPPORT.md'
   from 'RELEASE_NOTES'
-  with copySpec {
-    rename { 'README' }
-    from rootProject.file('legal/source-release-readme')
-  }
+  from 'README'
   exclude 'README.md'
   from 'DEVELOPMENT.md'
   from '.'

http://git-wip-us.apache.org/repos/asf/incubator-edgent/blob/fd15b378/legal/binary-release-readme
----------------------------------------------------------------------
diff --git a/legal/binary-release-readme b/legal/binary-release-readme
deleted file mode 100644
index dbaa993..0000000
--- a/legal/binary-release-readme
+++ /dev/null
@@ -1,13 +0,0 @@
-
-Apache Edgent is an effort undergoing incubation at The Apache Software Foundation (ASF),
-sponsored by the Incubator PMC. 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. 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.
-
-Apache Edgent is supported on several Java target platforms.
-For more information see JAVA_SUPPORT.md 
-
-See Getting Started https://edgent.apache.org/docs/edgent-getting-started

http://git-wip-us.apache.org/repos/asf/incubator-edgent/blob/fd15b378/legal/source-release-readme
----------------------------------------------------------------------
diff --git a/legal/source-release-readme b/legal/source-release-readme
deleted file mode 100644
index c45c10a..0000000
--- a/legal/source-release-readme
+++ /dev/null
@@ -1,31 +0,0 @@
-Building Edgent from a Source Distribution
-
-Apache Edgent is an effort undergoing incubation at The Apache Software Foundation (ASF),
-sponsored by the Incubator PMC. 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. 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.
-
-Apache Edgent is supported on several Java target platforms.
-For more information see JAVA_SUPPORT.md in the source tree
-or in the ASF git repository https://git-wip-us.apache.org/repos/asf/incubator-edgent.git
-or in the repository mirror at github https://github.com/apache/incubator-edgent.
-
-Pre-requisites:
-- Java 8 is required to build an Edgent binary distribution
-
-Build an Edgent binary distribution:
-$ cd edgent           # the root of your Edgent source tree
-$ ./gradlew release   # .\gradlew.bat on Windows
-
-The build reports the location of the binary distribution bundle that can then
-be unpacked and used in building applications.
-
-See Getting Started https://edgent.apache.org/docs/edgent-getting-started
-
-For more information about the Edgent sources, testing, and
-contributing to Edgent runtime development see DEVELOPMENT.md in the source tree
-or in the ASF git repository https://git-wip-us.apache.org/repos/asf/incubator-edgent.git
-or in the repository mirror at github https://github.com/apache/incubator-edgent.
\ No newline at end of file


[2/2] incubator-edgent git commit: Merge pull request #232

Posted by dl...@apache.org.
Merge pull request #232

This closes #232


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

Branch: refs/heads/release1.0.0
Commit: cfd046666497ea7fce90526a833ab74e0b0606e1
Parents: 68c722c fd15b37
Author: Dale LaBossiere <dl...@us.ibm.com>
Authored: Thu Nov 10 15:35:41 2016 -0500
Committer: Dale LaBossiere <dl...@us.ibm.com>
Committed: Thu Nov 10 15:35:41 2016 -0500

----------------------------------------------------------------------
 README                      | 32 ++++++++++++++++++++++++++++++++
 README-binary-release       | 17 +++++++++++++++++
 build.gradle                |  7 ++-----
 legal/binary-release-readme | 13 -------------
 legal/source-release-readme | 31 -------------------------------
 5 files changed, 51 insertions(+), 49 deletions(-)
----------------------------------------------------------------------