This is an automated email from the ASF dual-hosted git repository. jshao pushed a commit to branch branch-0.8 in repository https://gitbox.apache.org/repos/asf/gravitino.git
The following commit(s) were added to refs/heads/branch-0.8 by this push: new d218679182 [MINOR] Move to using standard DISCLAIMER (#6565) (Cherrypick) (#6755) d218679182 is described below commit d218679182d841e838a812dd9ec66d9e7d5043b1 Author: Justin Mclean <jus...@classsoftware.com> AuthorDate: Fri Mar 28 01:52:07 2025 +0800 [MINOR] Move to using standard DISCLAIMER (#6565) (Cherrypick) (#6755) ### What changes were proposed in this pull request? Use standard disclaimer text and file name. ### Why are the changes needed? To comply with ASF policy. Fix: #(issue) ### Does this PR introduce _any_ user-facing change? No. ### How was this patch tested? N/A Co-authored-by: Jerry Shao <jerrys...@datastrato.com> --- DISCLAIMER.txt | 1 + DISCLAIMER_WIP.txt | 6 ------ build.gradle.kts | 6 +++--- clients/client-python/MANIFEST.in | 2 +- clients/client-python/build.gradle.kts | 4 ++-- 5 files changed, 7 insertions(+), 12 deletions(-) diff --git a/DISCLAIMER.txt b/DISCLAIMER.txt new file mode 100644 index 0000000000..7ead1cc17c --- /dev/null +++ b/DISCLAIMER.txt @@ -0,0 +1 @@ +Apache Gravitino is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored by the ASF Incubator. 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 [...] \ No newline at end of file diff --git a/DISCLAIMER_WIP.txt b/DISCLAIMER_WIP.txt deleted file mode 100644 index 215c6d925d..0000000000 --- a/DISCLAIMER_WIP.txt +++ /dev/null @@ -1,6 +0,0 @@ -Apache Gravitino is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored by the name of Apache TLP sponsor. 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 [...] - -Some of the incubating project’s releases may not be fully compliant with ASF policy and while we have documented the licensing of all code in detail, we know that currently our release would: -- Contains code that may not be compatible with the Apache License - -If you are planning to incorporate this work into your product/project, please be aware that you will need to conduct a thorough licensing review to determine the overall implications of including this work. For the current status of this project through the Apache Incubator, visit: https://incubator.apache.org/projects/gravitino.html diff --git a/build.gradle.kts b/build.gradle.kts index 1fe3c80d9b..019002c461 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -614,7 +614,7 @@ tasks { from(projectDir.file("LICENSE.bin")) { into("package") } from(projectDir.file("NOTICE.bin")) { into("package") } from(projectDir.file("README.md")) { into("package") } - from(projectDir.file("DISCLAIMER_WIP.txt")) { into("package") } + from(projectDir.file("DISCLAIMER.txt")) { into("package") } into(outputDir) rename { fileName -> fileName.replace(".bin", "") @@ -660,7 +660,7 @@ tasks { from(projectDir.file("LICENSE.rest")) { into("${rootProject.name}-iceberg-rest-server") } from(projectDir.file("NOTICE.rest")) { into("${rootProject.name}-iceberg-rest-server") } from(projectDir.file("README.md")) { into("${rootProject.name}-iceberg-rest-server") } - from(projectDir.file("DISCLAIMER_WIP.txt")) { into("${rootProject.name}-iceberg-rest-server") } + from(projectDir.file("DISCLAIMER.txt")) { into("${rootProject.name}-iceberg-rest-server") } into(outputDir) rename { fileName -> fileName.replace(".rest", "") @@ -679,7 +679,7 @@ tasks { from(projectDir.file("LICENSE.trino")) { into("${rootProject.name}-trino-connector") } from(projectDir.file("NOTICE.trino")) { into("${rootProject.name}-trino-connector") } from(projectDir.file("README.md")) { into("${rootProject.name}-trino-connector") } - from(projectDir.file("DISCLAIMER_WIP.txt")) { into("${rootProject.name}-trino-connector") } + from(projectDir.file("DISCLAIMER.txt")) { into("${rootProject.name}-trino-connector") } into(outputDir) rename { fileName -> fileName.replace(".trino", "") diff --git a/clients/client-python/MANIFEST.in b/clients/client-python/MANIFEST.in index e3699a9b76..3a2ca3ab61 100644 --- a/clients/client-python/MANIFEST.in +++ b/clients/client-python/MANIFEST.in @@ -21,6 +21,6 @@ include requirements-dev.txt include README.md include LICENSE include NOTICE -include DISCLAIMER_WIP.txt +include DISCLAIMER.txt include gravitino/version.ini graft licenses diff --git a/clients/client-python/build.gradle.kts b/clients/client-python/build.gradle.kts index 29ec663e7d..436085a083 100644 --- a/clients/client-python/build.gradle.kts +++ b/clients/client-python/build.gradle.kts @@ -285,7 +285,7 @@ tasks { generatePypiProjectHomePage() delete("dist") copy { - from("${project.rootDir}/DISCLAIMER_WIP.txt") { into("./") } + from("${project.rootDir}/DISCLAIMER.txt") { into("./") } into("${project.rootDir}/clients/client-python") rename { fileName -> fileName.replace(".bin", "") @@ -298,7 +298,7 @@ tasks { doLast { delete("README.md") - delete("DISCLAIMER_WIP.txt") + delete("DISCLAIMER.txt") } }