ppp-sync/external-mozilla.sh
Ward Nakchbandi (Cosmic Fusion) 0fbddbfe75
2023-08-25 23:09:51 +03:00

61 lines
1.8 KiB
Bash

#! /bin/bash
set -e
# Give correct perms to Apt version checker
chmod 755 ./ppp
# Extranal Mozilla 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 Mozilla PPA pool
echo 'deb [trusted=yes] https://ppa.launchpadcontent.net/mozillateam/ppa/ubuntu lunar main' | sudo tee /etc/apt/sources.list.d/external.list
apt update -y --allow-unauthenticated
PPP=$(../../ppp https://ppa.pika-os.com/dists/lunar/external/binary-amd64/Packages https://ppa.launchpadcontent.net/mozillateam/ppa/ubuntu/dists/lunar/main/binary-amd64/Packages.xz)
touch /etc/apt/preferences.d/99-external.conf
echo 'Package: *' > /etc/apt/preferences.d/99-external.conf
echo 'Pin: release o=LP-PPA-mozillateam' >> /etc/apt/preferences.d/99-external.conf
echo 'Pin-Priority: 501' >> /etc/apt/preferences.d/99-external.conf
if [ ! -z "$PPP" ]
then
apt download $PPP -y
else
echo "Repos are synced"
exit 0
fi
# Return to Extranal Mozilla 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
# 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
rsync -azP ./output/repo/ ferreo@direct.pika-os.com:/srv/www/pikappa/