You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hugegraph.apache.org by ji...@apache.org on 2023/01/13 18:07:28 UTC

[incubator-hugegraph-commons] 02/04: chore: add DISCLAIMER & NOTICE & LICENSE file to binary package

This is an automated email from the ASF dual-hosted git repository.

jin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-hugegraph-commons.git

commit c28f8c8977864f8e6bfcb8d6090dd44a76005d36
Author: imbajin <ji...@apache.org>
AuthorDate: Fri Jan 6 23:10:35 2023 +0800

    chore: add DISCLAIMER & NOTICE & LICENSE file to binary package
---
 DISCLAIMER                               | 7 +++++++
 NOTICE                                   | 5 +++++
 hugegraph-dist/scripts/apache-release.sh | 3 ++-
 pom.xml                                  | 1 +
 4 files changed, 15 insertions(+), 1 deletion(-)

diff --git a/DISCLAIMER b/DISCLAIMER
new file mode 100644
index 0000000..be557e3
--- /dev/null
+++ b/DISCLAIMER
@@ -0,0 +1,7 @@
+Apache HugeGraph (incubating) is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored by the Apache 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.
diff --git a/NOTICE b/NOTICE
new file mode 100644
index 0000000..6be2560
--- /dev/null
+++ b/NOTICE
@@ -0,0 +1,5 @@
+Apache HugeGraph(incubating)
+Copyright 2022-2023 The Apache Software Foundation
+
+This product includes software developed at
+The Apache Software Foundation (http://www.apache.org/).
diff --git a/hugegraph-dist/scripts/apache-release.sh b/hugegraph-dist/scripts/apache-release.sh
index 3a4c800..66faae9 100755
--- a/hugegraph-dist/scripts/apache-release.sh
+++ b/hugegraph-dist/scripts/apache-release.sh
@@ -62,10 +62,11 @@ done
 ##### 3.2 Generate SHA512 file
 shasum --version 1>/dev/null || exit
 for i in *.tar.gz; do
-  echo "$i" && shasum -a 512 "$i" >"$i".sha512
+  shasum -a 512 "$i" | tee "$i".sha512
 done
 
 #### 3.3 check signature & sha512
+echo "#### start to check signature & hashcode ####"
 for i in *.tar.gz; do
   echo "$i"
   gpg --verify "$i".asc "$i" || exit
diff --git a/pom.xml b/pom.xml
index 9867723..8c02e76 100644
--- a/pom.xml
+++ b/pom.xml
@@ -232,6 +232,7 @@
                         <exclude>CONFIG.ini</exclude>
                         <exclude>GROUPS</exclude>
                         <exclude>OWNERS</exclude>
+                        <exclude>DISCLAIMER</exclude>
                         <!-- GitHub -->
                         <exclude>.github/**/*</exclude>
                         <!-- Intellij -->