This is an automated email from the ASF dual-hosted git repository. ebenizzy pushed a commit to branch burr-0.42.0-release-prep in repository https://gitbox.apache.org/repos/asf/burr.git
commit 69b5da0626761ecc69642d7ed1d902bb89cc493a Author: Elijah ben Izzy <[email protected]> AuthorDate: Sun Feb 1 21:28:27 2026 -0800 Add -src suffix to source release archive name Rename git archive from apache-burr-{version}-incubating.tar.gz to apache-burr-{version}-incubating-src.tar.gz to clearly distinguish the source archive from other artifacts in the release. --- scripts/README.md | 10 +++++----- scripts/apache_release.py | 4 ++-- scripts/verify_apache_artifacts.py | 4 ++-- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/scripts/README.md b/scripts/README.md index 5d9e79a0..3a07b126 100644 --- a/scripts/README.md +++ b/scripts/README.md @@ -120,7 +120,7 @@ wget https://downloads.apache.org/incubator/burr/KEYS gpg --import KEYS # Verify git archive signature -gpg --verify apache-burr-${VERSION}-incubating.tar.gz.asc apache-burr-${VERSION}-incubating.tar.gz +gpg --verify apache-burr-${VERSION}-incubating-src.tar.gz.asc apache-burr-${VERSION}-incubating-src.tar.gz # Verify sdist signature gpg --verify apache-burr-${VERSION}-incubating-sdist.tar.gz.asc apache-burr-${VERSION}-incubating-sdist.tar.gz @@ -129,13 +129,13 @@ gpg --verify apache-burr-${VERSION}-incubating-sdist.tar.gz.asc apache-burr-${VE gpg --verify apache_burr-${VERSION}-py3-none-any.whl.asc apache_burr-${VERSION}-py3-none-any.whl # 3. Verify all SHA512 checksums -echo "$(cat apache-burr-${VERSION}-incubating.tar.gz.sha512) apache-burr-${VERSION}-incubating.tar.gz" | sha512sum -c - +echo "$(cat apache-burr-${VERSION}-incubating-src.tar.gz.sha512) apache-burr-${VERSION}-incubating-src.tar.gz" | sha512sum -c - echo "$(cat apache-burr-${VERSION}-incubating-sdist.tar.gz.sha512) apache-burr-${VERSION}-incubating-sdist.tar.gz" | sha512sum -c - echo "$(cat apache_burr-${VERSION}-py3-none-any.whl.sha512) apache_burr-${VERSION}-py3-none-any.whl" | sha512sum -c - # 4. Extract the source archive -tar -xzf apache-burr-${VERSION}-incubating.tar.gz -cd apache-burr-${VERSION}-incubating/ +tar -xzf apache-burr-${VERSION}-incubating-src.tar.gz +cd apache-burr-${VERSION}-incubating-src/ # 5. Install build dependencies pip install flit @@ -216,7 +216,7 @@ python scripts/verify_apache_artifacts.py licenses --rat-jar apache-rat-0.15.jar python scripts/verify_apache_artifacts.py all --rat-jar apache-rat-0.15.jar # Inspect artifact contents -python scripts/verify_apache_artifacts.py list-contents dist/apache-burr-0.41.0.tar.gz +python scripts/verify_apache_artifacts.py list-contents dist/apache-burr-0.41.0-incubating-src.tar.gz python scripts/verify_apache_artifacts.py list-contents dist/apache_burr-0.41.0-py3-none-any.whl ``` diff --git a/scripts/apache_release.py b/scripts/apache_release.py index a33a7ab7..0c355ba6 100644 --- a/scripts/apache_release.py +++ b/scripts/apache_release.py @@ -343,9 +343,9 @@ def _create_git_archive(version: str, rc_num: str, output_dir: str = "dist") -> os.makedirs(output_dir, exist_ok=True) - archive_name = f"apache-burr-{version}-incubating.tar.gz" + archive_name = f"apache-burr-{version}-incubating-src.tar.gz" archive_path = os.path.join(output_dir, archive_name) - prefix = f"apache-burr-{version}-incubating/" + prefix = f"apache-burr-{version}-incubating-src/" _run_command( [ diff --git a/scripts/verify_apache_artifacts.py b/scripts/verify_apache_artifacts.py index 61228e7a..54350deb 100755 --- a/scripts/verify_apache_artifacts.py +++ b/scripts/verify_apache_artifacts.py @@ -24,7 +24,7 @@ Checks signatures, checksums, licenses, and archive integrity. Usage: # List contents of an artifact - python scripts/verify_apache_artifacts.py list-contents dist/apache-burr-0.41.0.tar.gz + python scripts/verify_apache_artifacts.py list-contents dist/apache-burr-0.41.0-incubating-src.tar.gz # Verify signatures and checksums python scripts/verify_apache_artifacts.py signatures @@ -653,7 +653,7 @@ def main(): epilog=""" Examples: # List contents of a specific artifact - python scripts/verify_apache_artifacts.py list-contents dist/apache-burr-0.41.0.tar.gz + python scripts/verify_apache_artifacts.py list-contents dist/apache-burr-0.41.0-incubating-src.tar.gz python scripts/verify_apache_artifacts.py list-contents dist/apache_burr-0.41.0-py3-none-any.whl # Verify signatures and checksums only
