2023-09-01 19:26:03 +02:00
|
|
|
#! /bin/bash
|
|
|
|
set -e
|
|
|
|
|
|
|
|
# Give correct perms to Apt version checker
|
|
|
|
chmod 755 ./ppp
|
|
|
|
|
|
|
|
# Extranal Oibaf PPA MIRROR
|
|
|
|
mkdir -p ./output/external
|
|
|
|
cd ./output/external
|
|
|
|
|
|
|
|
# temp
|
|
|
|
apt update
|
|
|
|
apt upgrade -y
|
|
|
|
# end of temp
|
|
|
|
|
|
|
|
#Get rid of Pika sources to prevent conflicts
|
|
|
|
rm -rf /etc/apt/sources.list.d/pika*
|
|
|
|
rm -rf /etc/apt/preferences.d/*pika*
|
|
|
|
|
|
|
|
# Get Extranal Oibaf PPA pool
|
2023-09-01 21:47:48 +02:00
|
|
|
echo 'deb [trusted=yes] https://ppa.launchpadcontent.net/oibaf/graphics-drivers/ubuntu lunar main' | sudo tee /etc/apt/sources.list.d/external.list
|
2023-09-01 19:26:03 +02:00
|
|
|
|
2023-09-01 19:49:13 +02:00
|
|
|
PPP32=$(../../ppp https://ppa.pika-os.com/dists/lunar/external/binary-i386/Packages https://ppa.launchpadcontent.net/oibaf/graphics-drivers/ubuntu/dists/lunar/main/binary-i386/Packages.xz | tr ' ' '\n' | grep -E 'meson|16|15|spirv|directx-headers|libdrm' | tr '\n' ' ')
|
|
|
|
if [ ! -z "$PPP32" ]
|
|
|
|
then
|
|
|
|
dpkg --add-architecture i386
|
|
|
|
apt update -o APT::Architecture="i386" -o APT::Architectures="i386" -y --allow-unauthenticated
|
2023-09-01 21:50:32 +02:00
|
|
|
apt download $PPP32 -o APT::Architecture="i386" -o APT::Architectures="i386" -y --target-release 'o=LP-PPA-oibaf-graphics-drivers'
|
2023-09-01 19:49:13 +02:00
|
|
|
rm -rfv ./*all.deb
|
|
|
|
else
|
|
|
|
echo "i386 Repos are synced"
|
|
|
|
fi
|
2023-09-01 19:26:03 +02:00
|
|
|
|
2023-09-01 19:49:13 +02:00
|
|
|
PPP64=$(../../ppp https://ppa.pika-os.com/dists/lunar/external/binary-amd64/Packages https://ppa.launchpadcontent.net/oibaf/graphics-drivers/ubuntu/dists/lunar/main/binary-amd64/Packages.xz | tr ' ' '\n' | grep -E 'meson|16|15|spirv|directx-headers|libdrm' | tr '\n' ' ')
|
|
|
|
if [ ! -z "$PPP64" ]
|
2023-09-01 19:26:03 +02:00
|
|
|
then
|
2023-09-01 19:49:13 +02:00
|
|
|
apt update -o APT::Architecture="amd64" -o APT::Architectures="amd64" -y --allow-unauthenticated
|
|
|
|
apt download $PPP64 -o APT::Architecture="amd64" -o APT::Architectures="amd64" -y --target-release 'o=LP-PPA-oibaf-graphics-drivers'
|
2023-09-01 19:26:03 +02:00
|
|
|
else
|
2023-09-01 19:49:13 +02:00
|
|
|
echo "AMD64 Repos are synced"
|
2023-09-01 21:52:12 +02:00
|
|
|
#exit 0
|
2023-09-01 19:26:03 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Return to Extranal Oibaf PPA MIRROR
|
|
|
|
cd ../
|
|
|
|
mkdir -p ./output
|
|
|
|
find . -name \*.deb -exec cp -vf {} ./output \;
|
|
|
|
|
|
|
|
# Sign the packages
|
|
|
|
dpkg-sig --sign builder ./output/*.deb
|
|
|
|
|
|
|
|
# Pull down existing ppa repo db files etc
|
|
|
|
rsync -azP --exclude '*.deb' ferreo@direct.pika-os.com:/srv/www/pikappa/ ./output/repo
|
|
|
|
|
|
|
|
# Check if the external component exists
|
|
|
|
if cat ./output/repo/conf/distributions | grep Components: | grep external
|
|
|
|
then
|
|
|
|
true
|
|
|
|
else
|
|
|
|
sed -i "s#Components:#Components: external#" ./output/repo/conf/distributions
|
|
|
|
fi
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
# Add the new package to the repo
|
|
|
|
reprepro -C external -V --basedir ./output/repo/ includedeb lunar ./output/*.deb
|
|
|
|
|
|
|
|
# Push the updated ppa repo to the server
|
2023-09-01 21:47:48 +02:00
|
|
|
rsync -azP ./output/repo/ ferreo@direct.pika-os.com:/srv/www/pikappa/
|