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

lidavidm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git


The following commit(s) were added to refs/heads/main by this push:
     new 85d0eb98e chore(dev/release): embed hash of source tarball into email 
(#3965)
85d0eb98e is described below

commit 85d0eb98e98c8307aa4bcb9dce03f0705dc34a07
Author: David Li <[email protected]>
AuthorDate: Fri Feb 13 09:12:07 2026 +0900

    chore(dev/release): embed hash of source tarball into email (#3965)
    
    Closes #3964.
---
 dev/release/06-binary-verify.sh | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/dev/release/06-binary-verify.sh b/dev/release/06-binary-verify.sh
index 473c166a4..435a29347 100755
--- a/dev/release/06-binary-verify.sh
+++ b/dev/release/06-binary-verify.sh
@@ -58,6 +58,11 @@ main() {
 
     set_resolved_issues "${RELEASE}"
 
+    # Embed source tarball hash into the email. Assume directory structure
+    # from 02-sign.sh.
+    local -r download_dir="packages/${tag}"
+    local -r SOURCE_TARBALL_HASH=$(cat $(find "${download_dir}" -type f -name 
"apache-arrow-adbc-${RELEASE}*.tar.gz.sha512") | awk '{print $1}')
+
     echo "The following draft email has been created to send to the"
     echo "[email protected] mailing list"
     echo ""
@@ -84,6 +89,10 @@ The subcomponents are versioned independently:
 This release candidate is based on commit: ${commit} [2]
 
 The source release rc${rc_number} is hosted at [3].
+This is not a permanent URL. If the RC is accepted, it will be moved to the 
final release location.
+The SHA512 hash of the source tarball is:
+${SOURCE_TARBALL_HASH}
+
 The binary artifacts are hosted at [4][5][6][7][8].
 The changelog is located at [9].
 

Reply via email to