software-properties: fix and improve l10n work.

This commit is contained in:
Luis Guzmán 2023-12-19 02:02:46 +00:00
parent a5023df0f2
commit 8b251d6989
4 changed files with 71 additions and 1 deletions

View file

@ -20,7 +20,7 @@
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#
VERSION=12
VERSION=13
. ./config
@ -79,6 +79,15 @@ patch --no-backup-if-mismatch -p1 < $DATA/remove_ubuntu_suscription_tab.patch
patch --no-backup-if-mismatch -p1 < $DATA/remove_proposed_updates.patch
#Patch codename for PPAs
patch --no-backup-if-mismatch -p1 < $DATA/fix_PPA_upstream_codename.patch
#Fix mention of "other packages" as we don't distribute snap.
patch --no-backup-if-mismatch -p1 < $DATA/removal_of_snaps_other_packages_referral.patch
# Trisquel l10n modifications using git patches.
for patch in $(ls -v ${DATA}/l10n/*.patch)
do
echo "> Applying $patch"
patch --no-backup-if-mismatch -Np1 < $patch
done
changelog "Removed Ubuntu-specifc tests, Livepatch, Snap and fix PPA integration."