2023-08-24 15:46:51 +02:00
|
|
|
#! /bin/bash
|
|
|
|
set -e
|
|
|
|
|
|
|
|
# ROCm MIRROR
|
|
|
|
mkdir -p ./output/rocm
|
|
|
|
cd ./output/rocm
|
|
|
|
# Get ROCm pool
|
2023-08-24 15:50:38 +02:00
|
|
|
wget --recursive --no-parent -R "*20.04*.deb" -A "*" -m "http://repo.radeon.com/rocm/apt/5.6/pool/main/"
|
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
|
|
|
|
|
|
|
# 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/
|