From f5f12223281e1ed6c6f90d92dfe09bfca07e2a70 Mon Sep 17 00:00:00 2001 From: Justin Mclean Date: Thu, 27 Feb 2025 17:11:07 +0800 Subject: [PATCH] [MINOR] Move to using standard DISCLAIMER (#6565) ### 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 --- 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(-) create mode 100644 DISCLAIMER.txt delete mode 100644 DISCLAIMER_WIP.txt diff --git a/DISCLAIMER.txt b/DISCLAIMER.txt new file mode 100644 index 00000000000..7ead1cc17ca --- /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 has yet to be fully endorsed by the ASF. \ No newline at end of file diff --git a/DISCLAIMER_WIP.txt b/DISCLAIMER_WIP.txt deleted file mode 100644 index 215c6d925d8..00000000000 --- 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 the project has yet to be fully endorsed by the ASF. - -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 1c2a43bf2ef..c0d27f38eec 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -621,7 +621,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", "") @@ -667,7 +667,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", "") @@ -686,7 +686,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 e3699a9b765..3a2ca3ab615 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 29ec663e7d8..436085a083c 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") } }