This is an automated email from the ASF dual-hosted git repository. yao pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/spark.git
The following commit(s) were added to refs/heads/master by this push: new cafe74d49f21 [MINOR] rename the spark-connect-enabled tarball cafe74d49f21 is described below commit cafe74d49f214bfd3dd4425a9856edac08a0ed74 Author: Wenchen Fan <wenc...@databricks.com> AuthorDate: Tue Apr 22 11:45:56 2025 +0800 [MINOR] rename the spark-connect-enabled tarball ### What changes were proposed in this pull request? Looking at the 4.0 release tarballs, we have `pyspark_connect-4.0.0.tar.gz` and `spark-4.0.0-bin-hadoop3-spark-connect.tgz`. This PR replaces `spark-connect` with `connect` in the tarball file name to make them consistent. ### Why are the changes needed? consistency between release tarballs. ### Does this PR introduce _any_ user-facing change? no ### How was this patch tested? N/A ### Was this patch authored or co-authored using generative AI tooling? no Closes #50654 from cloud-fan/name. Authored-by: Wenchen Fan <wenc...@databricks.com> Signed-off-by: Kent Yao <y...@apache.org> --- dev/create-release/release-build.sh | 2 +- dev/make-distribution.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dev/create-release/release-build.sh b/dev/create-release/release-build.sh index 8d7206604155..d2a7e2b845f6 100755 --- a/dev/create-release/release-build.sh +++ b/dev/create-release/release-build.sh @@ -355,7 +355,7 @@ if [[ "$1" == "package" ]]; then if [[ -n $SPARK_CONNECT_FLAG ]]; then echo "Copying and signing Spark Connect binary distribution" - SPARK_CONNECT_DIST_NAME=spark-$SPARK_VERSION-bin-$NAME-spark-connect.tgz + SPARK_CONNECT_DIST_NAME=spark-$SPARK_VERSION-bin-$NAME-connect.tgz cp spark-$SPARK_VERSION-bin-$NAME/$SPARK_CONNECT_DIST_NAME . echo $GPG_PASSPHRASE | $GPG --passphrase-fd 0 --armour \ --output $SPARK_CONNECT_DIST_NAME.asc \ diff --git a/dev/make-distribution.sh b/dev/make-distribution.sh index 075e3685231d..39f6477e07c9 100755 --- a/dev/make-distribution.sh +++ b/dev/make-distribution.sh @@ -325,7 +325,7 @@ if [ "$MAKE_TGZ" == "true" ]; then $TAR -czf "spark-$VERSION-bin-$NAME.tgz" -C "$SPARK_HOME" "$TARDIR_NAME" rm -rf "$TARDIR" if [[ "$MAKE_SPARK_CONNECT" == "true" ]]; then - TARDIR_NAME=spark-$VERSION-bin-$NAME-spark-connect + TARDIR_NAME=spark-$VERSION-bin-$NAME-connect TARDIR="$SPARK_HOME/$TARDIR_NAME" rm -rf "$TARDIR" cp -r "$DISTDIR" "$TARDIR" --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org For additional commands, e-mail: commits-h...@spark.apache.org