ppp-sync/rocm.sh

63 lines
1.7 KiB
Bash
Raw Normal View History

2023-08-24 15:46:51 +02:00
#! /bin/bash
set -e
2023-08-24 19:41:42 +02:00
# Give correct perms to Apt version checker
chmod 755 ./ppp
2023-08-24 15:46:51 +02:00
# ROCm MIRROR
mkdir -p ./output/rocm
cd ./output/rocm
2023-08-24 19:32:13 +02:00
# temp
apt update
apt upgrade -y
# end of temp
2023-08-24 19:41:42 +02:00
#Get rid of Pika sources to prevent conflicts
2023-08-24 19:26:03 +02:00
rm -rf /etc/apt/sources.list.d/pika*
rm -rf /etc/apt/preferences.d/*pika*
2023-08-24 19:41:42 +02:00
# Get ROCm pool
2023-08-31 18:11:06 +02:00
echo 'deb [arch=amd64 trusted=yes] https://repo.radeon.com/rocm/apt/5.6.1 jammy main' | sudo tee /etc/apt/sources.list.d/rocm.list
2023-08-24 19:51:41 +02:00
wget -O - http://repo.radeon.com/rocm/rocm.gpg.key | apt-key add -
apt update -y
2023-08-24 19:41:42 +02:00
2023-08-31 18:11:06 +02:00
PPP=$(../../ppp https://ppa.pika-os.com/dists/lunar/rocm/binary-amd64/Packages http://repo.radeon.com/rocm/apt/5.6.1/dists/jammy/main/binary-amd64/Packages)
2023-08-24 20:26:18 +02:00
2023-08-24 22:08:10 +02:00
if [ ! -z "$PPP" ]
2023-08-24 19:58:27 +02:00
then
2023-08-28 15:00:29 +02:00
apt download $PPP -y --target-release 'o=repo.radeon.com'
2023-08-24 19:58:27 +02:00
else
echo "Repos are synced"
exit 0
fi
2023-08-24 20:26:18 +02:00
2023-08-24 15:46:51 +02:00
# Return to ROCm MIRROR
cd ../
mkdir -p ./output
find . -name \*.deb -exec cp -vf {} ./output \;
# Sign the packages
2023-08-24 16:02:06 +02:00
dpkg-sig --sign builder ./output/*.deb
2023-08-24 15:46:51 +02:00
# Pull down existing ppa repo db files etc
2023-08-24 16:02:06 +02:00
rsync -azP --exclude '*.deb' ferreo@direct.pika-os.com:/srv/www/pikappa/ ./output/repo
2023-08-24 15:46:51 +02:00
# Check if the rocm component exists
2023-08-24 16:02:06 +02:00
if cat ./output/repo/conf/distributions | grep Components: | grep rocm
then
true
else
sed -i "s#Components:#Components: rocm#" ./output/repo/conf/distributions
fi
2023-08-24 15:46:51 +02:00
2023-08-28 14:17:35 +02:00
apt remove reprepro -y
wget -nv https://launchpad.net/ubuntu/+archive/primary/+files/reprepro_5.3.0-1.4_amd64.deb
apt install -y ./reprepro_5.3.0-1.4_amd64.deb
2023-08-24 15:46:51 +02:00
# Add the new package to the repo
2023-08-24 16:02:06 +02:00
reprepro -C rocm -V --basedir ./output/repo/ includedeb lunar ./output/*.deb
2023-08-24 15:46:51 +02:00
# Push the updated ppa repo to the server
2023-08-24 16:02:06 +02:00
rsync -azP ./output/repo/ ferreo@direct.pika-os.com:/srv/www/pikappa/