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/10/07 20:07:20 UTC

incubator-edgent git commit: Edgent-264 Add DISCLAIMER file

Repository: incubator-edgent
Updated Branches:
  refs/heads/master 17998f482 -> fca73b059


Edgent-264 Add DISCLAIMER file

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

Branch: refs/heads/master
Commit: fca73b059c62e00901bf48d92cc972868fedb7f5
Parents: 17998f4
Author: Dale LaBossiere <dl...@us.ibm.com>
Authored: Fri Oct 7 11:51:37 2016 -0400
Committer: Dale LaBossiere <dl...@us.ibm.com>
Committed: Fri Oct 7 11:51:37 2016 -0400

----------------------------------------------------------------------
 DISCLAIMER   | 8 ++++++++
 build.gradle | 7 +++----
 2 files changed, 11 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-edgent/blob/fca73b05/DISCLAIMER
----------------------------------------------------------------------
diff --git a/DISCLAIMER b/DISCLAIMER
new file mode 100644
index 0000000..8bcc295
--- /dev/null
+++ b/DISCLAIMER
@@ -0,0 +1,8 @@
+
+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.

http://git-wip-us.apache.org/repos/asf/incubator-edgent/blob/fca73b05/build.gradle
----------------------------------------------------------------------
diff --git a/build.gradle b/build.gradle
index 14b67b6..e0ff26c 100644
--- a/build.gradle
+++ b/build.gradle
@@ -686,7 +686,7 @@ task addMiscDistFiles(type: Copy) {
   addVersionDotTxt.mustRunAfter mkTargetDir
   
   into target_dir
-  from 'README.md'
+  from 'README.md', 'DISCLAIMER', 'KEYS'
   with copySpec {
     rename { 'LICENSE' }
     from rootProject.file('legal/binary-release-license')
@@ -709,8 +709,7 @@ task releaseTarGz(type: Tar) {
   duplicatesStrategy 'exclude'
   into "${build_name}"
   // make some things first in the tgz
-  from "$target_dir/LICENSE"
-  from "$target_dir/NOTICE"
+  from "$target_dir/LICENSE", "$target_dir/NOTICE", "$target_dir/DISCLAIMER", "$target_dir/KEYS"
   from "$target_dir/binary-release-bundled-dependencies"
   from "$target_dir/README.md"
   from "$target_dir/version.txt"
@@ -732,7 +731,7 @@ task srcReleaseTarGz(type: Tar) {
   duplicatesStrategy 'exclude'
   into "${build_name}"
   // make some things first in the tgz
-  from "LICENSE", "NOTICE", "KEYS"
+  from "LICENSE", "NOTICE", "DISCLAIMER", "KEYS"
   from "DEVELOPMENT.md", "README.md"
   from '.'
   exclude '.git', '.gradle', '.settings'