diff --git a/helpers/make-ubuntukylin-meta b/helpers/make-ubuntukylin-meta new file mode 100644 index 0000000000000000000000000000000000000000..4b7d2ffaab7e36e95d8e4eeacfaf9134e102a2d7 --- /dev/null +++ b/helpers/make-ubuntukylin-meta @@ -0,0 +1,58 @@ +#!/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 +