kou commented on PR #46108: URL: https://github.com/apache/arrow/pull/46108#issuecomment-2800349711
> I am testing this in #46076 and getting errors because the repo files still point to repo1.a.o but I guess that's expected because we have to regenerate the list? Right. We need to rebuild `apache-arrow-apt-source`/`apache-arrow-release` packages for 20.0.0 because they include repository URLs. I'll test the current verify scripts with 20.0.0 RC0 packages before we merge this: ```diff diff --git a/dev/release/verify-apt.sh b/dev/release/verify-apt.sh index 02296c2079..90c171e906 100755 --- a/dev/release/verify-apt.sh +++ b/dev/release/verify-apt.sh @@ -131,7 +131,7 @@ else rc) sed \ -i"" \ - -e "s,^URIs: \\(.*\\)/,URIs: \\1-${suffix}/,g" \ + -e "s,^URIs: https://repo1.maven.org/maven2/org/apache/arrow/${distribution},URIs: ${artifactory_base_url}/,g" \ /etc/apt/sources.list.d/apache-arrow.sources ;; esac ``` ```diff diff --git a/dev/release/verify-yum.sh b/dev/release/verify-yum.sh index 8691e538ec..d1d4b25574 100755 --- a/dev/release/verify-yum.sh +++ b/dev/release/verify-yum.sh @@ -179,6 +179,7 @@ else suffix=${TYPE%-release} sed \ -i"" \ + -e "s,https://repo1.maven.org/maven2/org/apache/arrow,${artifactory_base_url},g" \ -e "s,/almalinux/,/almalinux-${suffix}/,g" \ -e "s,/centos/,/centos-${suffix}/,g" \ -e "s,/amazon-linux/,/amazon-linux-${suffix}/,g" \ ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org