amoeba commented on issue #42128: URL: https://github.com/apache/arrow/issues/42128#issuecomment-2164101716
I initially tried updating just the AppStream repo definition as mentioned in https://github.com/apache/arrow/issues/41401#issuecomment-2156194716 but it looks like all repo definitions need updating because a `yum update` gives me: ``` CentOS Stream 8 - BaseOS 81 B/s | 38 B 00:00 Error: Failed to download metadata for repo 'baseos': Cannot prepare internal mirrorlist: No URLs in mirrorlist ``` After updating all the repos to point to vault.centos.org, update works: ``` find /etc/yum.repos.d/ -type f -iname *repo | xargs sed -i 's/mirrorlist/#mirrorlist/' find /etc/yum.repos.d/ -type f -iname *repo | xargs sed -i 's/#baseurl/baseurl/' find /etc/yum.repos.d/ -type f -iname *repo | xargs sed -i 's/mirror.centos.org/vault.centos.org/' ``` However, when I try to install all the packages we need for the job, I find we're missing some: ``` Error: Unable to find a match: ccache json-devel re2-devel rapidjson-devel thrift-devel ``` I'm looking into that now. -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
