2023-08-24 19:26:03 +02:00
|
|
|
#! /bin/bash
|
|
|
|
set -e
|
|
|
|
|
2023-08-24 20:09:17 +02:00
|
|
|
# Give correct perms to Apt version checker
|
|
|
|
chmod 755 ./ppp
|
|
|
|
|
|
|
|
# Extranal System76 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 System76 PPA pool
|
|
|
|
echo 'deb [arch=amd64 trusted=yes] https://ppa.launchpadcontent.net/system76-dev/pre-stable/ubuntu lunar main' | sudo tee /etc/apt/sources.list.d/external.list
|
|
|
|
apt update -y --allow-unauthenticated
|
|
|
|
|
2023-08-24 20:30:15 +02:00
|
|
|
echo $(../../ppp https://ppa.pika-os.com/dists/lunar/external/binary-amd64/Packages https://ppa.launchpadcontent.net/system76-dev/pre-stable/ubuntu/dists/lunar/main/binary-amd64/Packages.xz | tr '\n' ' ')
|
2023-08-24 20:26:18 +02:00
|
|
|
|
2023-08-24 20:27:50 +02:00
|
|
|
|
2023-08-24 20:30:15 +02:00
|
|
|
#if [ ! -z $PPP ]
|
|
|
|
#then
|
|
|
|
# apt download $PPP -y
|
|
|
|
#else
|
|
|
|
# echo "Repos are synced"
|
2023-08-24 20:09:17 +02:00
|
|
|
exit 0
|
2023-08-24 20:30:15 +02:00
|
|
|
#fi
|
2023-08-24 20:26:18 +02:00
|
|
|
|
2023-08-24 20:09:17 +02:00
|
|
|
# Return to Extranal System76 PPA MIRROR
|
2023-08-24 19:26:03 +02:00
|
|
|
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
|
|
|
|
|
2023-08-24 20:09:17 +02:00
|
|
|
# Check if the external component exists
|
|
|
|
if cat ./output/repo/conf/distributions | grep Components: | grep external
|
2023-08-24 19:26:03 +02:00
|
|
|
then
|
|
|
|
true
|
|
|
|
else
|
2023-08-24 20:09:17 +02:00
|
|
|
sed -i "s#Components:#Components: external#" ./output/repo/conf/distributions
|
2023-08-24 19:26:03 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Add the new package to the repo
|
2023-08-24 20:09:17 +02:00
|
|
|
reprepro -C external -V --basedir ./output/repo/ includedeb lunar ./output/*.deb
|
2023-08-24 19:26:03 +02:00
|
|
|
|
|
|
|
# Push the updated ppa repo to the server
|
|
|
|
rsync -azP ./output/repo/ ferreo@direct.pika-os.com:/srv/www/pikappa/
|