Skip to content
Snippets Groups Projects
Commit 5fcaef1a authored by Luis Guzmán's avatar Luis Guzmán
Browse files

ubuntukylin-meta: rebuild for trisquel

parent ef0b8619
No related branches found
No related tags found
1 merge request!935ubuntukylin-meta: rebuild for trisquel
Pipeline #754 passed
#!/bin/sh
#
# Copyright (C) 2022 Luis Guzmán <ark@switnet.org>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#
VERSION=1
. ./config
rm_pkg_line(){
#find and remove everywhere found.
grep -rl $1 | xargs sed -i "/$1/d"
}
# Remove deprecated packages
grep -l ubuntu-drivers-common desktop* | xargs sed -i '/ubuntu-drivers-common/d'
grep -l snapd desktop* | xargs sed -i '/snapd/d'
grep -l kylin-docs desktop* | xargs sed -i '/ubuntu-kylin-docs/d'
rm_pkg_line xul-ext-ubufox
rm_pkg_line branding-ubuntu
rm_pkg_line ubuntu-advantage-tools
rm_pkg_line ubuntu-artwork
rm_pkg_line ubuntu-standard
rm_pkg_line ubuntu-minimal
rm_pkg_line ubuntu-settings
# Rebrand and tweak packages
sed -i 's|Ubuntu|Trisquel|g' debian/control
sed -i 's|ubuntu|trisquel|' README
replace 'firefox' 'abrowser'
replace 'thunderbird' 'icedove'
replace 'fonts-ubuntu' 'fonts-trisquel'
replace 'ubuntu-release-upgrader-gtk' 'trisquel-release-upgrader-gtk'
grep -rl plymouth-theme | xargs sed -i '/plymouth-theme/s|ubuntu|trisquel|g'
grep -rl sounds | xargs sed -i '/sounds/s|ubuntu|trisquel|g'
grep -rl ubuntu-keyring | xargs sed -i 's|ubuntu-keyring|trisquel-keyring|g'
grep -l ubuntu-kylin-software-center desktop* | \
xargs sed -i "s|ubuntu-kylin-software-center|trisquel-app-install\nsynaptic|g"
# Remove raspimeta package components
rm update.cfg
changelog "Rebuild to drop non-available deprecated and non-free source packages."
compile
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment