icecat: update upstream v128.13.0-1gnu1

This commit is contained in:
Ark74 2025-08-07 14:40:00 -06:00
parent a8d305c270
commit 0cdda4f34e
51 changed files with 5487 additions and 4614 deletions

View file

@ -1,3 +1,9 @@
icecat (128.13.0-1gnu1+build1-0.12.0) ecne; urgency=medium
* New upstream stable release (icecat-128.13.0-1gnu1)
-- Capitulo Mexicano de Software Libre <devel@cmxsl.org> Thu, 07 Aug 2025 14:18:35 -0600
icecat (128.12.0-1gnu1+build1-0.12.0) ecne; urgency=medium
* Initial packaging for Trisquel GNU/Linux and new upstream IceCat

View file

@ -1,14 +1,13 @@
if [ "" = "configure" ] || [ "" = "abort-upgrade" ] ; then
if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] ; then
[ -f /usr/bin/firefox-esr ] || ln -s /usr/bin/icecat /usr/bin/firefox-esr
for HOMEDIR in /home/cups-pk-helper
/home/ark
for HOMEDIR in $(grep :/home/ /etc/passwd |grep -v usbmux |grep -v syslog|cut -d : -f 6)
do
[ -d /.mozilla/icecat ] && continue || true
[ -d /.mozilla/firefox-esr ] || continue
echo Linking /.mozilla/firefox-esr into /.mozilla/icecat
ln -s /.mozilla/firefox-esr /.mozilla/icecat
[ -d $HOMEDIR/.mozilla/icecat ] && continue || true
[ -d $HOMEDIR/.mozilla/firefox-esr ] || continue
echo Linking $HOMEDIR/.mozilla/firefox-esr into $HOMEDIR/.mozilla/icecat
ln -s $HOMEDIR/.mozilla/firefox-esr $HOMEDIR/.mozilla/icecat
done
fi
exit 0