Skip to content

Commit f5f1222

Browse files
authored
[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
1 parent acf57ad commit f5f1222

File tree

5 files changed

+7
-12
lines changed

5 files changed

+7
-12
lines changed

DISCLAIMER.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
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.

DISCLAIMER_WIP.txt

-6
This file was deleted.

build.gradle.kts

+3-3
Original file line numberDiff line numberDiff line change
@@ -621,7 +621,7 @@ tasks {
621621
from(projectDir.file("LICENSE.bin")) { into("package") }
622622
from(projectDir.file("NOTICE.bin")) { into("package") }
623623
from(projectDir.file("README.md")) { into("package") }
624-
from(projectDir.file("DISCLAIMER_WIP.txt")) { into("package") }
624+
from(projectDir.file("DISCLAIMER.txt")) { into("package") }
625625
into(outputDir)
626626
rename { fileName ->
627627
fileName.replace(".bin", "")
@@ -667,7 +667,7 @@ tasks {
667667
from(projectDir.file("LICENSE.rest")) { into("${rootProject.name}-iceberg-rest-server") }
668668
from(projectDir.file("NOTICE.rest")) { into("${rootProject.name}-iceberg-rest-server") }
669669
from(projectDir.file("README.md")) { into("${rootProject.name}-iceberg-rest-server") }
670-
from(projectDir.file("DISCLAIMER_WIP.txt")) { into("${rootProject.name}-iceberg-rest-server") }
670+
from(projectDir.file("DISCLAIMER.txt")) { into("${rootProject.name}-iceberg-rest-server") }
671671
into(outputDir)
672672
rename { fileName ->
673673
fileName.replace(".rest", "")
@@ -686,7 +686,7 @@ tasks {
686686
from(projectDir.file("LICENSE.trino")) { into("${rootProject.name}-trino-connector") }
687687
from(projectDir.file("NOTICE.trino")) { into("${rootProject.name}-trino-connector") }
688688
from(projectDir.file("README.md")) { into("${rootProject.name}-trino-connector") }
689-
from(projectDir.file("DISCLAIMER_WIP.txt")) { into("${rootProject.name}-trino-connector") }
689+
from(projectDir.file("DISCLAIMER.txt")) { into("${rootProject.name}-trino-connector") }
690690
into(outputDir)
691691
rename { fileName ->
692692
fileName.replace(".trino", "")

clients/client-python/MANIFEST.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ include requirements-dev.txt
2121
include README.md
2222
include LICENSE
2323
include NOTICE
24-
include DISCLAIMER_WIP.txt
24+
include DISCLAIMER.txt
2525
include gravitino/version.ini
2626
graft licenses

clients/client-python/build.gradle.kts

+2-2
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ tasks {
285285
generatePypiProjectHomePage()
286286
delete("dist")
287287
copy {
288-
from("${project.rootDir}/DISCLAIMER_WIP.txt") { into("./") }
288+
from("${project.rootDir}/DISCLAIMER.txt") { into("./") }
289289
into("${project.rootDir}/clients/client-python")
290290
rename { fileName ->
291291
fileName.replace(".bin", "")
@@ -298,7 +298,7 @@ tasks {
298298

299299
doLast {
300300
delete("README.md")
301-
delete("DISCLAIMER_WIP.txt")
301+
delete("DISCLAIMER.txt")
302302
}
303303
}
304304

0 commit comments

Comments
 (0)