├── .gitignore ├── README.md ├── debian ├── changelog ├── compat ├── control ├── copyright ├── install ├── postinst ├── rules └── source │ └── format ├── etc └── xdg │ └── autostart │ └── cinnamon-stats-tracker.desktop └── usr ├── bin ├── bak ├── bakunbak ├── cinnamon-stats-tracker ├── generate-gobject-class ├── mint-add-shadow ├── mint-apt-backend-tester ├── mint-build ├── mint-check-translations ├── mint-check-upgrade-versions ├── mint-check-usrmerge ├── mint-compare-isos ├── mint-compare-manifests ├── mint-compare-releases ├── mint-dev-settings ├── mint-dev-setup ├── mint-docker-build ├── mint-docker-build-from-git ├── mint-docker-build-packages ├── mint-get-browser ├── mint-icon-picker ├── mint-make-thumbnail ├── mint-perf-record ├── mint-search-manifests ├── mint-show-gvfs-metadata ├── mint-test-icon-lookup ├── mint-valgrind └── unbak ├── local └── bin │ └── dpkg-deb └── share ├── applications └── mint-dev-settings.desktop ├── cinnamon └── applets │ └── cinnamonitor@cinnamon.org │ ├── README │ ├── applet.js │ ├── metadata.json │ └── settings-schema.json ├── glib-2.0 └── schemas │ └── com.linuxmint.dev.gschema.xml ├── icons └── hicolor │ └── scalable │ └── apps │ └── mint-dev-settings.svg ├── mint-dev-tools ├── manifests │ ├── debian-live-10-cinnamon │ │ └── filesystem.packages │ ├── debian-live-12.5.0-cinnamon │ │ └── filesystem.packages │ ├── lmde-4-cinnamon │ │ ├── filesystem.packages │ │ └── filesystem.packages-remove │ ├── lmde-5-cinnamon │ │ ├── filesystem.packages │ │ └── filesystem.packages-remove │ ├── lmde-6-cinnamon │ │ ├── filesystem.packages │ │ └── filesystem.packages-remove │ ├── mint-19-cinnamon │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-19-mate │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-19-xfce │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-19.1-cinnamon │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-19.1-mate │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-19.1-xfce │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-19.2-cinnamon │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-19.2-mate │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-19.2-xfce │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-19.3-cinnamon │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-19.3-mate │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-19.3-xfce │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-20-cinnamon │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-20-mate │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-20-xfce │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-20.1-cinnamon │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-20.1-mate │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-20.1-xfce │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-20.2-cinnamon │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-20.2-mate │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-20.2-xfce │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-20.3-cinnamon │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-20.3-mate │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-20.3-xfce │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-21-cinnamon │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-21-mate │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-21-xfce │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-21.1-cinnamon │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-21.1-mate │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-21.1-xfce │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-21.2-cinnamon │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-21.2-mate │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-21.2-xfce │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-21.3-cinnamon │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-21.3-mate │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-21.3-xfce │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-22-cinnamon │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-22-mate │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-22-xfce │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-22.1-cinnamon │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-22.1-mate │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-22.1-xfce │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-specific.list │ ├── ubuntu-18.04 │ │ ├── filesystem.manifest │ │ ├── filesystem.manifest-minimal-remove │ │ └── filesystem.manifest-remove │ ├── ubuntu-20.04 │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── ubuntu-22.04 │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── ubuntu-24.04 │ │ └── filesystem.manifest │ ├── ubuntu-mate-18.04 │ │ ├── filesystem.manifest │ │ ├── filesystem.manifest-minimal-remove │ │ └── filesystem.manifest-remove │ ├── ubuntu-mate-20.04.2 │ │ └── filesystem.manifest │ ├── ubuntu-mate-24.04 │ │ └── filesystem.manifest │ ├── ubuntu-specific.list │ ├── xubuntu-18.04 │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── xubuntu-20.04.2 │ │ └── filesystem.manifest │ └── xubuntu-24.04 │ │ └── filesystem.manifest ├── mint-apt-backend-tester.ui ├── mint-check-translations.glade ├── mint-dev-settings.ui ├── old-manifests │ ├── debian-live-8-cinnamon │ │ ├── filesystem.packages │ │ └── filesystem.packages-remove │ ├── debian-live-9.0.4-cinnamon │ │ └── filesystem.packages │ ├── elementary-freya │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── kubuntu-16.04 │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── lmde-2-201503-cinnamon │ │ ├── filesystem.packages │ │ └── filesystem.packages-remove │ ├── lmde-2-201503-mate │ │ ├── filesystem.packages │ │ └── filesystem.packages-remove │ ├── lmde-3-201808-cinnamon │ │ ├── filesystem.packages │ │ └── filesystem.packages-remove │ ├── mint-17-cinnamon │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-17-kde │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-17-mate │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-17-xfce │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-17.1-cinnamon │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-17.1-mate │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-17.1-xfce │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-17.2-cinnamon │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-17.2-kde │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-17.2-mate │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-17.2-xfce │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-17.3-cinnamon │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-17.3-kde │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-17.3-mate │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-17.3-xfce │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-18-cinnamon │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-18-kde │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-18-mate │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-18-xfce │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-18.1-cinnamon │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-18.1-kde │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-18.1-mate │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-18.1-xfce │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-18.2-cinnamon │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-18.2-kde │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-18.2-mate │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-18.2-xfce │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-18.3-cinnamon │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-18.3-kde │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-18.3-mate │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── mint-18.3-xfce │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── ubuntu-14.04.2 │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── ubuntu-14.04.3 │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── ubuntu-15.04 │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── ubuntu-15.10 │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── ubuntu-16.04.1 │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── ubuntu-16.04.2 │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── ubuntu-16.04 │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── ubuntu-18.04.3 │ │ ├── filesystem.manifest │ │ ├── filesystem.manifest-minimal-remove │ │ └── filesystem.manifest-remove │ ├── ubuntu-20.04.1 │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── ubuntu-20.04.2 │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── ubuntu-mate-15.10 │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── ubuntu-mate-16.04 │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── xubuntu-14.04.2 │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── xubuntu-15.04 │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ ├── xubuntu-16.04 │ │ ├── filesystem.manifest │ │ └── filesystem.manifest-remove │ └── zorin-10 │ │ ├── filesystem.manifest │ │ ├── filesystem.manifest-desktop │ │ └── filesystem.manifest-remove └── packages │ ├── ignored.list │ ├── lmde.list │ └── ubuntu.list └── nemo └── actions ├── mint_dev_tool_add_shadow.nemo_action ├── mint_dev_tool_make_thumbnail.nemo_action └── mint_dev_tool_show_file_metadata.nemo_action /.gitignore: -------------------------------------------------------------------------------- 1 | debian/mint-dev-tools 2 | debian/*substvars 3 | debian/*debhelper* 4 | debian/files -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | A collection of tools to develop/compile Linux Mint projects. 3 | -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- 1 | Source: mint-dev-tools 2 | Section: admin 3 | Priority: optional 4 | Maintainer: Clement Lefebvre 5 | Build-Depends: debhelper (>= 9) 6 | Standards-Version: 3.9.5 7 | 8 | Package: mint-dev-tools 9 | Architecture: all 10 | Depends: python3 (>= 3.3), 11 | python3-dbg, 12 | python3-polib, 13 | python3-psutil, 14 | python3-pkg-resources, 15 | gir1.2-xapp-1.0, 16 | git, 17 | dpkg-dev, 18 | debhelper, 19 | ${misc:Depends}, 20 | equivs, 21 | devscripts 22 | Recommends: git-buildpackage, meld, meson, sublime-text, sublime-merge, devhelp, glade, regexxer, pyrenamer, d-feet, gdb, awf, gconf-editor, dconf-editor, gnome-dbg, devscripts, gnome-api-docs, valgrind, ccache, wininfo, perf, debuginfod, libxapp-dev 23 | Description: A collection of tools to develop/compile Linux Mint projects 24 | All you need to develop/compile Linux Mint projects. 25 | -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- 1 | Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ 2 | Upstream-Name: mint-dev-tools 3 | Upstream-Contact: Clement Lefebvre 4 | Source: https://github.com/linuxmint/mint-dev-tools 5 | 6 | Files: * 7 | Copyright: 2015 Clement Lefebvre 8 | License: GPL-3+ 9 | This program is free software: you can redistribute it and/or modify 10 | it under the terms of the GNU General Public License as published by 11 | the Free Software Foundation, either version 3 of the License, or (at 12 | your option) any later version. 13 | . 14 | This program is distributed in the hope that it will be useful, but 15 | WITHOUT ANY WARRANTY; without even the implied warranty of 16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 17 | General Public License for more details. 18 | . 19 | You should have received a copy of the GNU General Public License 20 | along with this program. If not, see . 21 | . 22 | On Debian systems, the complete text of the GNU General 23 | Public License version 3 can be found in "/usr/share/common-licenses/GPL-3". 24 | -------------------------------------------------------------------------------- /debian/install: -------------------------------------------------------------------------------- 1 | usr 2 | etc 3 | -------------------------------------------------------------------------------- /debian/postinst: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # postinst script 3 | # see: dh_installdeb(1) 4 | 5 | set -e 6 | 7 | case "$1" in 8 | configure) 9 | if which glib-compile-schemas >/dev/null 2>&1 10 | then 11 | glib-compile-schemas /usr/share/glib-2.0/schemas 12 | fi 13 | ;; 14 | abort-upgrade|abort-remove|abort-deconfigure) 15 | ;; 16 | triggered) 17 | ;; 18 | *) 19 | echo "postinst called with unknown argument \`$1'" >&2 20 | exit 1 21 | ;; 22 | esac 23 | 24 | exit 0 25 | 26 | 27 | -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- 1 | #!/usr/bin/make -f 2 | 3 | %: 4 | dh ${@} 5 | 6 | override_dh_usrlocal: 7 | # don't forbid the use of /usr/local -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /etc/xdg/autostart/cinnamon-stats-tracker.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Encoding=UTF-8 3 | Name=Cinnamon Stats Tracker 4 | Comment=Stats tracker for Cinnamon 5 | Icon=cinnamon-symbolic 6 | Exec=cinnamon-stats-tracker 7 | Terminal=false 8 | Type=Application 9 | Categories= 10 | X-GNOME-Autostart-Delay=20 11 | AutostartCondition=GSettings com.linuxmint.dev cinnamon-stats-tracker-enabled 12 | OnlyShowIn=GNOME; 13 | -------------------------------------------------------------------------------- /usr/bin/bak: -------------------------------------------------------------------------------- 1 | bakunbak -------------------------------------------------------------------------------- /usr/bin/cinnamon-stats-tracker: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python3 2 | import gi 3 | import os 4 | import psutil 5 | import subprocess 6 | import time 7 | gi.require_version('Gtk', '3.0') 8 | gi.require_version('Notify', '0.7') 9 | from gi.repository import Gtk, Gio, Notify 10 | 11 | class Monitor(): 12 | 13 | def __init__(self): 14 | self.pid = subprocess.check_output('pidof cinnamon', shell=True).decode('UTF-8').strip() 15 | self.process = psutil.Process(int(self.pid)) 16 | 17 | def get_used_memory(self): 18 | # Used memory in MB 19 | mem = self.process.memory_info() 20 | memory = to_megabytes(mem.rss - mem.shared) 21 | return ("%d MB" % memory) 22 | 23 | def get_start_logs(self): 24 | # Start logs 25 | logs = [] 26 | log_file = os.path.expanduser("~/.xsession-errors") 27 | if os.path.exists(log_file): 28 | with open(log_file) as handle: 29 | for line in handle: 30 | line = line.strip() 31 | if "LookingGlass/info" in line: 32 | try: 33 | line = " ".join(line.split()[5:]) 34 | if "Cinnamon.AppSystem.get_default" in line: 35 | # Start of a new Cinnamon instance, ditch previous lines 36 | logs = [] 37 | if " ms" in line: 38 | logs.append(line) 39 | except Exception as e: 40 | pass # ignore lines with different formats 41 | return logs 42 | 43 | def get_cpu_time(self): 44 | # Used CPU time 45 | cpu = self.process.cpu_times() 46 | used = cpu.user + cpu.children_user + cpu.system + cpu.children_system 47 | t = time.strftime('%H:%M:%S', time.gmtime(used)) 48 | return t 49 | 50 | def get_cpu_percentage(self): 51 | # Avg CPU percentage (since last call) 52 | with self.process.oneshot(): 53 | # cpu_percent can be more than 100%, it's the sum of all cores percentages 54 | # so we divide it by the number of cpu/cores being used by the process 55 | percentage = self.process.cpu_percent() / psutil.cpu_count() 56 | percentage = round(percentage, 2) 57 | return percentage 58 | 59 | def print_and_save(output_file, data): 60 | print(data) 61 | output_file.write(data + "\n") 62 | output_file.flush() 63 | 64 | def show_stats(notif, action): 65 | subprocess.Popen(["xdg-open", os.path.expanduser("~/.cinnamon/stats.log")]) 66 | notif.close() 67 | Gtk.main_quit() 68 | 69 | def to_megabytes(num_bytes): 70 | return round(((num_bytes) / 1024 / 1024)) 71 | 72 | if __name__ == '__main__': 73 | 74 | settings = Gio.Settings("com.linuxmint.dev") 75 | interval = settings.get_int("cinnamon-stats-tracker-interval") 76 | measures = settings.get_int("cinnamon-stats-tracker-measures") 77 | 78 | Notify.init("cinnamon-stats-tracker") 79 | 80 | notification = Notify.Notification.new("Stats Tracker Started", "The Cinnamon stats are being tracked right now. Don't interact with Cinnamon for the next 10 minutes. A notification will pop up when the tracker is finished.", "cinnamon-symbolic") 81 | notification.show() 82 | 83 | with open(os.path.expanduser("~/.cinnamon/stats.log"), "w") as output_file: 84 | monitor = Monitor() 85 | process = monitor.process 86 | io = process.io_counters() 87 | print_and_save(output_file, "---------------------------------------------") 88 | print_and_save(output_file, " INITIAL STATS") 89 | print_and_save(output_file, "---------------------------------------------") 90 | print_and_save(output_file, "PID %s" % monitor.pid) 91 | print_and_save(output_file, "\n".join(monitor.get_start_logs())) 92 | print_and_save(output_file, "RAM: %s" % monitor.get_used_memory()) 93 | print_and_save(output_file, "CPU: %s (%s threads)" % (monitor.get_cpu_time(), process.num_threads())) 94 | monitor.get_cpu_percentage() # Call this but don't use the value, it's always 0%. This initializes the reading for the next call. 95 | print_and_save(output_file, "I/O: %s FDS, %s MB read, %s MB written" % (process.num_fds(), to_megabytes(io.read_bytes), to_megabytes(io.write_bytes))) 96 | 97 | if (measures > 0): 98 | for i in range(measures): 99 | time.sleep(interval) 100 | io = process.io_counters() 101 | print_and_save(output_file, "---------------------------------------------") 102 | print_and_save(output_file, " AFTER %d minutes" % (round(interval/60) * (i+1))) 103 | print_and_save(output_file, "---------------------------------------------") 104 | print_and_save(output_file, "RAM: %s" % monitor.get_used_memory()) 105 | print_and_save(output_file, "CPU: %s - avg %s%% (%s threads)" % (monitor.get_cpu_time(), monitor.get_cpu_percentage(), process.num_threads())) 106 | print_and_save(output_file, "I/O: %s FDS, %s MB read, %s MB written" % (process.num_fds(), to_megabytes(io.read_bytes), to_megabytes(io.write_bytes))) 107 | 108 | notification = Notify.Notification.new("Stats Tracker Finished", "The stats were successfully recorded in ~/.cinnamon/stats.log. You can now launch apps and use Cinnamon normally.", "cinnamon-symbolic") 109 | notification.add_action("action_show", "Show stats", show_stats) 110 | notification.set_urgency(Notify.Urgency.CRITICAL) 111 | notification.connect("closed", Gtk.main_quit) 112 | notification.show() 113 | Gtk.main() -------------------------------------------------------------------------------- /usr/bin/generate-gobject-class: -------------------------------------------------------------------------------- 1 | #! /usr/bin/python3 2 | 3 | import os 4 | import sys 5 | import argparse 6 | 7 | declare_final = """G_DECLARE_FINAL_TYPE (, _, , , )""" 8 | 9 | declare_derivable = """G_DECLARE_DERIVABLE_TYPE (, _, , , ) 10 | 11 | struct _Class 12 | { 13 | Class parent_class; 14 | 15 | gpointer padding[12]; 16 | };""" 17 | 18 | h_template = """#ifndef ____H__ 19 | #define ____H__ 20 | 21 | #include 22 | 23 | G_BEGIN_DECLS 24 | 25 | #define _TYPE_ __get_type () 26 | 27 | 28 | *__new (); 29 | 30 | G_END_DECLS 31 | 32 | #endif /* ____H__ */ 33 | """ 34 | 35 | instance_struct = """ 36 | struct _ 37 | { 38 | parent_instance; 39 | 40 | /*< private > */ 41 | Private *priv; 42 | }; 43 | """ 44 | 45 | c_template = """#include "-.h" 46 | 47 | typedef struct 48 | { 49 | } Private; 50 | 51 | G_DEFINE_TYPE_WITH_PRIVATE(, _, ) 52 | 53 | enum 54 | { 55 | PROP_0, 56 | N_PROPERTIES 57 | }; 58 | 59 | static GParamSpec *obj_properties[N_PROPERTIES] = { NULL, }; 60 | 61 | static void 62 | __set_property (GObject *object, 63 | guint prop_id, 64 | const GValue *value, 65 | GParamSpec *pspec) 66 | { 67 | * = _ (object); 68 | 69 | switch (prop_id) 70 | { 71 | default: 72 | G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); 73 | break; 74 | } 75 | } 76 | 77 | static void 78 | __get_property (GObject *object, 79 | guint prop_id, 80 | GValue *value, 81 | GParamSpec *pspec) 82 | { 83 | * = _ (object); 84 | 85 | switch (prop_id) 86 | { 87 | default: 88 | G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); 89 | break; 90 | } 91 | } 92 | 93 | static void 94 | __init ( *) 95 | { 96 | Private *priv = __get_instance_private (); 97 | } 98 | 99 | static void 100 | __dispose (GObject *object) 101 | { 102 | * = _ (object); 103 | 104 | G_OBJECT_CLASS (__parent_class)->dispose (object); 105 | } 106 | 107 | static void 108 | __finalize (GObject *object) 109 | { 110 | * = _ (object); 111 | 112 | G_OBJECT_CLASS (__parent_class)->finalize (object); 113 | } 114 | 115 | static void 116 | __class_init (Class *klass) 117 | { 118 | GObjectClass *object_class = G_OBJECT_CLASS (klass); 119 | 120 | object_class->dispose = __dispose; 121 | object_class->finalize = __finalize; 122 | object_class->set_property = __set_property; 123 | object_class->get_property = __get_property; 124 | 125 | g_object_class_install_properties (object_class, N_PROPERTIES, obj_properties); 126 | } 127 | 128 | * 129 | __new () 130 | { 131 | *; 132 | = g_object_new (_TYPE_, NULL); 133 | 134 | return ; 135 | } 136 | """ 137 | 138 | parser = argparse.ArgumentParser(description='create a new template class') 139 | parser.add_argument('-d', '--derivable', dest='derivable', action='store_true', 140 | help='if given, the class type will be derivable, otherwise it will be final') 141 | parser.add_argument('prefix', help='The class prefix. It should be camel case with underscores between words') 142 | parser.add_argument('class_name', help='The class name. It should be camel case with underscores between words') 143 | parser.add_argument('parent_class_type', help='The parent class type. It should be in the form PREFIX_TYPE_CLASSNAME') 144 | parser.add_argument('path', help='The path to where the files should be created') 145 | 146 | args = parser.parse_args() 147 | 148 | # prefix = sys.argv[1] 149 | # class_name = sys.argv[2] 150 | # parent_class_type = sys.argv[3] 151 | # path = os.path.abspath(sys.argv[4]) 152 | 153 | def strip(string): 154 | return ''.join(string.split('_')) 155 | 156 | def camel(string): 157 | parts = string.split('_') 158 | new_parts = [] 159 | for part in parts: 160 | new_parts.append(part.title()) 161 | # [part[0].upper() for part in parts] 162 | return ''.join(new_parts) 163 | 164 | def untype(string): 165 | return camel(string).replace('Type', '') 166 | 167 | def hyphen(string): 168 | return string.replace('_', '-').lower() 169 | 170 | replacements = [ 171 | ('', untype(args.parent_class_type)), 172 | ('', args.parent_class_type), 173 | ('', args.prefix.lower()), 174 | ('', strip(args.prefix)), 175 | ('', args.prefix.upper()), 176 | ('', args.class_name.lower()), 177 | ('', strip(args.class_name)), 178 | ('', args.class_name.upper()), 179 | ('', hyphen(args.prefix)), 180 | ('', hyphen(args.class_name)), 181 | ('', ' ' * (len(args.prefix) + len(args.class_name))) 182 | ] 183 | 184 | if args.derivable: 185 | h_output = h_template.replace('', declare_derivable) 186 | c_output = c_template.replace('', '') 187 | else: 188 | h_output = h_template.replace('', declare_final) 189 | c_output = c_template.replace('', instance_struct) 190 | 191 | 192 | for replacement in replacements: 193 | h_output = h_output.replace(replacement[0], replacement[1]) 194 | c_output = c_output.replace(replacement[0], replacement[1]) 195 | 196 | c_path = os.path.join(args.path, '%s.c' % hyphen('_'.join([args.prefix, args.class_name]))) 197 | with open(c_path, 'w') as c_file: 198 | c_file.write(c_output) 199 | 200 | h_path = os.path.join(args.path, '%s.h' % hyphen('_'.join([args.prefix, args.class_name]))) 201 | with open(h_path, 'w') as h_file: 202 | h_file.write(h_output) 203 | -------------------------------------------------------------------------------- /usr/bin/mint-add-shadow: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | shadow="$(dirname $1)/shadow_$(basename $1)" 4 | convert $1 -gravity 'northwest' -background 'rgba(255,255,255,0)' -splice '10x10' \( +clone -background '#5F5F5FFF' -shadow '80x3-1-1' \) +swap -background none -mosaic +repage \( +clone -background '#5F5F5FFF' -shadow '80x3+5+5' \) +swap -background none -mosaic +repage $shadow 5 | -------------------------------------------------------------------------------- /usr/bin/mint-build: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python3 2 | 3 | import sys 4 | import os 5 | import tempfile 6 | import argparse 7 | 8 | def call(command): 9 | return_code = os.system(command) 10 | if return_code != 0: 11 | print("ERROR: '%s' exited with return code %d" % (command, return_code)) 12 | sys.exit(1) 13 | 14 | def install(): 15 | print("") 16 | print(" #######################################################################") 17 | print(" ### Installing") 18 | print(" #######################################################################") 19 | print("") 20 | call("sudo apt install --yes --allow-downgrades ../*.deb || sudo dpkg -i ../*.deb") 21 | 22 | 23 | def bash(): 24 | print("") 25 | print(" #######################################################################") 26 | print(" ### Bash") 27 | print(" #######################################################################") 28 | print("") 29 | call("bash") 30 | 31 | def build(suffix): 32 | if os.path.exists("debian/changelog.orig"): 33 | call("mv debian/changelog.orig debian/changelog") 34 | 35 | if (suffix is not None): 36 | print("") 37 | print(" #######################################################################") 38 | print(" ### Adding suffix '%s'" % suffix) 39 | print(" #######################################################################") 40 | print("") 41 | call("cp debian/changelog debian/changelog.orig") 42 | call("sed -i '0,/)/s/)/%s)/' debian/changelog" % suffix) 43 | print("") 44 | 45 | print("") 46 | print(" #######################################################################") 47 | print(" ### Downloading build dependencies") 48 | print(" #######################################################################") 49 | print("") 50 | call("sudo DEBIAN_FRONTEND=noninteractive mk-build-deps -i -r -t 'apt-get -y' debian/control") 51 | print("") 52 | 53 | print("") 54 | print(" #######################################################################") 55 | print(" ### Building") 56 | print(" #######################################################################") 57 | print("") 58 | call("dpkg-buildpackage -us -uc") 59 | 60 | if os.path.exists("debian/changelog.orig"): 61 | call("mv debian/changelog.orig debian/changelog") 62 | 63 | def copy_debs(deb_dir): 64 | print("") 65 | print(" #######################################################################") 66 | print(" ### Moving debs to %s" % deb_dir) 67 | print(" #######################################################################") 68 | print("") 69 | os.makedirs(deb_dir, exist_ok=True) 70 | os.system('cp ../*.deb %s' % deb_dir) 71 | 72 | parser = argparse.ArgumentParser(description='Build project') 73 | parser.add_argument("-i", "--install", action="store_true", help="Install built packages") 74 | parser.add_argument("-b", "--bash", action="store_true", help="Open a bash shell just before installing build dependencies (to troubleshoot)") 75 | parser.add_argument("-s", "--suffix", help="Version suffix", required=False) 76 | parser.add_argument("-g", "--git-repository", help="Git clone URL, or project name (for Mint projects on Github). Suffix with #tagname, #branchname or %%pullrequest to specify a branch, a tag, or a pull request to build from.", required=False) 77 | parser.add_argument("-t", "--temporary", action="store_true", help="Use a temporary directory for building") 78 | parser.add_argument("-d", "--deb-dir", help="Folder to copy debs to when building is complete. If this option is omitted, the generated debs will not be copied.", required=False) 79 | args = parser.parse_args() 80 | 81 | cwd = os.getcwd() 82 | temp_directory = None 83 | deb_dir = None 84 | if args.deb_dir is not None: 85 | deb_dir = os.path.abspath(args.deb_dir) 86 | 87 | if args.git_repository is not None: 88 | project_url = args.git_repository 89 | tag_branch = None 90 | pull_request = None 91 | 92 | if "#" in project_url: 93 | (project_url, tag_branch) = project_url.split("#") 94 | elif "%" in project_url: 95 | (project_url, pull_request) = project_url.split("%") 96 | tag_branch = pull_request 97 | 98 | if "://" in project_url or "@" in project_url: 99 | project_name = project_url.split("/")[-1].replace(".git", "") 100 | else: 101 | # If only a name is given, assume the URL is on Linux Mint's github 102 | project_name = project_url 103 | project_url = "https://github.com/linuxmint/%s.git" % project_name 104 | call("mkdir -p %s" % project_name) 105 | 106 | if args.temporary: 107 | temp_directory = tempfile.TemporaryDirectory() 108 | os.chdir(temp_directory.name) 109 | else: 110 | os.chdir(project_name) 111 | if os.path.exists(project_name): 112 | call("rm -rf '%s'" % project_name) 113 | 114 | print("") 115 | print(" #######################################################################") 116 | print(" ### Cloning %s (branch/tag: %s)" % (project_name, tag_branch)) 117 | print(" #######################################################################") 118 | print("") 119 | call("git clone %s" % project_url) 120 | os.chdir(project_name) 121 | 122 | if pull_request is not None: 123 | call("git fetch origin pull/%s/head:%s" % (pull_request, pull_request)) 124 | 125 | if tag_branch is not None: 126 | call("git checkout %s" % tag_branch) 127 | 128 | if os.path.exists('debian'): 129 | if args.bash: 130 | bash() 131 | build(args.suffix) 132 | if args.install: 133 | install() 134 | if deb_dir is not None: 135 | copy_debs(deb_dir) 136 | else: 137 | subdirectories = sorted(os.listdir(".")) 138 | if os.path.exists('build-order'): 139 | subdirectories = [] 140 | with open('build-order') as f: 141 | for subdirectory in f.readlines(): 142 | subdirectory = subdirectory.strip() 143 | if not subdirectory.startswith("#"): 144 | subdirectories.append(subdirectory) 145 | for subdirectory in subdirectories: 146 | if os.path.isdir(subdirectory) and os.path.exists(os.path.join(subdirectory, "debian")): 147 | os.chdir(subdirectory) 148 | if args.bash: 149 | bash() 150 | build(args.suffix) 151 | if args.install: 152 | install() 153 | if deb_dir is not None: 154 | copy_debs(deb_dir) 155 | os.chdir("..") 156 | 157 | if temp_directory is not None: 158 | temp_directory.cleanup() 159 | 160 | os.chdir(cwd) 161 | -------------------------------------------------------------------------------- /usr/bin/mint-check-upgrade-versions: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python3 2 | 3 | import os 4 | import sys 5 | import subprocess 6 | 7 | class Package: 8 | 9 | def __init__(self, name, priority): 10 | self.name = name 11 | self.version = None 12 | self.priority = priority 13 | 14 | class Release: 15 | 16 | def __init__(self, name, base): 17 | self.name = name 18 | self.base = base 19 | self.packages = {} 20 | 21 | def read_list(filename): 22 | array = [] 23 | filehandle = open(filename) 24 | for line in filehandle.readlines(): 25 | line = line.strip() 26 | if line == "" or line.startswith("#"): 27 | continue 28 | array.append(line) 29 | return array 30 | 31 | def version_is_older(version1, version2): 32 | output = subprocess.getoutput("dpkg --compare-versions %s gt %s && echo 'OK'" % (version1, version2)) 33 | if (output == 'OK'): 34 | return True 35 | else: 36 | return False 37 | 38 | def add_packages(release, url, priority): 39 | os.system("mkdir -p .compare-releases") 40 | os.system("rm -rf .compare-releases/*") 41 | os.system("wget -O .compare-releases/sources.gz %s 2> /dev/null" % url) 42 | os.system("gzip -d .compare-releases/sources.gz") 43 | with open(".compare-releases/sources", 'r') as source_file: 44 | package = None 45 | for line in source_file: 46 | line = line.strip() 47 | if line.startswith("Package: "): 48 | name = line.replace("Package: ", "") 49 | package = Package(name, priority) 50 | elif line.startswith("Version: "): 51 | version = line.replace("Version: ", "") 52 | package.version = version 53 | if not package.name in release.packages.keys(): 54 | # print("Add %s[%s]" % (package.name, package.version)) 55 | release.packages[package.name] = package 56 | else: 57 | old_package = release.packages[package.name] 58 | if version_is_older(package.version, old_package.version): 59 | # print("Add higher version for %s %s > %s" % (package.name, old_package.version, package.version)) 60 | release.packages[package.name] = package 61 | elif package.priority > old_package.priority: 62 | # print("Add pin for %s %s > %s (%s > %s)" % (package.name, old_package.version, package.version, old_package.priority, package.priority)) 63 | release.packages[package.name] = package 64 | # else: 65 | # print("Keeping %s[%s] (against %s)" % (package.name, old_package.version, package.version)) 66 | 67 | missing_packages = [] 68 | lower_versions = [] 69 | 70 | release1 = Release("una", "focal") 71 | release2 = Release("vanessa", "jammy") 72 | 73 | for release in [release1, release2]: 74 | # print(release.name) 75 | urls = [] 76 | for component in ["main", "restricted", "universe", "multiverse"]: 77 | urls.append("http://archive.ubuntu.com/ubuntu/dists/%s/%s/source/Sources.gz" % (release.base, component)) 78 | urls.append("http://archive.ubuntu.com/ubuntu/dists/%s-updates/%s/source/Sources.gz" % (release.base, component)) 79 | urls.append("http://security.ubuntu.com/ubuntu/dists/%s-security/%s/source/Sources.gz" % (release.base, component)) 80 | urls.append("http://archive.ubuntu.com/ubuntu/dists/%s-backports/%s/source/Sources.gz" % (release.base, component)) 81 | for component in ["main", "import", "backport"]: 82 | urls.append("http://packages.linuxmint.com/dists/%s/%s/source/Sources.gz" % (release.name, component)) 83 | for url in urls: 84 | add_packages(release, url, 500) 85 | add_packages(release, "http://packages.linuxmint.com/dists/%s/upstream/source/Sources.gz" % release.name, 700) 86 | 87 | for name in release1.packages.keys(): 88 | package1 = release1.packages[name] 89 | 90 | # missing packages 91 | if name not in release2.packages.keys(): 92 | missing_packages.append(" {0:30}: {1}".format(package1.name, package1.version)) 93 | continue 94 | 95 | package2 = release2.packages[name] 96 | if version_is_older(package1.version, package2.version): 97 | lower_versions.append(" {0:30}: {1} < {2}".format(package1.name, package2.version, package1.version)) 98 | 99 | print() 100 | print("Missing packages in %s" % release2.name) 101 | for line in sorted(missing_packages): 102 | print(line) 103 | 104 | print() 105 | print("Lower versions in %s" % release2.name) 106 | for line in sorted(lower_versions): 107 | print(line) 108 | print() 109 | -------------------------------------------------------------------------------- /usr/bin/mint-check-usrmerge: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python3 2 | 3 | import os 4 | import sys 5 | import subprocess 6 | import re 7 | 8 | TMP_PATH = "/tmp/mint-check-usrmerge" 9 | DEB_PATH = TMP_PATH + "/package.deb" 10 | DEB_CONTENT_PATH = TMP_PATH + "/deb" 11 | 12 | def get_paths(s, sep=os.sep): 13 | return [x for x in re.split(r'[` \=~!@#$%^&*()+\[\]{};\'\\:"|<,<>?]', s) if len(x.split(sep)) > 1] 14 | 15 | class MergeChecker(): 16 | 17 | def __init__(self): 18 | self.merged_dirs = ["bin", "sbin", "lib", "lib32", "libx32", "lib64"] 19 | self.ubuntu_release = "focal" 20 | self.mint_release = "una" 21 | self.merged_paths = [] # existing paths.. 22 | self.merged_binaries = [] # names of binaries 23 | self.packages_per_binary = {} 24 | self.errors = [] 25 | os.system("rm -rf %s" % TMP_PATH) 26 | os.system("mkdir -p %s" % TMP_PATH) 27 | 28 | def get_ubuntu_filelist(self): 29 | url = "http://archive.ubuntu.com/ubuntu/dists/%s/Contents-amd64.gz" % self.ubuntu_release 30 | # Get the list of merged content in Ubuntu 31 | print("Downloading content from Ubuntu repositories...") 32 | os.system("wget -O %s/contents.gz %s 2> /dev/null" % (TMP_PATH, url)) 33 | print("Extracting content from Ubuntu repositories...") 34 | os.system("gzip -d %s/contents.gz" % TMP_PATH) 35 | print("Analyzing content from Ubuntu repositories...") 36 | with open("%s/contents" % TMP_PATH) as content_file: 37 | for line in content_file: 38 | line = line.strip() 39 | for merged_dir in self.merged_dirs: 40 | for directory in [merged_dir, "usr/" + merged_dir]: 41 | if line.startswith(directory): 42 | elements = line.split() 43 | path = "/" + elements[0] 44 | package = elements[-1].split("/")[-1] 45 | self.merged_paths.append(path) 46 | binary = path.split("/")[-1] 47 | self.merged_binaries.append(binary) 48 | self.packages_per_binary[binary] = package 49 | 50 | def get_list_of_mint_package_urls(self): 51 | # Get the list of debs in Mint upstream component 52 | url = "http://packages.linuxmint.com/dists/%s/upstream/binary-amd64/Packages.gz" % self.mint_release 53 | print("Downloading list of Mint packages...") 54 | os.system("rm -f %s/packages.gz; wget -O %s/packages.gz %s 2> /dev/null" % (TMP_PATH, TMP_PATH, url)) 55 | print("Extracting list of Mint packages...") 56 | os.system("rm -f %s/packages; gzip -d %s/packages.gz" % (TMP_PATH, TMP_PATH)) 57 | deb_urls = [] 58 | with open("%s/packages" % TMP_PATH) as content_file: 59 | for line in content_file: 60 | line = line.strip() 61 | if line.startswith("Filename: "): 62 | deb_urls.append(line.replace("Filename: ", "")) 63 | return deb_urls 64 | 65 | def check_mint_package(self, url): 66 | # Check packages one by one 67 | os.system("rm -rf %s" % DEB_CONTENT_PATH) 68 | os.system("mkdir -p %s" % DEB_CONTENT_PATH) 69 | pkg_name = url.split("/")[-1].split("_")[0] 70 | print("\nChecking %s..." % pkg_name) 71 | url = "http://packages.linuxmint.com/%s" % url 72 | os.system("rm -f %s; wget -O %s %s 2> /dev/null" % (DEB_PATH, DEB_PATH, url)) 73 | os.system("dpkg-deb -x %s %s" % (DEB_PATH, DEB_CONTENT_PATH)) 74 | found_matches = [] 75 | for merged_dir in self.merged_dirs: 76 | usr_dir = "/usr/" + merged_dir 77 | merged_dir = "/" + merged_dir 78 | self.check_dir(pkg_name, merged_dir, usr_dir) 79 | self.check_dir(pkg_name, usr_dir, merged_dir) 80 | 81 | def check_dir(self, pkg_name, merged_dir, alternative_dir): 82 | found_matches = [] 83 | output = subprocess.getoutput("egrep -iwr %s %s" % (merged_dir, DEB_CONTENT_PATH)) 84 | for line in output.split("\n"): 85 | if ":" in line: 86 | line = line.strip().split(":")[1] 87 | if (not line.startswith("#")) and merged_dir in line: 88 | matches = get_paths(line) 89 | for match in matches: 90 | if merged_dir in match and match not in found_matches: 91 | found_matches.append(match) 92 | for match in found_matches: 93 | if match in self.merged_paths: 94 | print(" OK: %s" % match) 95 | else: 96 | alternative_path = match.replace(merged_dir, alternative_dir) 97 | if alternative_path in self.merged_paths: 98 | binary = match.split("/")[-1] 99 | if binary in self.merged_binaries: 100 | error = "%s: %s should be %s (provided by %s)" % (pkg_name, match, alternative_path, self.packages_per_binary[binary]) 101 | print(" ERROR: %s!!!" % error) 102 | self.errors.append(error) 103 | 104 | checker = MergeChecker() 105 | checker.get_ubuntu_filelist() 106 | urls = checker.get_list_of_mint_package_urls() 107 | for url in sorted(urls): 108 | checker.check_mint_package(url) 109 | 110 | if len(checker.errors) > 0: 111 | print("\nThere have been errors!!") 112 | for error in checker.errors: 113 | print(" " + error) 114 | -------------------------------------------------------------------------------- /usr/bin/mint-compare-manifests: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python3 2 | 3 | import os 4 | import sys 5 | 6 | 7 | class Package: 8 | 9 | def __init__(self, name, version): 10 | self.name = name 11 | self.version = version 12 | 13 | 14 | class Release: 15 | 16 | def __init__(self, name): 17 | self.name = name 18 | self.packages = [] 19 | self.package_names = [] 20 | self.specific_names = [] 21 | 22 | if len(sys.argv) != 3: 23 | print("") 24 | print("Usage: mint-compare-manifests release1 release2") 25 | print("") 26 | print("Available releases: ") 27 | for path in os.listdir("/usr/share/mint-dev-tools/manifests"): 28 | print(" %s" % path) 29 | print("") 30 | sys.exit(1) 31 | 32 | release1 = Release(sys.argv[1]) 33 | release2 = Release(sys.argv[2]) 34 | 35 | for release in [release1, release2]: 36 | release_prefix = release.name.split("-")[0] 37 | if "ubuntu" in release_prefix: 38 | release_prefix = "ubuntu" 39 | with open("/usr/share/mint-dev-tools/manifests/%s-specific.list" % release_prefix, 'r') as prefix_file: 40 | for line in prefix_file: 41 | line = line.strip() 42 | if line.startswith('#'): 43 | continue 44 | release.specific_names.append(line) 45 | 46 | with open("/usr/share/mint-dev-tools/manifests/%s/filesystem.manifest" % release.name, 'r') as manifest_file: 47 | for line in manifest_file: 48 | line = line.strip() 49 | if line.startswith('#'): 50 | continue 51 | line = line.split("\t") 52 | if len(line) == 2: 53 | (package_name, package_version) = line 54 | 55 | package_name = package_name.split(":amd64")[0] 56 | package_name = package_name.split("-lts-")[0] 57 | package = Package(package_name, package_version) 58 | release.packages.append(package) 59 | release.package_names.append(package_name) 60 | 61 | print("Packages only found in %s:" % release1.name) 62 | for package in release1.package_names: 63 | if package not in release2.package_names and package not in release1.specific_names: 64 | print(" %s" % package) 65 | 66 | print("") 67 | print("===========================================") 68 | print("") 69 | 70 | print("Packages only found in %s:" % release2.name) 71 | for package in release2.package_names: 72 | if package not in release1.package_names and package not in release2.specific_names: 73 | print(" %s" % package) 74 | -------------------------------------------------------------------------------- /usr/bin/mint-compare-releases: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python3 2 | 3 | import os 4 | import sys 5 | import subprocess 6 | 7 | lmde_releases = ['debian', 'betsy', 'cindy', 'debbie', 'elsie', 'faye'] 8 | mint_releases = ['maya', 'qiana', 'rebecca', 'rafaela', 'rosa', 'sarah', 'serena', 'sonya', 'tara', 'tessa', 'tina', 'tricia', 'ulyana', 'ulyssa', 'uma', 'una', 'vanessa', 'vera', 'victoria', 'virginia', 'wilma', 'xia', 'zara'] 9 | 10 | class Package: 11 | 12 | def __init__(self, name): 13 | self.name = name 14 | self.version = None 15 | 16 | 17 | class Release: 18 | 19 | def __init__(self, name): 20 | self.name = name 21 | self.packages = [] 22 | self.is_lmde = (name in lmde_releases) 23 | 24 | 25 | def read_list(filename): 26 | array = [] 27 | filehandle = open(filename) 28 | for line in filehandle.readlines(): 29 | line = line.strip() 30 | if line == "" or line.startswith("#"): 31 | continue 32 | array.append(line) 33 | return array 34 | 35 | 36 | def remove_version_suffix(version): 37 | for release in (lmde_releases + mint_releases): 38 | version = version.replace("+%s" % release, "") 39 | return version 40 | 41 | lmde_specific_packages = read_list("/usr/share/mint-dev-tools/packages/lmde.list") 42 | ubuntu_specific_packages = read_list("/usr/share/mint-dev-tools/packages/ubuntu.list") 43 | obsolete_packages = read_list("/usr/share/mint-dev-tools/packages/ignored.list") 44 | 45 | os.system("mkdir -p .compare-releases") 46 | os.system("rm -rf .compare-releases/*") 47 | 48 | release1 = Release(sys.argv[1]) 49 | release2 = Release(sys.argv[2]) 50 | 51 | for component in ["main", "upstream", "import", "backport"]: 52 | 53 | for release in [release1, release2]: 54 | os.system("wget -O .compare-releases/sources.gz http://packages.linuxmint.com/dists/%s/%s/source/Sources.gz 2> /dev/null" % (release.name, component)) 55 | os.system("gzip -d .compare-releases/sources.gz") 56 | os.system("mv .compare-releases/sources .compare-releases/%s" % release.name) 57 | 58 | with open(".compare-releases/%s" % release.name, 'r') as source_file: 59 | package = None 60 | for line in source_file: 61 | line = line.strip() 62 | if line.startswith("Package: "): 63 | name = line.replace("Package: ", "") 64 | package = Package(name) 65 | release.packages.append(package) 66 | elif line.startswith("Version: "): 67 | version = line.replace("Version: ", "") 68 | package.version = version 69 | 70 | os.system("rm -rf .compare-releases/*") 71 | 72 | missing_packages = [] 73 | lower_versions = [] 74 | 75 | # Find packages missing in release1 76 | for package in release1.packages: 77 | if package.name in obsolete_packages: 78 | continue 79 | 80 | if release1.is_lmde and not release2.is_lmde: 81 | # ignore LMDE-specific packages 82 | if package.name in lmde_specific_packages: 83 | continue 84 | 85 | # ignore GTK3-related packages 86 | if package.name in ['mint-themes-gtk3']: 87 | continue 88 | 89 | # ignore debian/lmde packages are they're not supported in Mint 90 | found_keyword = False 91 | for keyword in ['debian', 'lmde']: 92 | if keyword in package.name: 93 | found_keyword = True 94 | break 95 | if found_keyword: 96 | continue 97 | 98 | if not release1.is_lmde and release2.is_lmde: 99 | # ignore Mint/Ubuntu-specific packages 100 | if package.name in ubuntu_specific_packages: 101 | continue 102 | 103 | # ignore GTK3-related packages 104 | if package.name in ['mint-themes-gtk3']: 105 | continue 106 | 107 | # ignore KDE/Xfce packages are they're not supported in LMDE 108 | found_keyword = False 109 | for keyword in ['kde', 'xfce', 'kcm']: 110 | if keyword in package.name: 111 | found_keyword = True 112 | break 113 | if found_keyword: 114 | continue 115 | 116 | equivalent_package = None 117 | for package2 in release2.packages: 118 | if package2.name == package.name: 119 | equivalent_package = package2 120 | break 121 | if equivalent_package is None: 122 | missing_packages.append(" {0:30}: {1}".format(package.name, package.version)) 123 | else: 124 | # Compare versions 125 | version1 = remove_version_suffix(package.version) 126 | version2 = remove_version_suffix(equivalent_package.version) 127 | output = subprocess.getoutput("dpkg --compare-versions %s gt %s && echo 'NOK'" % (version1, version2)) 128 | if (output == 'NOK'): 129 | lower_versions.append(" {0:30}: {1} < {2}".format(package.name, equivalent_package.version, package.version)) 130 | 131 | print() 132 | print("Missing packages in %s" % release2.name) 133 | for line in sorted(missing_packages): 134 | print(line) 135 | 136 | print() 137 | print("Lower versions in %s" % release2.name) 138 | for line in sorted(lower_versions): 139 | print(line) 140 | print() 141 | -------------------------------------------------------------------------------- /usr/bin/mint-dev-settings: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python3 2 | import gi 3 | gi.require_version('Gtk', '3.0') 4 | from gi.repository import Gtk, Gio 5 | 6 | STATS_TRACKER_ENABLED_KEY = "cinnamon-stats-tracker-enabled" 7 | STATS_TRACKER_INTERVAL_KEY = "cinnamon-stats-tracker-interval" 8 | STATS_TRACKER_MEASURES_KEY = "cinnamon-stats-tracker-measures" 9 | 10 | class Settings(): 11 | 12 | def __init__(self): 13 | 14 | builder = Gtk.Builder() 15 | builder.add_from_file("/usr/share/mint-dev-tools/mint-dev-settings.ui") 16 | 17 | self.window = builder.get_object("main_window") 18 | self.window.connect("destroy", Gtk.main_quit) 19 | self.window.set_title("Mint Development Settings") 20 | 21 | self.settings = Gio.Settings("com.linuxmint.dev") 22 | 23 | toggle = builder.get_object("cinnamon_stats_tracker_toggle") 24 | toggle.set_active(self.settings.get_boolean(STATS_TRACKER_ENABLED_KEY)) 25 | toggle.connect("state-set", self.on_toggle, STATS_TRACKER_ENABLED_KEY) 26 | 27 | adjustment = Gtk.Adjustment.new (0.0, 0.0, 3600.0, 60.0, 600.0, 0.0); 28 | spin = builder.get_object("spin_interval") 29 | spin.set_adjustment(adjustment) 30 | spin.set_value(self.settings.get_int(STATS_TRACKER_INTERVAL_KEY)) 31 | spin.connect("value-changed", self.on_spin, STATS_TRACKER_INTERVAL_KEY) 32 | 33 | adjustment = Gtk.Adjustment.new (0.0, 0.0, 100.0, 1.0, 5.0, 0.0); 34 | spin = builder.get_object("spin_measures") 35 | spin.set_adjustment(adjustment) 36 | spin.set_value(self.settings.get_int(STATS_TRACKER_MEASURES_KEY)) 37 | spin.connect("value-changed", self.on_spin, STATS_TRACKER_MEASURES_KEY) 38 | 39 | self.window.show_all() 40 | 41 | Gtk.main() 42 | 43 | def on_toggle(self, toggle, state, key): 44 | self.settings.set_boolean(key, state) 45 | 46 | def on_spin(self, spin, key): 47 | self.settings.set_int(key, spin.get_value_as_int()) 48 | 49 | if __name__ == '__main__': 50 | Settings() -------------------------------------------------------------------------------- /usr/bin/mint-dev-setup: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python3 2 | 3 | import os 4 | import subprocess 5 | from gi.repository import GLib 6 | 7 | GROUP = "Mint Development Tools" 8 | SANDBOX_PATH = "DevRoot" 9 | SANDBOX_NAME = "RootDisplayName" 10 | THREADS = "Threads" 11 | 12 | USER_HOME = os.path.expanduser('~') 13 | SETTINGS_PATH = "%s/mint-dev-tools" % GLib.get_user_config_dir() 14 | 15 | settings = None 16 | settings = GLib.KeyFile.new() 17 | 18 | if os.path.exists(SETTINGS_PATH): 19 | settings.load_from_file(SETTINGS_PATH, GLib.KeyFileFlags.KEEP_COMMENTS) 20 | 21 | print("") 22 | print("Enter the name for your development directory - it will be placed in your home folder.") 23 | print("") 24 | dir_name = input("Name of folder (press return to name it 'Sandbox'): ") 25 | if dir_name == "": 26 | dir_name = "Sandbox" 27 | 28 | ## Create Sandbox 29 | while not os.path.exists("%s/%s" % (USER_HOME, dir_name)): 30 | print("") 31 | print(" === CREATING A SANDBOX ===") 32 | os.system("mkdir -p ~/%s" % dir_name) 33 | print("Your sandbox was created in ~/%s. This is where you'll do all your development." % dir_name) 34 | 35 | settings.set_string(GROUP, SANDBOX_PATH, "%s/%s" % (USER_HOME, dir_name)) 36 | settings.set_string(GROUP, SANDBOX_NAME, dir_name) 37 | 38 | ## Configure Git 39 | while not os.path.exists("%s/.gitconfig" % USER_HOME): 40 | print("") 41 | print(" === CONFIGURING GIT ===") 42 | git_name = input('Enter your GIT username: ').strip() 43 | git_email = input('Enter your GIT email: ').strip() 44 | os.system("git config --global user.name \"%s\"" % git_name) 45 | os.system("git config --global user.email \"%s\"" % git_email) 46 | 47 | ## Configure SSH 48 | choice = "0" 49 | while choice not in ("", "1", "2"): 50 | print("") 51 | print("Configuring SSH. What do you want to do?") 52 | print("\t1) Create new SSH key pair (default)") 53 | print("\t2) Use an existing SSH key pair") 54 | choice = input("Select an option [1-2]: ") 55 | 56 | if choice == "": 57 | choice = "1" 58 | choice = int(choice) 59 | 60 | pubkey_path = "" 61 | if choice == 1: 62 | print("") 63 | print(" === CREATING AN SSH KEY (keep pressing enter for default choices) ===") 64 | print(" Please, create the key pair in your ~/.ssh folder") 65 | # Create ~/.ssh folder: 66 | os.makedirs("%s/.ssh" % USER_HOME, exist_ok=True) 67 | 68 | files_list_before = set(os.listdir("%s/.ssh" % USER_HOME)) 69 | # Try to create key until success: 70 | os.system("ssh-keygen") 71 | files_list_after = set(os.listdir("%s/.ssh" % USER_HOME)) 72 | 73 | # Sorted list of just created files: 74 | new_files = sorted(files_list_after - files_list_before) 75 | print(new_files) 76 | 77 | print("") 78 | if(len(new_files) != 2) or (new_files[1] != new_files[0] + '.pub'): 79 | print("Sorry, I couldn't automatically detect the file") 80 | else: 81 | pubkey_path = "%s/.ssh/%s" % (USER_HOME, new_files[1]) 82 | 83 | while not os.path.isfile(pubkey_path): 84 | default_path = "" 85 | if os.path.isfile("%s/.ssh/id_rsa.pub" % USER_HOME): 86 | default_path = "%s/.ssh/id_rsa.pub" % USER_HOME 87 | elif os.path.isdir("%s/.ssh" % USER_HOME): 88 | cur_files = os.listdir("%s/.ssh" % USER_HOME) 89 | cur_files = list(filter(lambda s: s.endswith('.pub'), cur_files)) 90 | if len(cur_files) == 1: 91 | default_path = os.path.join(".ssh", cur_files[0]) 92 | 93 | print("Please, enter your public key's path", end="") 94 | if default_path != "": 95 | print(" [%s]" % default_path, end="") 96 | print(": ", end="") 97 | 98 | pubkey_path = input() 99 | if pubkey_path == "": 100 | pubkey_path = default_path 101 | if pubkey_path != "": 102 | if not pubkey_path.endswith(".pub"): 103 | pubkey_path += ".pub" 104 | pubkey_path = os.path.join(USER_HOME, pubkey_path) 105 | 106 | if not os.path.isfile(pubkey_path): 107 | print("Error: path doesn't exist or not a file") 108 | 109 | print("") 110 | print("This is your public SSH key, you should now login to your Github account and add that key:") 111 | print("") 112 | os.system("cat %s" % pubkey_path) 113 | 114 | print("") 115 | print(" === REFRESHING APT CACHE ===") 116 | print("") 117 | input("Press ENTER to refresh the APT cache.") 118 | os.system("sudo apt-get update") 119 | 120 | max_threads = int(subprocess.getoutput("cat /proc/cpuinfo | grep processor | wc -l")) + 1 121 | 122 | print("") 123 | print("Enter the maximum number of threads to use for compiling.") 124 | print("This has little effect on smaller projects, but can save a") 125 | print("a lot of time when compiling Cinnamon.") 126 | print("") 127 | print("Maximum recommended for this system: %d" % max_threads) 128 | print("") 129 | print("Using less threads will ensure your system remains more responsive") 130 | print("during compilation, at the cost of it potentially taking longer to complete.") 131 | print("") 132 | try: 133 | max_threads_user = int(input("Enter the number of threads to use, or press return to use the maximum: ")) 134 | except: 135 | max_threads_user = max_threads 136 | print("") 137 | print("Compiling with %d threads" % max_threads_user) 138 | 139 | settings.set_integer(GROUP, THREADS, max_threads_user) 140 | 141 | # We're all set, save the settings file which has our sandbox path 142 | settings.save_to_file(SETTINGS_PATH) 143 | 144 | print("") 145 | print(" === ALL DONE ===") 146 | print("") 147 | print("Your environment is now set up. You can now use mint-dev-build to build projects.") 148 | print("") 149 | -------------------------------------------------------------------------------- /usr/bin/mint-docker-build: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python3 2 | 3 | import sys 4 | import os 5 | import argparse 6 | 7 | def call(command, exit_on_failure=True): 8 | return_code = os.system(command) 9 | if return_code != 0 and exit_on_failure: 10 | print("ERROR: '%s' exited with return code %d" % (command, return_code)) 11 | sys.exit(1) 12 | 13 | parser = argparse.ArgumentParser(description='Build in a Docker image') 14 | parser.add_argument("-i", "--image", help="Docker image", required=True) 15 | parser.add_argument("-s", "--suffix", help="Version suffix", required=False) 16 | parser.add_argument("-g", "--git-repository", help="Git clone URL, or project name (for Mint projects on Github). Suffix with #tagname or #branchname to specify a branch or a tag to build from.", required=False) 17 | args = parser.parse_args() 18 | 19 | current_dir = os.getcwd() 20 | project_dir = current_dir.split("/")[-1] 21 | parent_dir = "/".join(current_dir.split("/")[:-1]) 22 | 23 | # Create the output directory 24 | if args.git_repository is None: 25 | output_directory = os.path.join(os.getcwd(), "..", "docker-output", args.image.replace("/", "_")) 26 | else: 27 | output_directory = os.path.join(os.getcwd(), "docker-output", args.image.replace("/", "_")) 28 | call("mkdir -p %s" % output_directory) 29 | 30 | # Kill all containers for this image 31 | call("sudo docker rm $(sudo docker stop $(sudo docker ps -a -q --filter ancestor=%s --format=\"{{.ID}}\"))" % args.image, exit_on_failure=False) 32 | 33 | # Update the image 34 | call("sudo docker pull %s" % args.image) 35 | 36 | mintbuild = "mint-build" 37 | 38 | if args.git_repository is not None: 39 | mintbuild = "%s -g %s" % (mintbuild, args.git_repository) 40 | 41 | if args.suffix is not None: 42 | mintbuild = "%s -s %s" % (mintbuild, args.suffix) 43 | 44 | if args.git_repository is None: 45 | commands = "cp /host_bin/mint-build /usr/bin/mint-build; apt-get update; mkdir -p /PROJECT; cp -R /volume_in/* /PROJECT/; cd /PROJECT/%(project_dir)s; %(mintbuild)s; cp ../*_* /volume_out" % {'mintbuild':mintbuild, 'project_dir':project_dir} 46 | else: 47 | # If only a name is given, assume the URL is on Linux Mint's github 48 | repository = args.git_repository 49 | if "#" in repository: 50 | repository = repository.split("#")[0] 51 | project_name = repository 52 | if "://" in repository or "@" in repository: 53 | project_name = repository.split("/")[-1].replace(".git", "") 54 | commands = "cp /host_bin/mint-build /usr/bin/mint-build; apt-get update; apt-get install --yes openssh-client; %(mintbuild)s; cp %(project)s/*_* /volume_out" % {'mintbuild':mintbuild, 'project':project_name} 55 | 56 | # Build in a container 57 | ssh_options = "" 58 | ssh_dir = os.path.expanduser("~/.ssh") 59 | if os.path.exists(ssh_dir) and args.git_repository is not None: 60 | ssh_options = "-v %s:/root/.ssh" % ssh_dir 61 | 62 | call("sudo docker run -ti -v /usr/bin:/host_bin %(ssh_options)s -v %(parent_dir)s:/volume_in -v %(output_directory)s:/volume_out %(image)s /bin/sh -c \"%(commands)s\"" % {'ssh_options':ssh_options, 'parent_dir': parent_dir, 'output_directory': output_directory, 'image': args.image, 'commands': commands}) 63 | 64 | # Fix permissions 65 | os.system("sudo chown -R `whoami`:`whoami` %s" % output_directory) 66 | 67 | -------------------------------------------------------------------------------- /usr/bin/mint-docker-build-packages: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python3 2 | 3 | archs = ["i386", "amd64"] 4 | 5 | suffixes = {} 6 | suffixes["lmde2"] = "betsy" 7 | suffixes["lmde3"] = "cindy" 8 | suffixes["lmde4"] = "debbie" 9 | suffixes["lmde5"] = "elsie" 10 | suffixes["lmde6"] = "faye" 11 | suffixes["mint19"] = "tara" 12 | suffixes["mint19.1"] = "tessa" 13 | suffixes["mint19.2"] = "tina" 14 | suffixes["mint19.3"] = "tricia" 15 | suffixes["mint20"] = "ulyana" 16 | suffixes["mint20.1"] = "ulyssa" 17 | suffixes["mint20.2"] = "uma" 18 | suffixes["mint20.3"] = "una" 19 | suffixes["mint21"] = "vanessa" 20 | suffixes["mint21.1"] = "vera" 21 | suffixes["mint21.2"] = "victoria" 22 | suffixes["mint21.3"] = "virginia" 23 | suffixes["mint22"] = "wilma" 24 | suffixes["mint22.1"] = "xia" 25 | suffixes["mint22.2"] = "zara" 26 | 27 | # Releases which only support 64-bit 28 | only_64bit_releases = ["mint20", "mint20.1", "mint20.2", "mint20.3", "mint21", "mint21.1", "mint21.2", "mint21.3", "mint22", "mint22.1", "mint22.2"] 29 | 30 | import sys 31 | import os 32 | import argparse 33 | 34 | def call(command, exit_on_failure=True): 35 | return_code = os.system(command) 36 | if return_code != 0 and exit_on_failure: 37 | print("ERROR: '%s' exited with return code %d" % (command, return_code)) 38 | sys.exit(1) 39 | 40 | parser = argparse.ArgumentParser(description='Build packages via Docker') 41 | parser.add_argument("-d", "--distributions", help="Distributions (comma separated)", default="mint19,lmde3") 42 | parser.add_argument("-n", "--without-suffix", help="No suffix", action='store_true', required=False) 43 | parser.add_argument("-g", "--git-repositories", help="Git clone URLs, or project names (for Mint projects on Github) (comma separated). . Suffix each repo with #tagname or #branchname to specify a branch or a tag to build from.", required=False) 44 | args = parser.parse_args() 45 | 46 | distributions = args.distributions.split(",") 47 | 48 | if os.path.exists("docker-output"): 49 | os.system("rm -rf docker-output") 50 | 51 | if os.path.exists("docker-output.tar"): 52 | os.system("rm -f docker-output.tar") 53 | 54 | if args.git_repositories is not None: 55 | repositories = args.git_repositories.split(",") 56 | for repository in repositories: 57 | for distribution in distributions: 58 | for arch in archs: 59 | if arch == "i386" and distribution in only_64bit_releases: 60 | continue 61 | docker_image = "linuxmintd/%s-%s" % (distribution, arch) 62 | cmd = "mint-docker-build -i %s" % docker_image 63 | if not args.without_suffix: 64 | cmd = "%s -s +%s" % (cmd, suffixes[distribution]) 65 | os.system("%s -g %s" % (cmd, repository)) 66 | else: 67 | for distribution in distributions: 68 | for arch in archs: 69 | if arch == "i386" and distribution in only_64bit_releases: 70 | continue 71 | docker_image = "linuxmintd/%s-%s" % (distribution, arch) 72 | cmd = "mint-docker-build -i %s" % docker_image 73 | if not args.without_suffix: 74 | cmd = "%s -s +%s" % (cmd, suffixes[distribution]) 75 | os.system(cmd) 76 | 77 | os.chdir("docker-output") 78 | for dir_name in os.listdir("."): 79 | if os.path.isdir(dir_name) and dir_name.startswith("linuxmintd_"): 80 | name = dir_name.replace("linuxmintd_", "") 81 | (distribution, arch) = name.split("-") 82 | if arch == "amd64": 83 | os.system("mv %s %s" % (dir_name, distribution)) 84 | else: 85 | os.system("mkdir -p %s" % distribution) 86 | os.system("mv %s %s/i386" % (dir_name, distribution)) 87 | 88 | os.chdir("..") 89 | os.system("tar cvf docker-output.tar docker-output") 90 | -------------------------------------------------------------------------------- /usr/bin/mint-icon-picker: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python3 2 | 3 | import gi 4 | gi.require_version('Gtk', '3.0') 5 | gi.require_version('XApp', '1.0') 6 | 7 | from gi.repository import Gtk, XApp, Gdk 8 | 9 | import argparse 10 | import signal 11 | signal.signal(signal.SIGINT, signal.SIG_DFL) 12 | 13 | if __name__ == '__main__': 14 | parser = argparse.ArgumentParser() 15 | group = parser.add_mutually_exclusive_group() 16 | # if there are no arguments supplied, we should create a new launcher in the default location (usually ~/.local/share/applications/) 17 | group.add_argument('-c', '--category', dest='category', metavar='CATEGORY', 18 | help='The category to select when the dialog is opened.') 19 | group.add_argument('-i', '--icon-string', dest='icon', metavar='ICON_STRING', 20 | help='The icon to select when the dialog is opened. This can be an icon name or a path. ' 21 | 'If the icon doesn\'t exist, it will not cause an error, but there may not be an icon ' 22 | 'selected.') 23 | parser.add_argument('-b', '--clipboard', dest='clipboard', action='store_true', 24 | help='If this option is supplied, the result will be copied to the clipboard when an icon is ' 25 | 'selected and the dialog closed.') 26 | parser.add_argument('-p', '--disallow-paths', dest='paths', action='store_false', 27 | help='causes the path.') 28 | 29 | args = parser.parse_args() 30 | 31 | dialog = XApp.IconChooserDialog(allow_paths=args.paths, default_icon='folder') 32 | dialog.set_skip_taskbar_hint(False) 33 | if args.category: 34 | response = dialog.run_with_category(args.category) 35 | elif args.icon: 36 | response = dialog.run_with_icon(args.icon) 37 | else: 38 | response = dialog.run() 39 | 40 | if response == Gtk.ResponseType.OK: 41 | string = dialog.get_icon_string() 42 | print(string) 43 | 44 | if args.clipboard: 45 | clipboard = Gtk.Clipboard.get(Gdk.SELECTION_CLIPBOARD) 46 | clipboard.set_text(string, -1) 47 | clipboard.store() 48 | else: 49 | print('Dialog canceled') 50 | -------------------------------------------------------------------------------- /usr/bin/mint-make-thumbnail: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | thumb="$(dirname $1)/thumb_$(basename $1)" 4 | convert $1 -thumbnail 500x $thumb 5 | convert $thumb -gravity 'northwest' -background 'rgba(255,255,255,0)' -splice '10x10' \( +clone -background '#5F5F5FFF' -shadow '80x3-1-1' \) +swap -background none -mosaic +repage \( +clone -background '#5F5F5FFF' -shadow '80x3+5+5' \) +swap -background none -mosaic +repage $thumb 6 | -------------------------------------------------------------------------------- /usr/bin/mint-perf-record: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # You'll need to install a few kernel-specific packages to use this. 4 | 5 | sudo sh -c "echo -1 >/proc/sys/kernel/perf_event_paranoid" && sudo sh -c " echo 0 > /proc/sys/kernel/kptr_restrict" 6 | 7 | perf record -e cycles -F 50 -g --call-graph dwarf -- $@ 8 | -------------------------------------------------------------------------------- /usr/bin/mint-search-manifests: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python3 2 | 3 | import os 4 | import sys 5 | 6 | 7 | class Package: 8 | 9 | def __init__(self, name, version): 10 | self.name = name 11 | self.version = version 12 | 13 | 14 | class Release: 15 | 16 | def __init__(self, name): 17 | self.name = name 18 | self.packages = [] 19 | self.package_names = [] 20 | self.specific_names = [] 21 | 22 | if len(sys.argv) != 3: 23 | print("") 24 | print("Usage: mint-search-manifests package main|all") 25 | print("") 26 | sys.exit(1) 27 | 28 | keyword = sys.argv[1] 29 | scope = sys.argv[2] 30 | scoped_version = None 31 | if scope == "debian": 32 | manifests = ["debian", "lmde"] 33 | elif scope == "main": 34 | manifests = ["ubuntu", "mint"] 35 | elif scope == "all": 36 | manifests = ["debian", "lmde", "ubuntu", "mint", "elementary", "kubuntu", "xubuntu", "zorin"] 37 | else: 38 | scoped_version = scope 39 | 40 | for path in sorted(os.listdir("/usr/share/mint-dev-tools/manifests")): 41 | release = Release(path) 42 | release_prefix = release.name.split("-")[0] 43 | if scoped_version is not None: 44 | if release.name != scoped_version: 45 | continue 46 | else: 47 | if release_prefix not in manifests: 48 | continue 49 | for manifest in ["/usr/share/mint-dev-tools/manifests/%s/filesystem.manifest" % release.name, 50 | "/usr/share/mint-dev-tools/manifests/%s/filesystem.packages" % release.name]: 51 | if os.path.exists(manifest): 52 | with open(manifest, 'r') as manifest_file: 53 | for line in manifest_file: 54 | line = line.strip() 55 | if line.startswith('#'): 56 | continue 57 | line = line.split() 58 | if len(line) == 2: 59 | (package_name, package_version) = line 60 | 61 | if keyword in package_name: 62 | #package_name = package_name.split(":amd64")[0] 63 | #package_name = package_name.split("-lts-")[0] 64 | package = Package(package_name, package_version) 65 | release.packages.append(package) 66 | release.package_names.append(package_name) 67 | break 68 | 69 | if len(release.packages) > 0: 70 | print("-----------------------------------------------------------------------------------------------------") 71 | for package in release.packages: 72 | print("{:<30} {:<50} {:<32}".format(release.name, package.name, package.version)) 73 | -------------------------------------------------------------------------------- /usr/bin/mint-valgrind: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo Hint: the \'definitely lost\' entries are most associated with leaks in gobject programs. 3 | echo More info: https://developer.gnome.org/programming-guidelines/stable/tooling.html.en#valgrind 4 | echo 5 | G_SLICE=always-malloc G_DEBUG=resident-modules valgrind --tool=memcheck --leak-check=full --leak-resolution=high --num-callers=20 --log-file=vgdump $@ 6 | -------------------------------------------------------------------------------- /usr/bin/unbak: -------------------------------------------------------------------------------- 1 | bakunbak -------------------------------------------------------------------------------- /usr/local/bin/dpkg-deb: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | /usr/bin/dpkg-deb -Zxz $@ 3 | 4 | -------------------------------------------------------------------------------- /usr/share/applications/mint-dev-settings.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Version=1.0 3 | Type=Application 4 | Name=Mint Development Settings 5 | Comment=Settings for Mint development 6 | Exec=mint-dev-settings 7 | Terminal=false 8 | Icon=mint-dev-settings 9 | Categories=Development; 10 | StartupNotify=false 11 | -------------------------------------------------------------------------------- /usr/share/cinnamon/applets/cinnamonitor@cinnamon.org/README: -------------------------------------------------------------------------------- 1 | Requires: 2 | 3 | gir1.2-gtop-2.0 4 | -------------------------------------------------------------------------------- /usr/share/cinnamon/applets/cinnamonitor@cinnamon.org/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Monitors memory usage of cinnamon process, and GJS stuff once I figure it out", 3 | "max-instances": "10", 4 | "dangerous": true, 5 | "uuid": "cinnamonitor@cinnamon.org", 6 | "name": "Cinnamon Process and GJS Memory Monitor", 7 | "icon": "utilities-system-monitor" 8 | } -------------------------------------------------------------------------------- /usr/share/cinnamon/applets/cinnamonitor@cinnamon.org/settings-schema.json: -------------------------------------------------------------------------------- 1 | { 2 | "process-name" : { 3 | "type" : "entry", 4 | "default" : "", 5 | "description" : "Process name to monitor (if not found the Cinnamon process is used):", 6 | "tooltip" : "Set the name of the process you want to monitor here. Note, for now, no consideration is taken for multiple instances of the same program. Undefined behavior." 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /usr/share/glib-2.0/schemas/com.linuxmint.dev.gschema.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | false 6 | 7 | 8 | 9 | 10 | 600 11 | 12 | 13 | 14 | 15 | 1 16 | 17 | 18 | 19 | 20 | [] 21 | 22 | 23 | 24 | 25 | [] 26 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/manifests/lmde-4-cinnamon/filesystem.packages-remove: -------------------------------------------------------------------------------- 1 | boot-repair 2 | boot-sav 3 | boot-sav-extra 4 | glade2script 5 | gparted 6 | imagemagick 7 | imagemagick-6.q16 8 | insserv 9 | isoquery 10 | libqt5designer5:amd64 11 | libqt5help5:amd64 12 | libqt5printsupport5:amd64 13 | libqt5sql5:amd64 14 | libqt5test5:amd64 15 | libqt5xml5:amd64 16 | live-boot 17 | live-boot-initramfs-tools 18 | live-config 19 | live-config-systemd 20 | live-installer 21 | menu 22 | python-enum34 23 | python-gi-cairo 24 | python-parted 25 | python-pil:amd64 26 | python-pyqt5 27 | python-sip 28 | startpar 29 | syslinux-utils 30 | sysv-rc 31 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/manifests/lmde-5-cinnamon/filesystem.packages-remove: -------------------------------------------------------------------------------- 1 | boot-repair 2 | boot-sav 3 | boot-sav-extra 4 | circle-flags-svg 5 | glade2script 6 | glade2script-python3 7 | gparted 8 | gparted-common 9 | imagemagick 10 | imagemagick-6-common 11 | imagemagick-6.q16 12 | insserv 13 | isoquery 14 | libde265-0:amd64 15 | libheif1:amd64 16 | libilmbase25:amd64 17 | libjxr-tools 18 | libjxr0:amd64 19 | liblqr-1-0:amd64 20 | libmagickcore-6.q16-6:amd64 21 | libmagickcore-6.q16-6-extra:amd64 22 | libmagickwand-6.q16-6:amd64 23 | libnetpbm10 24 | libopenexr25:amd64 25 | libqt5designer5:amd64 26 | libqt5help5:amd64 27 | libqt5printsupport5:amd64 28 | libqt5sql5:amd64 29 | libqt5sql5-sqlite:amd64 30 | libqt5test5:amd64 31 | libqt5xml5:amd64 32 | libwmf0.2-7:amd64 33 | live-boot 34 | live-boot-doc 35 | live-boot-initramfs-tools 36 | live-config 37 | live-config-doc 38 | live-config-systemd 39 | live-installer 40 | live-tools 41 | menu 42 | mint-live-session 43 | netpbm 44 | pastebinit 45 | python3-pyqt5 46 | python3-pyqt5.sip 47 | startpar 48 | syslinux-utils 49 | sysv-rc 50 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/manifests/lmde-6-cinnamon/filesystem.packages-remove: -------------------------------------------------------------------------------- 1 | boot-repair 2 | boot-sav 3 | boot-sav-extra 4 | glade2script 5 | glade2script-python3 6 | gparted 7 | gparted-common 8 | imagemagick 9 | imagemagick-6-common 10 | imagemagick-6.q16 11 | insserv 12 | isoquery 13 | libfftw3-double3:amd64 14 | libimath-3-1-29:amd64 15 | libjxr-tools 16 | libjxr0:amd64 17 | liblqr-1-0:amd64 18 | libmagickcore-6.q16-6:amd64 19 | libmagickcore-6.q16-6-extra:amd64 20 | libmagickwand-6.q16-6:amd64 21 | libnetpbm11:amd64 22 | libopenexr-3-1-30:amd64 23 | libqt5designer5:amd64 24 | libqt5help5:amd64 25 | libqt5printsupport5:amd64 26 | libqt5sql5:amd64 27 | libqt5sql5-sqlite:amd64 28 | libqt5test5:amd64 29 | libqt5xml5:amd64 30 | libwmflite-0.2-7:amd64 31 | live-boot 32 | live-boot-doc 33 | live-boot-initramfs-tools 34 | live-config 35 | live-config-doc 36 | live-config-systemd 37 | live-installer 38 | live-tools 39 | menu 40 | mint-live-session 41 | netpbm 42 | pastebinit 43 | python3-pyqt5 44 | python3-pyqt5.sip 45 | startpar 46 | syslinux-utils 47 | sysv-rc 48 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/manifests/mint-19-cinnamon/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | gir1.2-nm-1.0:amd64 2 | gir1.2-nma-1.0:amd64 3 | gparted 4 | language-selector-common 5 | libido3-0.1-0:amd64 6 | python3-debconf 7 | ubiquity 8 | ubiquity-casper 9 | ubiquity-frontend-gtk 10 | ubiquity-slideshow-mint 11 | ubiquity-ubuntu-artwork 12 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/manifests/mint-19-mate/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | gir1.2-nm-1.0:amd64 2 | gir1.2-nma-1.0:amd64 3 | gparted 4 | language-selector-common 5 | python3-debconf 6 | python3-pam 7 | ubiquity 8 | ubiquity-casper 9 | ubiquity-frontend-gtk 10 | ubiquity-slideshow-mint 11 | ubiquity-ubuntu-artwork 12 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/manifests/mint-19-xfce/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | gir1.2-nm-1.0:amd64 2 | gir1.2-nma-1.0:amd64 3 | gparted 4 | language-selector-common 5 | python3-debconf 6 | python3-pam 7 | ubiquity 8 | ubiquity-casper 9 | ubiquity-frontend-gtk 10 | ubiquity-slideshow-mint 11 | ubiquity-ubuntu-artwork 12 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/manifests/mint-19.1-cinnamon/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | gparted 2 | language-selector-common 3 | libido3-0.1-0:amd64 4 | python3-debconf 5 | ubiquity 6 | ubiquity-casper 7 | ubiquity-frontend-gtk 8 | ubiquity-slideshow-mint 9 | ubiquity-ubuntu-artwork 10 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/manifests/mint-19.1-mate/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | gir1.2-nm-1.0:amd64 2 | gir1.2-nma-1.0:amd64 3 | gparted 4 | language-selector-common 5 | python3-debconf 6 | python3-pam 7 | ubiquity 8 | ubiquity-casper 9 | ubiquity-frontend-gtk 10 | ubiquity-slideshow-mint 11 | ubiquity-ubuntu-artwork 12 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/manifests/mint-19.1-xfce/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | gir1.2-nm-1.0:amd64 2 | gir1.2-nma-1.0:amd64 3 | gparted 4 | language-selector-common 5 | python3-debconf 6 | python3-pam 7 | ubiquity 8 | ubiquity-casper 9 | ubiquity-frontend-gtk 10 | ubiquity-slideshow-mint 11 | ubiquity-ubuntu-artwork 12 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/manifests/mint-19.2-cinnamon/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | boot-repair 2 | boot-sav 3 | boot-sav-extra 4 | glade2script 5 | gparted 6 | language-selector-common 7 | libido3-0.1-0:amd64 8 | python3-debconf 9 | ubiquity 10 | ubiquity-casper 11 | ubiquity-frontend-gtk 12 | ubiquity-slideshow-mint 13 | ubiquity-ubuntu-artwork 14 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/manifests/mint-19.2-mate/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | boot-repair 2 | boot-sav 3 | boot-sav-extra 4 | gir1.2-nm-1.0:amd64 5 | gir1.2-nma-1.0:amd64 6 | glade2script 7 | gparted 8 | language-selector-common 9 | python3-debconf 10 | python3-pam 11 | ubiquity 12 | ubiquity-casper 13 | ubiquity-frontend-gtk 14 | ubiquity-slideshow-mint 15 | ubiquity-ubuntu-artwork 16 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/manifests/mint-19.2-xfce/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | boot-repair 2 | boot-sav 3 | boot-sav-extra 4 | gir1.2-nm-1.0:amd64 5 | gir1.2-nma-1.0:amd64 6 | glade2script 7 | gparted 8 | language-selector-common 9 | python3-debconf 10 | python3-pam 11 | ubiquity 12 | ubiquity-casper 13 | ubiquity-frontend-gtk 14 | ubiquity-slideshow-mint 15 | ubiquity-ubuntu-artwork 16 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/manifests/mint-19.3-cinnamon/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | boot-repair 2 | boot-sav 3 | boot-sav-extra 4 | glade2script 5 | gparted 6 | language-selector-common 7 | libido3-0.1-0:amd64 8 | python3-debconf 9 | ubiquity 10 | ubiquity-casper 11 | ubiquity-frontend-gtk 12 | ubiquity-slideshow-mint 13 | ubiquity-ubuntu-artwork 14 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/manifests/mint-19.3-mate/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | boot-repair 2 | boot-sav 3 | boot-sav-extra 4 | gir1.2-nm-1.0:amd64 5 | gir1.2-nma-1.0:amd64 6 | glade2script 7 | gparted 8 | language-selector-common 9 | python3-debconf 10 | python3-pam 11 | ubiquity 12 | ubiquity-casper 13 | ubiquity-frontend-gtk 14 | ubiquity-slideshow-mint 15 | ubiquity-ubuntu-artwork 16 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/manifests/mint-19.3-xfce/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | boot-repair 2 | boot-sav 3 | boot-sav-extra 4 | gir1.2-nm-1.0:amd64 5 | gir1.2-nma-1.0:amd64 6 | glade2script 7 | gparted 8 | language-selector-common 9 | python3-debconf 10 | python3-pam 11 | ubiquity 12 | ubiquity-casper 13 | ubiquity-frontend-gtk 14 | ubiquity-slideshow-mint 15 | ubiquity-ubuntu-artwork 16 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/manifests/mint-20-cinnamon/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | boot-repair 2 | boot-sav 3 | boot-sav-extra 4 | glade2script 5 | gparted 6 | gparted-common 7 | language-selector-common 8 | mint-live-session 9 | python3-debconf 10 | ubiquity 11 | ubiquity-casper 12 | ubiquity-frontend-gtk 13 | ubiquity-slideshow-mint 14 | ubiquity-ubuntu-artwork 15 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/manifests/mint-20-mate/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | boot-repair 2 | boot-sav 3 | boot-sav-extra 4 | glade2script 5 | gparted 6 | gparted-common 7 | language-selector-common 8 | mint-live-session 9 | python3-debconf 10 | python3-pam 11 | ubiquity 12 | ubiquity-casper 13 | ubiquity-frontend-gtk 14 | ubiquity-slideshow-mint 15 | ubiquity-ubuntu-artwork 16 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/manifests/mint-20-xfce/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | boot-repair 2 | boot-sav 3 | boot-sav-extra 4 | glade2script 5 | gparted 6 | gparted-common 7 | language-selector-common 8 | mint-live-session 9 | python3-debconf 10 | python3-pam 11 | ubiquity 12 | ubiquity-casper 13 | ubiquity-frontend-gtk 14 | ubiquity-slideshow-mint 15 | ubiquity-ubuntu-artwork 16 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/manifests/mint-20.1-cinnamon/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | boot-repair 2 | boot-sav 3 | boot-sav-extra 4 | glade2script 5 | glade2script-python3 6 | gparted 7 | gparted-common 8 | language-selector-common 9 | mint-live-session 10 | pastebinit 11 | python3-debconf 12 | ubiquity 13 | ubiquity-casper 14 | ubiquity-frontend-gtk 15 | ubiquity-slideshow-mint 16 | ubiquity-ubuntu-artwork 17 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/manifests/mint-20.1-mate/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | boot-repair 2 | boot-sav 3 | boot-sav-extra 4 | glade2script 5 | glade2script-python3 6 | gparted 7 | gparted-common 8 | language-selector-common 9 | mint-live-session 10 | pastebinit 11 | python3-debconf 12 | python3-pam 13 | ubiquity 14 | ubiquity-casper 15 | ubiquity-frontend-gtk 16 | ubiquity-slideshow-mint 17 | ubiquity-ubuntu-artwork 18 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/manifests/mint-20.1-xfce/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | boot-repair 2 | boot-sav 3 | boot-sav-extra 4 | glade2script 5 | glade2script-python3 6 | gparted 7 | gparted-common 8 | language-selector-common 9 | mint-live-session 10 | pastebinit 11 | python3-debconf 12 | python3-pam 13 | ubiquity 14 | ubiquity-casper 15 | ubiquity-frontend-gtk 16 | ubiquity-slideshow-mint 17 | ubiquity-ubuntu-artwork 18 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/manifests/mint-20.2-cinnamon/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | boot-repair 2 | boot-sav 3 | boot-sav-extra 4 | glade2script 5 | glade2script-python3 6 | gparted 7 | gparted-common 8 | language-selector-common 9 | mint-live-session 10 | pastebinit 11 | python3-debconf 12 | ubiquity 13 | ubiquity-casper 14 | ubiquity-frontend-gtk 15 | ubiquity-slideshow-mint 16 | ubiquity-ubuntu-artwork 17 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/manifests/mint-20.2-mate/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | boot-repair 2 | boot-sav 3 | boot-sav-extra 4 | glade2script 5 | glade2script-python3 6 | gparted 7 | gparted-common 8 | language-selector-common 9 | mint-live-session 10 | pastebinit 11 | python3-debconf 12 | python3-pam 13 | ubiquity 14 | ubiquity-casper 15 | ubiquity-frontend-gtk 16 | ubiquity-slideshow-mint 17 | ubiquity-ubuntu-artwork 18 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/manifests/mint-20.2-xfce/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | boot-repair 2 | boot-sav 3 | boot-sav-extra 4 | glade2script 5 | glade2script-python3 6 | gparted 7 | gparted-common 8 | language-selector-common 9 | mint-live-session 10 | pastebinit 11 | python3-debconf 12 | python3-pam 13 | ubiquity 14 | ubiquity-casper 15 | ubiquity-frontend-gtk 16 | ubiquity-slideshow-mint 17 | ubiquity-ubuntu-artwork 18 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/manifests/mint-20.3-cinnamon/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | boot-repair 2 | boot-sav 3 | boot-sav-extra 4 | glade2script 5 | glade2script-python3 6 | gparted 7 | gparted-common 8 | language-selector-common 9 | mint-live-session 10 | pastebinit 11 | python3-debconf 12 | ubiquity 13 | ubiquity-casper 14 | ubiquity-frontend-gtk 15 | ubiquity-slideshow-mint 16 | ubiquity-ubuntu-artwork 17 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/manifests/mint-20.3-mate/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | boot-repair 2 | boot-sav 3 | boot-sav-extra 4 | glade2script 5 | glade2script-python3 6 | gparted 7 | gparted-common 8 | language-selector-common 9 | mint-live-session 10 | pastebinit 11 | python3-debconf 12 | python3-pam 13 | ubiquity 14 | ubiquity-casper 15 | ubiquity-frontend-gtk 16 | ubiquity-slideshow-mint 17 | ubiquity-ubuntu-artwork 18 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/manifests/mint-20.3-xfce/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | boot-repair 2 | boot-sav 3 | boot-sav-extra 4 | glade2script 5 | glade2script-python3 6 | gparted 7 | gparted-common 8 | language-selector-common 9 | mint-live-session 10 | pastebinit 11 | python3-debconf 12 | python3-pam 13 | ubiquity 14 | ubiquity-casper 15 | ubiquity-frontend-gtk 16 | ubiquity-slideshow-mint 17 | ubiquity-ubuntu-artwork 18 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/manifests/mint-21-cinnamon/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | boot-repair 2 | boot-sav 3 | boot-sav-extra 4 | glade2script 5 | glade2script-python3 6 | gparted 7 | gparted-common 8 | grub-efi-amd64-bin 9 | grub-efi-amd64-signed 10 | language-selector-common 11 | libdebian-installer4:amd64 12 | mint-live-session 13 | pastebinit 14 | python3-debconf 15 | shim-signed 16 | ubiquity 17 | ubiquity-casper 18 | ubiquity-frontend-gtk 19 | ubiquity-slideshow-mint 20 | ubiquity-ubuntu-artwork 21 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/manifests/mint-21-mate/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | boot-repair 2 | boot-sav 3 | boot-sav-extra 4 | glade2script 5 | glade2script-python3 6 | gparted 7 | gparted-common 8 | grub-efi-amd64-bin 9 | grub-efi-amd64-signed 10 | language-selector-common 11 | libdebian-installer4:amd64 12 | mint-live-session 13 | pastebinit 14 | python3-debconf 15 | python3-pam 16 | shim-signed 17 | ubiquity 18 | ubiquity-casper 19 | ubiquity-frontend-gtk 20 | ubiquity-slideshow-mint 21 | ubiquity-ubuntu-artwork 22 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/manifests/mint-21-xfce/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | boot-repair 2 | boot-sav 3 | boot-sav-extra 4 | glade2script 5 | glade2script-python3 6 | gparted 7 | gparted-common 8 | grub-efi-amd64-bin 9 | grub-efi-amd64-signed 10 | language-selector-common 11 | libdebian-installer4:amd64 12 | mint-live-session 13 | pastebinit 14 | python3-debconf 15 | python3-pam 16 | shim-signed 17 | ubiquity 18 | ubiquity-casper 19 | ubiquity-frontend-gtk 20 | ubiquity-slideshow-mint 21 | ubiquity-ubuntu-artwork 22 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/manifests/mint-21.1-cinnamon/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | boot-repair 2 | boot-sav 3 | boot-sav-extra 4 | glade2script 5 | glade2script-python3 6 | gparted 7 | gparted-common 8 | grub-efi-amd64-bin 9 | grub-efi-amd64-signed 10 | language-selector-common 11 | libdebian-installer4:amd64 12 | mint-live-session 13 | pastebinit 14 | python3-debconf 15 | shim-signed 16 | ubiquity 17 | ubiquity-casper 18 | ubiquity-frontend-gtk 19 | ubiquity-slideshow-mint 20 | ubiquity-ubuntu-artwork 21 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/manifests/mint-21.1-mate/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | boot-repair 2 | boot-sav 3 | boot-sav-extra 4 | glade2script 5 | glade2script-python3 6 | gparted 7 | gparted-common 8 | grub-efi-amd64-bin 9 | grub-efi-amd64-signed 10 | language-selector-common 11 | libdebian-installer4:amd64 12 | mint-live-session 13 | pastebinit 14 | python3-debconf 15 | python3-pam 16 | shim-signed 17 | ubiquity 18 | ubiquity-casper 19 | ubiquity-frontend-gtk 20 | ubiquity-slideshow-mint 21 | ubiquity-ubuntu-artwork 22 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/manifests/mint-21.1-xfce/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | boot-repair 2 | boot-sav 3 | boot-sav-extra 4 | glade2script 5 | glade2script-python3 6 | gparted 7 | gparted-common 8 | grub-efi-amd64-bin 9 | grub-efi-amd64-signed 10 | language-selector-common 11 | libdebian-installer4:amd64 12 | mint-live-session 13 | pastebinit 14 | python3-debconf 15 | python3-pam 16 | shim-signed 17 | ubiquity 18 | ubiquity-casper 19 | ubiquity-frontend-gtk 20 | ubiquity-slideshow-mint 21 | ubiquity-ubuntu-artwork 22 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/manifests/mint-21.2-cinnamon/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | boot-repair 2 | boot-sav 3 | boot-sav-extra 4 | glade2script 5 | glade2script-python3 6 | gparted 7 | gparted-common 8 | grub-efi-amd64-bin 9 | grub-efi-amd64-signed 10 | language-selector-common 11 | libdebian-installer4:amd64 12 | mint-live-session 13 | pastebinit 14 | python3-debconf 15 | shim-signed 16 | ubiquity 17 | ubiquity-casper 18 | ubiquity-frontend-gtk 19 | ubiquity-slideshow-mint 20 | ubiquity-ubuntu-artwork 21 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/manifests/mint-21.2-mate/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | boot-repair 2 | boot-sav 3 | boot-sav-extra 4 | glade2script 5 | glade2script-python3 6 | gparted 7 | gparted-common 8 | grub-efi-amd64-bin 9 | grub-efi-amd64-signed 10 | language-selector-common 11 | libdebian-installer4:amd64 12 | mint-live-session 13 | pastebinit 14 | python3-debconf 15 | python3-pam 16 | shim-signed 17 | ubiquity 18 | ubiquity-casper 19 | ubiquity-frontend-gtk 20 | ubiquity-slideshow-mint 21 | ubiquity-ubuntu-artwork 22 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/manifests/mint-21.2-xfce/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | boot-repair 2 | boot-sav 3 | boot-sav-extra 4 | glade2script 5 | glade2script-python3 6 | gparted 7 | gparted-common 8 | grub-efi-amd64-bin 9 | grub-efi-amd64-signed 10 | language-selector-common 11 | libdebian-installer4:amd64 12 | mint-live-session 13 | pastebinit 14 | python3-debconf 15 | python3-pam 16 | shim-signed 17 | ubiquity 18 | ubiquity-casper 19 | ubiquity-frontend-gtk 20 | ubiquity-slideshow-mint 21 | ubiquity-ubuntu-artwork 22 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/manifests/mint-21.3-cinnamon/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | boot-repair 2 | boot-sav 3 | boot-sav-extra 4 | glade2script 5 | glade2script-python3 6 | gparted 7 | gparted-common 8 | grub-efi-amd64-bin 9 | grub-efi-amd64-signed 10 | language-selector-common 11 | libdebian-installer4:amd64 12 | mint-live-session 13 | pastebinit 14 | python3-debconf 15 | shim-signed 16 | ubiquity 17 | ubiquity-casper 18 | ubiquity-frontend-gtk 19 | ubiquity-slideshow-mint 20 | ubiquity-ubuntu-artwork 21 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/manifests/mint-21.3-mate/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | boot-repair 2 | boot-sav 3 | boot-sav-extra 4 | glade2script 5 | glade2script-python3 6 | gparted 7 | gparted-common 8 | grub-efi-amd64-bin 9 | grub-efi-amd64-signed 10 | language-selector-common 11 | libdebian-installer4:amd64 12 | mint-live-session 13 | pastebinit 14 | python3-debconf 15 | python3-pam 16 | shim-signed 17 | ubiquity 18 | ubiquity-casper 19 | ubiquity-frontend-gtk 20 | ubiquity-slideshow-mint 21 | ubiquity-ubuntu-artwork 22 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/manifests/mint-21.3-xfce/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | boot-repair 2 | boot-sav 3 | boot-sav-extra 4 | glade2script 5 | glade2script-python3 6 | gparted 7 | gparted-common 8 | grub-efi-amd64-bin 9 | grub-efi-amd64-signed 10 | language-selector-common 11 | libdebian-installer4:amd64 12 | mint-live-session 13 | pastebinit 14 | python3-debconf 15 | python3-pam 16 | shim-signed 17 | ubiquity 18 | ubiquity-casper 19 | ubiquity-frontend-gtk 20 | ubiquity-slideshow-mint 21 | ubiquity-ubuntu-artwork 22 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/manifests/mint-22-cinnamon/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | boot-repair 2 | boot-sav 3 | boot-sav-extra 4 | firefox-locale-de 5 | firefox-locale-en 6 | firefox-locale-es 7 | firefox-locale-fr 8 | firefox-locale-it 9 | firefox-locale-nl 10 | firefox-locale-pt 11 | firefox-locale-ru 12 | glade2script 13 | glade2script-python3 14 | gparted 15 | gparted-common 16 | grub-efi-amd64-bin 17 | grub-efi-amd64-signed 18 | hunspell-de-at-frami 19 | hunspell-de-ch-frami 20 | hunspell-de-de-frami 21 | hunspell-en-au 22 | hunspell-en-ca 23 | hunspell-en-gb 24 | hunspell-en-za 25 | hunspell-es 26 | hunspell-fr 27 | hunspell-fr-classical 28 | hunspell-it 29 | hunspell-nl 30 | hunspell-pt-br 31 | hunspell-ru 32 | hyphen-de 33 | hyphen-en-ca 34 | hyphen-en-gb 35 | hyphen-en-us 36 | hyphen-es 37 | hyphen-fr 38 | hyphen-it 39 | hyphen-nl 40 | hyphen-pt-br 41 | hyphen-pt-pt 42 | hyphen-ru 43 | language-pack-de 44 | language-pack-de-base 45 | language-pack-es 46 | language-pack-es-base 47 | language-pack-fr 48 | language-pack-fr-base 49 | language-pack-gnome-de 50 | language-pack-gnome-de-base 51 | language-pack-gnome-es 52 | language-pack-gnome-es-base 53 | language-pack-gnome-fr 54 | language-pack-gnome-fr-base 55 | language-pack-gnome-it 56 | language-pack-gnome-it-base 57 | language-pack-gnome-nl 58 | language-pack-gnome-nl-base 59 | language-pack-gnome-pt 60 | language-pack-gnome-pt-base 61 | language-pack-gnome-ru 62 | language-pack-gnome-ru-base 63 | language-pack-it 64 | language-pack-it-base 65 | language-pack-nl 66 | language-pack-nl-base 67 | language-pack-pt 68 | language-pack-pt-base 69 | language-pack-ru 70 | language-pack-ru-base 71 | language-selector-common 72 | libdebian-installer4:amd64 73 | libparted-fs-resize0t64:amd64 74 | libreoffice-help-de 75 | libreoffice-help-en-gb 76 | libreoffice-help-es 77 | libreoffice-help-fr 78 | libreoffice-help-it 79 | libreoffice-help-nl 80 | libreoffice-help-pt 81 | libreoffice-help-pt-br 82 | libreoffice-help-ru 83 | libreoffice-l10n-de 84 | libreoffice-l10n-en-gb 85 | libreoffice-l10n-en-za 86 | libreoffice-l10n-es 87 | libreoffice-l10n-fr 88 | libreoffice-l10n-it 89 | libreoffice-l10n-nl 90 | libreoffice-l10n-pt 91 | libreoffice-l10n-pt-br 92 | libreoffice-l10n-ru 93 | mint-live-session 94 | mythes-de 95 | mythes-de-ch 96 | mythes-en-au 97 | mythes-en-us 98 | mythes-es 99 | mythes-fr 100 | mythes-it 101 | mythes-pt-pt 102 | mythes-ru 103 | pastebinit 104 | python3-debconf 105 | shim-signed 106 | thunderbird-locale-de 107 | thunderbird-locale-en 108 | thunderbird-locale-es 109 | thunderbird-locale-fr 110 | thunderbird-locale-it 111 | thunderbird-locale-nl 112 | thunderbird-locale-pt 113 | thunderbird-locale-ru 114 | ubiquity 115 | ubiquity-casper 116 | ubiquity-frontend-gtk 117 | ubiquity-slideshow-mint 118 | ubiquity-ubuntu-artwork 119 | wbrazilian 120 | wbritish 121 | wfrench 122 | witalian 123 | wngerman 124 | wogerman 125 | wportuguese 126 | wspanish 127 | wswiss 128 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/manifests/mint-22-mate/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | boot-repair 2 | boot-sav 3 | boot-sav-extra 4 | firefox-locale-de 5 | firefox-locale-en 6 | firefox-locale-es 7 | firefox-locale-fr 8 | firefox-locale-it 9 | firefox-locale-nl 10 | firefox-locale-pt 11 | firefox-locale-ru 12 | glade2script 13 | glade2script-python3 14 | gparted 15 | gparted-common 16 | grub-efi-amd64-bin 17 | grub-efi-amd64-signed 18 | hunspell-de-at-frami 19 | hunspell-de-ch-frami 20 | hunspell-de-de-frami 21 | hunspell-en-au 22 | hunspell-en-ca 23 | hunspell-en-gb 24 | hunspell-en-za 25 | hunspell-es 26 | hunspell-fr 27 | hunspell-fr-classical 28 | hunspell-it 29 | hunspell-nl 30 | hunspell-pt-br 31 | hunspell-ru 32 | hyphen-de 33 | hyphen-en-ca 34 | hyphen-en-gb 35 | hyphen-en-us 36 | hyphen-es 37 | hyphen-fr 38 | hyphen-it 39 | hyphen-nl 40 | hyphen-pt-br 41 | hyphen-pt-pt 42 | hyphen-ru 43 | language-pack-de 44 | language-pack-de-base 45 | language-pack-es 46 | language-pack-es-base 47 | language-pack-fr 48 | language-pack-fr-base 49 | language-pack-gnome-de 50 | language-pack-gnome-de-base 51 | language-pack-gnome-es 52 | language-pack-gnome-es-base 53 | language-pack-gnome-fr 54 | language-pack-gnome-fr-base 55 | language-pack-gnome-it 56 | language-pack-gnome-it-base 57 | language-pack-gnome-nl 58 | language-pack-gnome-nl-base 59 | language-pack-gnome-pt 60 | language-pack-gnome-pt-base 61 | language-pack-gnome-ru 62 | language-pack-gnome-ru-base 63 | language-pack-it 64 | language-pack-it-base 65 | language-pack-nl 66 | language-pack-nl-base 67 | language-pack-pt 68 | language-pack-pt-base 69 | language-pack-ru 70 | language-pack-ru-base 71 | language-selector-common 72 | libdebian-installer4:amd64 73 | libparted-fs-resize0t64:amd64 74 | libreoffice-help-de 75 | libreoffice-help-en-gb 76 | libreoffice-help-es 77 | libreoffice-help-fr 78 | libreoffice-help-it 79 | libreoffice-help-nl 80 | libreoffice-help-pt 81 | libreoffice-help-pt-br 82 | libreoffice-help-ru 83 | libreoffice-l10n-de 84 | libreoffice-l10n-en-gb 85 | libreoffice-l10n-en-za 86 | libreoffice-l10n-es 87 | libreoffice-l10n-fr 88 | libreoffice-l10n-it 89 | libreoffice-l10n-nl 90 | libreoffice-l10n-pt 91 | libreoffice-l10n-pt-br 92 | libreoffice-l10n-ru 93 | mint-live-session 94 | mythes-de 95 | mythes-de-ch 96 | mythes-en-au 97 | mythes-en-us 98 | mythes-es 99 | mythes-fr 100 | mythes-it 101 | mythes-pt-pt 102 | mythes-ru 103 | pastebinit 104 | python3-debconf 105 | python3-pam 106 | shim-signed 107 | thunderbird-locale-de 108 | thunderbird-locale-en 109 | thunderbird-locale-es 110 | thunderbird-locale-fr 111 | thunderbird-locale-it 112 | thunderbird-locale-nl 113 | thunderbird-locale-pt 114 | thunderbird-locale-ru 115 | ubiquity 116 | ubiquity-casper 117 | ubiquity-frontend-gtk 118 | ubiquity-slideshow-mint 119 | ubiquity-ubuntu-artwork 120 | wbrazilian 121 | wbritish 122 | wfrench 123 | witalian 124 | wngerman 125 | wogerman 126 | wportuguese 127 | wspanish 128 | wswiss 129 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/manifests/mint-22-xfce/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | boot-repair 2 | boot-sav 3 | boot-sav-extra 4 | firefox-locale-de 5 | firefox-locale-en 6 | firefox-locale-es 7 | firefox-locale-fr 8 | firefox-locale-it 9 | firefox-locale-nl 10 | firefox-locale-pt 11 | firefox-locale-ru 12 | glade2script 13 | glade2script-python3 14 | gparted 15 | gparted-common 16 | grub-efi-amd64-bin 17 | grub-efi-amd64-signed 18 | hunspell-de-at-frami 19 | hunspell-de-ch-frami 20 | hunspell-de-de-frami 21 | hunspell-en-au 22 | hunspell-en-ca 23 | hunspell-en-gb 24 | hunspell-en-za 25 | hunspell-es 26 | hunspell-fr 27 | hunspell-fr-classical 28 | hunspell-it 29 | hunspell-nl 30 | hunspell-pt-br 31 | hunspell-ru 32 | hyphen-de 33 | hyphen-en-ca 34 | hyphen-en-gb 35 | hyphen-en-us 36 | hyphen-es 37 | hyphen-fr 38 | hyphen-it 39 | hyphen-nl 40 | hyphen-pt-br 41 | hyphen-pt-pt 42 | hyphen-ru 43 | language-pack-de 44 | language-pack-de-base 45 | language-pack-es 46 | language-pack-es-base 47 | language-pack-fr 48 | language-pack-fr-base 49 | language-pack-gnome-de 50 | language-pack-gnome-de-base 51 | language-pack-gnome-es 52 | language-pack-gnome-es-base 53 | language-pack-gnome-fr 54 | language-pack-gnome-fr-base 55 | language-pack-gnome-it 56 | language-pack-gnome-it-base 57 | language-pack-gnome-nl 58 | language-pack-gnome-nl-base 59 | language-pack-gnome-pt 60 | language-pack-gnome-pt-base 61 | language-pack-gnome-ru 62 | language-pack-gnome-ru-base 63 | language-pack-it 64 | language-pack-it-base 65 | language-pack-nl 66 | language-pack-nl-base 67 | language-pack-pt 68 | language-pack-pt-base 69 | language-pack-ru 70 | language-pack-ru-base 71 | language-selector-common 72 | libdebian-installer4:amd64 73 | libparted-fs-resize0t64:amd64 74 | libreoffice-help-de 75 | libreoffice-help-en-gb 76 | libreoffice-help-es 77 | libreoffice-help-fr 78 | libreoffice-help-it 79 | libreoffice-help-nl 80 | libreoffice-help-pt 81 | libreoffice-help-pt-br 82 | libreoffice-help-ru 83 | libreoffice-l10n-de 84 | libreoffice-l10n-en-gb 85 | libreoffice-l10n-en-za 86 | libreoffice-l10n-es 87 | libreoffice-l10n-fr 88 | libreoffice-l10n-it 89 | libreoffice-l10n-nl 90 | libreoffice-l10n-pt 91 | libreoffice-l10n-pt-br 92 | libreoffice-l10n-ru 93 | mint-live-session 94 | mythes-de 95 | mythes-de-ch 96 | mythes-en-au 97 | mythes-en-us 98 | mythes-es 99 | mythes-fr 100 | mythes-it 101 | mythes-pt-pt 102 | mythes-ru 103 | pastebinit 104 | python3-debconf 105 | python3-pam 106 | shim-signed 107 | thunderbird-locale-de 108 | thunderbird-locale-en 109 | thunderbird-locale-es 110 | thunderbird-locale-fr 111 | thunderbird-locale-it 112 | thunderbird-locale-nl 113 | thunderbird-locale-pt 114 | thunderbird-locale-ru 115 | ubiquity 116 | ubiquity-casper 117 | ubiquity-frontend-gtk 118 | ubiquity-slideshow-mint 119 | ubiquity-ubuntu-artwork 120 | wbrazilian 121 | wbritish 122 | wfrench 123 | witalian 124 | wngerman 125 | wogerman 126 | wportuguese 127 | wspanish 128 | wswiss 129 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/manifests/mint-22.1-cinnamon/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | boot-repair 2 | boot-sav 3 | boot-sav-extra 4 | firefox-locale-de 5 | firefox-locale-en 6 | firefox-locale-es 7 | firefox-locale-fr 8 | firefox-locale-it 9 | firefox-locale-nl 10 | firefox-locale-pt 11 | firefox-locale-ru 12 | glade2script 13 | glade2script-python3 14 | gparted 15 | gparted-common 16 | grub-efi-amd64-bin 17 | grub-efi-amd64-signed 18 | hunspell-de-at-frami 19 | hunspell-de-ch-frami 20 | hunspell-de-de-frami 21 | hunspell-en-au 22 | hunspell-en-ca 23 | hunspell-en-gb 24 | hunspell-en-za 25 | hunspell-es 26 | hunspell-fr 27 | hunspell-fr-classical 28 | hunspell-it 29 | hunspell-nl 30 | hunspell-pt-br 31 | hunspell-ru 32 | hyphen-de 33 | hyphen-en-ca 34 | hyphen-en-gb 35 | hyphen-en-us 36 | hyphen-es 37 | hyphen-fr 38 | hyphen-it 39 | hyphen-nl 40 | hyphen-pt-br 41 | hyphen-pt-pt 42 | hyphen-ru 43 | language-pack-de 44 | language-pack-de-base 45 | language-pack-es 46 | language-pack-es-base 47 | language-pack-fr 48 | language-pack-fr-base 49 | language-pack-gnome-de 50 | language-pack-gnome-de-base 51 | language-pack-gnome-es 52 | language-pack-gnome-es-base 53 | language-pack-gnome-fr 54 | language-pack-gnome-fr-base 55 | language-pack-gnome-it 56 | language-pack-gnome-it-base 57 | language-pack-gnome-nl 58 | language-pack-gnome-nl-base 59 | language-pack-gnome-pt 60 | language-pack-gnome-pt-base 61 | language-pack-gnome-ru 62 | language-pack-gnome-ru-base 63 | language-pack-it 64 | language-pack-it-base 65 | language-pack-nl 66 | language-pack-nl-base 67 | language-pack-pt 68 | language-pack-pt-base 69 | language-pack-ru 70 | language-pack-ru-base 71 | language-selector-common 72 | libdebian-installer4:amd64 73 | libparted-fs-resize0t64:amd64 74 | libreoffice-help-de 75 | libreoffice-help-en-gb 76 | libreoffice-help-es 77 | libreoffice-help-fr 78 | libreoffice-help-it 79 | libreoffice-help-nl 80 | libreoffice-help-pt 81 | libreoffice-help-pt-br 82 | libreoffice-help-ru 83 | libreoffice-l10n-de 84 | libreoffice-l10n-en-gb 85 | libreoffice-l10n-en-za 86 | libreoffice-l10n-es 87 | libreoffice-l10n-fr 88 | libreoffice-l10n-it 89 | libreoffice-l10n-nl 90 | libreoffice-l10n-pt 91 | libreoffice-l10n-pt-br 92 | libreoffice-l10n-ru 93 | mint-live-session 94 | mythes-de 95 | mythes-de-ch 96 | mythes-en-au 97 | mythes-en-us 98 | mythes-es 99 | mythes-fr 100 | mythes-it 101 | mythes-pt-pt 102 | mythes-ru 103 | pastebinit 104 | python3-debconf 105 | shim-signed 106 | thunderbird-locale-de 107 | thunderbird-locale-en 108 | thunderbird-locale-es 109 | thunderbird-locale-fr 110 | thunderbird-locale-it 111 | thunderbird-locale-nl 112 | thunderbird-locale-pt 113 | thunderbird-locale-ru 114 | ubiquity 115 | ubiquity-casper 116 | ubiquity-frontend-gtk 117 | ubiquity-slideshow-mint 118 | ubiquity-ubuntu-artwork 119 | wbrazilian 120 | wbritish 121 | wfrench 122 | witalian 123 | wngerman 124 | wogerman 125 | wportuguese 126 | wspanish 127 | wswiss 128 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/manifests/mint-22.1-mate/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | boot-repair 2 | boot-sav 3 | boot-sav-extra 4 | firefox-locale-de 5 | firefox-locale-en 6 | firefox-locale-es 7 | firefox-locale-fr 8 | firefox-locale-it 9 | firefox-locale-nl 10 | firefox-locale-pt 11 | firefox-locale-ru 12 | glade2script 13 | glade2script-python3 14 | gparted 15 | gparted-common 16 | grub-efi-amd64-bin 17 | grub-efi-amd64-signed 18 | hunspell-de-at-frami 19 | hunspell-de-ch-frami 20 | hunspell-de-de-frami 21 | hunspell-en-au 22 | hunspell-en-ca 23 | hunspell-en-gb 24 | hunspell-en-za 25 | hunspell-es 26 | hunspell-fr 27 | hunspell-fr-classical 28 | hunspell-it 29 | hunspell-nl 30 | hunspell-pt-br 31 | hunspell-ru 32 | hyphen-de 33 | hyphen-en-ca 34 | hyphen-en-gb 35 | hyphen-en-us 36 | hyphen-es 37 | hyphen-fr 38 | hyphen-it 39 | hyphen-nl 40 | hyphen-pt-br 41 | hyphen-pt-pt 42 | hyphen-ru 43 | language-pack-de 44 | language-pack-de-base 45 | language-pack-es 46 | language-pack-es-base 47 | language-pack-fr 48 | language-pack-fr-base 49 | language-pack-gnome-de 50 | language-pack-gnome-de-base 51 | language-pack-gnome-es 52 | language-pack-gnome-es-base 53 | language-pack-gnome-fr 54 | language-pack-gnome-fr-base 55 | language-pack-gnome-it 56 | language-pack-gnome-it-base 57 | language-pack-gnome-nl 58 | language-pack-gnome-nl-base 59 | language-pack-gnome-pt 60 | language-pack-gnome-pt-base 61 | language-pack-gnome-ru 62 | language-pack-gnome-ru-base 63 | language-pack-it 64 | language-pack-it-base 65 | language-pack-nl 66 | language-pack-nl-base 67 | language-pack-pt 68 | language-pack-pt-base 69 | language-pack-ru 70 | language-pack-ru-base 71 | language-selector-common 72 | libdebian-installer4:amd64 73 | libparted-fs-resize0t64:amd64 74 | libreoffice-help-de 75 | libreoffice-help-en-gb 76 | libreoffice-help-es 77 | libreoffice-help-fr 78 | libreoffice-help-it 79 | libreoffice-help-nl 80 | libreoffice-help-pt 81 | libreoffice-help-pt-br 82 | libreoffice-help-ru 83 | libreoffice-l10n-de 84 | libreoffice-l10n-en-gb 85 | libreoffice-l10n-en-za 86 | libreoffice-l10n-es 87 | libreoffice-l10n-fr 88 | libreoffice-l10n-it 89 | libreoffice-l10n-nl 90 | libreoffice-l10n-pt 91 | libreoffice-l10n-pt-br 92 | libreoffice-l10n-ru 93 | mint-live-session 94 | mythes-de 95 | mythes-de-ch 96 | mythes-en-au 97 | mythes-en-us 98 | mythes-es 99 | mythes-fr 100 | mythes-it 101 | mythes-pt-pt 102 | mythes-ru 103 | pastebinit 104 | python3-debconf 105 | python3-pam 106 | shim-signed 107 | thunderbird-locale-de 108 | thunderbird-locale-en 109 | thunderbird-locale-es 110 | thunderbird-locale-fr 111 | thunderbird-locale-it 112 | thunderbird-locale-nl 113 | thunderbird-locale-pt 114 | thunderbird-locale-ru 115 | ubiquity 116 | ubiquity-casper 117 | ubiquity-frontend-gtk 118 | ubiquity-slideshow-mint 119 | ubiquity-ubuntu-artwork 120 | wbrazilian 121 | wbritish 122 | wfrench 123 | witalian 124 | wngerman 125 | wogerman 126 | wportuguese 127 | wspanish 128 | wswiss 129 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/manifests/mint-22.1-xfce/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | boot-repair 2 | boot-sav 3 | boot-sav-extra 4 | firefox-locale-de 5 | firefox-locale-en 6 | firefox-locale-es 7 | firefox-locale-fr 8 | firefox-locale-it 9 | firefox-locale-nl 10 | firefox-locale-pt 11 | firefox-locale-ru 12 | glade2script 13 | glade2script-python3 14 | gparted 15 | gparted-common 16 | grub-efi-amd64-bin 17 | grub-efi-amd64-signed 18 | hunspell-de-at-frami 19 | hunspell-de-ch-frami 20 | hunspell-de-de-frami 21 | hunspell-en-au 22 | hunspell-en-ca 23 | hunspell-en-gb 24 | hunspell-en-za 25 | hunspell-es 26 | hunspell-fr 27 | hunspell-fr-classical 28 | hunspell-it 29 | hunspell-nl 30 | hunspell-pt-br 31 | hunspell-ru 32 | hyphen-de 33 | hyphen-en-ca 34 | hyphen-en-gb 35 | hyphen-en-us 36 | hyphen-es 37 | hyphen-fr 38 | hyphen-it 39 | hyphen-nl 40 | hyphen-pt-br 41 | hyphen-pt-pt 42 | hyphen-ru 43 | language-pack-de 44 | language-pack-de-base 45 | language-pack-es 46 | language-pack-es-base 47 | language-pack-fr 48 | language-pack-fr-base 49 | language-pack-gnome-de 50 | language-pack-gnome-de-base 51 | language-pack-gnome-es 52 | language-pack-gnome-es-base 53 | language-pack-gnome-fr 54 | language-pack-gnome-fr-base 55 | language-pack-gnome-it 56 | language-pack-gnome-it-base 57 | language-pack-gnome-nl 58 | language-pack-gnome-nl-base 59 | language-pack-gnome-pt 60 | language-pack-gnome-pt-base 61 | language-pack-gnome-ru 62 | language-pack-gnome-ru-base 63 | language-pack-it 64 | language-pack-it-base 65 | language-pack-nl 66 | language-pack-nl-base 67 | language-pack-pt 68 | language-pack-pt-base 69 | language-pack-ru 70 | language-pack-ru-base 71 | language-selector-common 72 | libdebian-installer4:amd64 73 | libparted-fs-resize0t64:amd64 74 | libreoffice-help-de 75 | libreoffice-help-en-gb 76 | libreoffice-help-es 77 | libreoffice-help-fr 78 | libreoffice-help-it 79 | libreoffice-help-nl 80 | libreoffice-help-pt 81 | libreoffice-help-pt-br 82 | libreoffice-help-ru 83 | libreoffice-l10n-de 84 | libreoffice-l10n-en-gb 85 | libreoffice-l10n-en-za 86 | libreoffice-l10n-es 87 | libreoffice-l10n-fr 88 | libreoffice-l10n-it 89 | libreoffice-l10n-nl 90 | libreoffice-l10n-pt 91 | libreoffice-l10n-pt-br 92 | libreoffice-l10n-ru 93 | mint-live-session 94 | mythes-de 95 | mythes-de-ch 96 | mythes-en-au 97 | mythes-en-us 98 | mythes-es 99 | mythes-fr 100 | mythes-it 101 | mythes-pt-pt 102 | mythes-ru 103 | pastebinit 104 | python3-debconf 105 | python3-pam 106 | shim-signed 107 | thunderbird-locale-de 108 | thunderbird-locale-en 109 | thunderbird-locale-es 110 | thunderbird-locale-fr 111 | thunderbird-locale-it 112 | thunderbird-locale-nl 113 | thunderbird-locale-pt 114 | thunderbird-locale-ru 115 | ubiquity 116 | ubiquity-casper 117 | ubiquity-frontend-gtk 118 | ubiquity-slideshow-mint 119 | ubiquity-ubuntu-artwork 120 | wbrazilian 121 | wbritish 122 | wfrench 123 | witalian 124 | wngerman 125 | wogerman 126 | wportuguese 127 | wspanish 128 | wswiss 129 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/manifests/mint-specific.list: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/manifests/ubuntu-18.04/filesystem.manifest-minimal-remove: -------------------------------------------------------------------------------- 1 | thunderbird 2 | transmission-gtk 3 | gnome-todo 4 | baobab 5 | rhythmbox 6 | cheese 7 | vino 8 | shotwell 9 | totem 10 | usb-creator-gtk 11 | deja-dup 12 | gnome-calendar 13 | remmina 14 | simple-scan 15 | thunderbird-gnome-support 16 | aisleriot 17 | gnome-mahjongg 18 | gnome-mines 19 | gnome-sudoku 20 | branding-ubuntu 21 | libreoffice-style-breeze 22 | libreoffice-gnome 23 | libreoffice-writer 24 | libreoffice-calc 25 | libreoffice-impress 26 | libreoffice-math 27 | libreoffice-ogltrans 28 | libreoffice-pdfimport 29 | example-content 30 | ubuntu-web-launchers 31 | libreoffice-l10n-en-gb 32 | libreoffice-l10n-es 33 | libreoffice-l10n-zh-cn 34 | libreoffice-l10n-zh-tw 35 | libreoffice-l10n-pt 36 | libreoffice-l10n-pt-br 37 | libreoffice-l10n-de 38 | libreoffice-l10n-fr 39 | libreoffice-l10n-it 40 | libreoffice-l10n-ru 41 | libreoffice-l10n-en-za 42 | libreoffice-help-en-gb 43 | libreoffice-help-es 44 | libreoffice-help-zh-cn 45 | libreoffice-help-zh-tw 46 | libreoffice-help-pt 47 | libreoffice-help-pt-br 48 | libreoffice-help-de 49 | libreoffice-help-fr 50 | libreoffice-help-it 51 | libreoffice-help-ru 52 | libreoffice-help-en-us 53 | thunderbird-locale-en 54 | thunderbird-locale-en-gb 55 | thunderbird-locale-en-us 56 | thunderbird-locale-es 57 | thunderbird-locale-es-ar 58 | thunderbird-locale-es-es 59 | thunderbird-locale-zh-cn 60 | thunderbird-locale-zh-hans 61 | thunderbird-locale-zh-hant 62 | thunderbird-locale-zh-tw 63 | thunderbird-locale-pt 64 | thunderbird-locale-pt-br 65 | thunderbird-locale-pt-pt 66 | thunderbird-locale-de 67 | thunderbird-locale-fr 68 | thunderbird-locale-it 69 | thunderbird-locale-ru 70 | gir1.2-rb-3.0 71 | gir1.2-totem-1.0 72 | gir1.2-totemplparser-1.0 73 | guile-2.0-libs 74 | libabw-0.1-1 75 | libavahi-ui-gtk3-0 76 | libdmapsharing-3.0-2 77 | libexttextcat-2.0-0 78 | libexttextcat-data 79 | libfreehand-0.1-1 80 | libgnome-games-support-1-3 81 | libgnome-games-support-common 82 | libgom-1.0-0 83 | libgrilo-0.3-0 84 | liblangtag-common 85 | liblangtag1 86 | libmessaging-menu0 87 | libmhash2 88 | libminiupnpc10 89 | libmwaw-0.3-3 90 | libmythes-1.2-0 91 | libnatpmp1 92 | libneon27-gnutls 93 | liborcus-0.13-0 94 | libpagemaker-0.0-0 95 | librdf0 96 | libreoffice-avmedia-backend-gstreamer 97 | libreoffice-base-core 98 | libreoffice-common 99 | libreoffice-core 100 | libreoffice-draw 101 | libreoffice-gtk3 102 | libreoffice-style-elementary 103 | libreoffice-style-galaxy 104 | libreoffice-style-tango 105 | libraptor2-0 106 | librasqal3 107 | librevenge-0.0-0 108 | librhythmbox-core10 109 | libtotem0 110 | libvisio-0.1-1 111 | libwpd-0.10-10 112 | libwpg-0.3-3 113 | libwps-0.4-4 114 | libyajl2 115 | python3-uno 116 | rhythmbox-data 117 | rhythmbox-plugin-alternative-toolbar 118 | rhythmbox-plugins 119 | remmina-common 120 | remmina-plugin-rdp 121 | remmina-plugin-secret 122 | remmina-plugin-vnc 123 | duplicity 124 | seahorse-daemon 125 | shotwell-common 126 | totem-common 127 | totem-plugins 128 | transmission-common 129 | cheese-common 130 | gnome-todo-common 131 | libgnome-todo 132 | gnome-video-effects 133 | libcheese-gtk25 134 | libcheese8 135 | uno-libs3 136 | ure 137 | zeitgeist-core 138 | hunspell-de-at-frami 139 | hunspell-de-ch-frami 140 | hunspell-de-de-frami 141 | hunspell-en-au 142 | hunspell-en-ca 143 | hunspell-en-gb 144 | hunspell-en-za 145 | hunspell-es 146 | hunspell-fr 147 | hunspell-fr-classical 148 | hunspell-it 149 | hunspell-pt-br 150 | hunspell-pt-pt 151 | hunspell-ru 152 | hyphen-de 153 | hyphen-en-ca 154 | hyphen-en-gb 155 | hyphen-en-us 156 | hyphen-fr 157 | hyphen-hr 158 | hyphen-it 159 | hyphen-pl 160 | hyphen-pt-br 161 | hyphen-pt-pt 162 | hyphen-ru 163 | mythes-de 164 | mythes-de-ch 165 | mythes-en-au 166 | mythes-en-us 167 | mythes-fr 168 | mythes-it 169 | mythes-pt-pt 170 | mythes-ru 171 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/manifests/ubuntu-18.04/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | apt-clone 2 | archdetect-deb 3 | btrfs-progs 4 | btrfs-tools 5 | casper 6 | cifs-utils 7 | cryptsetup 8 | cryptsetup-bin 9 | dmeventd 10 | dmraid 11 | dpkg-repack 12 | firefox-locale-de 13 | firefox-locale-en 14 | firefox-locale-es 15 | firefox-locale-fr 16 | firefox-locale-it 17 | firefox-locale-pt 18 | firefox-locale-ru 19 | firefox-locale-zh-hans 20 | fonts-arphic-ukai 21 | fonts-arphic-uming 22 | gir1.2-timezonemap-1.0 23 | gir1.2-xkl-1.0:amd64 24 | gnome-getting-started-docs-de 25 | gnome-getting-started-docs-es 26 | gnome-getting-started-docs-fr 27 | gnome-getting-started-docs-it 28 | gnome-getting-started-docs-pt 29 | gnome-getting-started-docs-ru 30 | gnome-user-docs-de 31 | gnome-user-docs-es 32 | gnome-user-docs-fr 33 | gnome-user-docs-it 34 | gnome-user-docs-pt 35 | gnome-user-docs-ru 36 | gnome-user-docs-zh-hans 37 | gparted 38 | gtk-im-libthai:amd64 39 | hunspell-de-at-frami 40 | hunspell-de-ch-frami 41 | hunspell-de-de-frami 42 | hunspell-en-au 43 | hunspell-en-ca 44 | hunspell-en-gb 45 | hunspell-en-za 46 | hunspell-es 47 | hunspell-fr 48 | hunspell-fr-classical 49 | hunspell-it 50 | hunspell-pt-br 51 | hunspell-pt-pt 52 | hunspell-ru 53 | hyphen-de 54 | hyphen-en-ca 55 | hyphen-en-gb 56 | hyphen-en-us 57 | hyphen-fr 58 | hyphen-it 59 | hyphen-pt-br 60 | hyphen-pt-pt 61 | hyphen-ru 62 | ibus-chewing 63 | ibus-hangul 64 | ibus-libpinyin 65 | ibus-m17n 66 | ibus-mozc 67 | ibus-table-cangjie 68 | ibus-table-cangjie-big 69 | ibus-table-cangjie3 70 | ibus-table-cangjie5 71 | ibus-table-quick-classic 72 | ibus-table-wubi 73 | ibus-unikey 74 | jfsutils 75 | kpartx 76 | kpartx-boot 77 | language-pack-de 78 | language-pack-de-base 79 | language-pack-en 80 | language-pack-en-base 81 | language-pack-es 82 | language-pack-es-base 83 | language-pack-fr 84 | language-pack-fr-base 85 | language-pack-gnome-de 86 | language-pack-gnome-de-base 87 | language-pack-gnome-en 88 | language-pack-gnome-en-base 89 | language-pack-gnome-es 90 | language-pack-gnome-es-base 91 | language-pack-gnome-fr 92 | language-pack-gnome-fr-base 93 | language-pack-gnome-it 94 | language-pack-gnome-it-base 95 | language-pack-gnome-pt 96 | language-pack-gnome-pt-base 97 | language-pack-gnome-ru 98 | language-pack-gnome-ru-base 99 | language-pack-gnome-zh-hans 100 | language-pack-gnome-zh-hans-base 101 | language-pack-it 102 | language-pack-it-base 103 | language-pack-pt 104 | language-pack-pt-base 105 | language-pack-ru 106 | language-pack-ru-base 107 | language-pack-zh-hans 108 | language-pack-zh-hans-base 109 | libatkmm-1.6-1v5:amd64 110 | libcairomm-1.0-1v5:amd64 111 | libchewing3:amd64 112 | libchewing3-data 113 | libdebian-installer4:amd64 114 | libdevmapper-event1.02.1:amd64 115 | libdmraid1.0.0.rc16 116 | libdouble-conversion1:amd64 117 | libglibmm-2.4-1v5:amd64 118 | libgtkmm-2.4-1v5:amd64 119 | libhangul-data 120 | libhangul1:amd64 121 | libido3-0.1-0:amd64 122 | liblvm2app2.2:amd64 123 | liblvm2cmd2.02:amd64 124 | libm17n-0:amd64 125 | libotf0:amd64 126 | libpangomm-1.4-1v5:amd64 127 | libpinyin-data:amd64 128 | libpinyin13:amd64 129 | libpython-stdlib:amd64 130 | libqt5core5a:amd64 131 | libqt5dbus5:amd64 132 | libqt5gui5:amd64 133 | libqt5network5:amd64 134 | libqt5svg5:amd64 135 | libqt5widgets5:amd64 136 | libreadline5:amd64 137 | libreoffice-help-de 138 | libreoffice-help-en-gb 139 | libreoffice-help-en-us 140 | libreoffice-help-es 141 | libreoffice-help-fr 142 | libreoffice-help-it 143 | libreoffice-help-pt 144 | libreoffice-help-pt-br 145 | libreoffice-help-ru 146 | libreoffice-help-zh-cn 147 | libreoffice-help-zh-tw 148 | libreoffice-l10n-de 149 | libreoffice-l10n-en-gb 150 | libreoffice-l10n-en-za 151 | libreoffice-l10n-es 152 | libreoffice-l10n-fr 153 | libreoffice-l10n-it 154 | libreoffice-l10n-pt 155 | libreoffice-l10n-pt-br 156 | libreoffice-l10n-ru 157 | libreoffice-l10n-zh-cn 158 | libreoffice-l10n-zh-tw 159 | libsigc++-2.0-0v5:amd64 160 | libtimezonemap-data 161 | libtimezonemap1:amd64 162 | libxcb-xinerama0:amd64 163 | libzinnia0v5 164 | linux-signed-generic 165 | localechooser-data 166 | lupin-casper 167 | lvm2 168 | m17n-db 169 | mokutil 170 | mozc-data 171 | mozc-server 172 | mozc-utils-gui 173 | mythes-de 174 | mythes-de-ch 175 | mythes-en-au 176 | mythes-en-us 177 | mythes-fr 178 | mythes-it 179 | mythes-pt-pt 180 | mythes-ru 181 | python 182 | python-crypto 183 | python-ldb:amd64 184 | python-minimal 185 | python-samba 186 | python-tdb 187 | python2.7 188 | python2.7-minimal 189 | python3-icu 190 | python3-pam 191 | qt5-gtk-platformtheme:amd64 192 | qttranslations5-l10n 193 | rdate 194 | reiserfsprogs 195 | samba-common 196 | samba-common-bin 197 | tegaki-zinnia-japanese 198 | thunderbird-locale-de 199 | thunderbird-locale-en 200 | thunderbird-locale-en-gb 201 | thunderbird-locale-en-us 202 | thunderbird-locale-es 203 | thunderbird-locale-es-ar 204 | thunderbird-locale-es-es 205 | thunderbird-locale-fr 206 | thunderbird-locale-it 207 | thunderbird-locale-pt 208 | thunderbird-locale-pt-br 209 | thunderbird-locale-pt-pt 210 | thunderbird-locale-ru 211 | thunderbird-locale-zh-cn 212 | thunderbird-locale-zh-hans 213 | thunderbird-locale-zh-hant 214 | thunderbird-locale-zh-tw 215 | ubiquity 216 | ubiquity-casper 217 | ubiquity-frontend-gtk 218 | ubiquity-slideshow-ubuntu 219 | ubiquity-ubuntu-artwork 220 | user-setup 221 | wbrazilian 222 | wbritish 223 | wfrench 224 | witalian 225 | wngerman 226 | wogerman 227 | wportuguese 228 | wspanish 229 | wswiss 230 | xfsprogs 231 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/manifests/ubuntu-20.04/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | apt-clone 2 | archdetect-deb 3 | btrfs-progs 4 | casper 5 | cifs-utils 6 | cryptsetup 7 | cryptsetup-bin 8 | cryptsetup-initramfs 9 | cryptsetup-run 10 | dctrl-tools 11 | dmeventd 12 | dmraid 13 | dpkg-repack 14 | finalrd 15 | firefox-locale-de 16 | firefox-locale-en 17 | firefox-locale-es 18 | firefox-locale-fr 19 | firefox-locale-it 20 | firefox-locale-pt 21 | firefox-locale-ru 22 | firefox-locale-zh-hans 23 | fonts-arphic-ukai 24 | fonts-arphic-uming 25 | gir1.2-timezonemap-1.0 26 | gir1.2-xkl-1.0:amd64 27 | gnome-getting-started-docs-de 28 | gnome-getting-started-docs-es 29 | gnome-getting-started-docs-fr 30 | gnome-getting-started-docs-it 31 | gnome-getting-started-docs-pt 32 | gnome-getting-started-docs-ru 33 | gnome-user-docs-de 34 | gnome-user-docs-es 35 | gnome-user-docs-fr 36 | gnome-user-docs-it 37 | gnome-user-docs-pt 38 | gnome-user-docs-ru 39 | gnome-user-docs-zh-hans 40 | gparted 41 | gparted-common 42 | gtk-im-libthai:amd64 43 | hunspell-de-at-frami 44 | hunspell-de-ch-frami 45 | hunspell-de-de-frami 46 | hunspell-en-au 47 | hunspell-en-ca 48 | hunspell-en-gb 49 | hunspell-en-za 50 | hunspell-es 51 | hunspell-fr 52 | hunspell-fr-classical 53 | hunspell-it 54 | hunspell-pt-br 55 | hunspell-pt-pt 56 | hunspell-ru 57 | hyphen-de 58 | hyphen-en-ca 59 | hyphen-en-gb 60 | hyphen-en-us 61 | hyphen-es 62 | hyphen-fr 63 | hyphen-it 64 | hyphen-pt-br 65 | hyphen-pt-pt 66 | hyphen-ru 67 | ibus-chewing 68 | ibus-hangul 69 | ibus-libpinyin 70 | ibus-m17n 71 | ibus-mozc 72 | ibus-table-cangjie 73 | ibus-table-cangjie-big 74 | ibus-table-cangjie3 75 | ibus-table-cangjie5 76 | ibus-table-quick-classic 77 | ibus-table-wubi 78 | ibus-unikey 79 | jfsutils 80 | kpartx 81 | kpartx-boot 82 | language-pack-de 83 | language-pack-de-base 84 | language-pack-en 85 | language-pack-en-base 86 | language-pack-es 87 | language-pack-es-base 88 | language-pack-fr 89 | language-pack-fr-base 90 | language-pack-gnome-de 91 | language-pack-gnome-de-base 92 | language-pack-gnome-en 93 | language-pack-gnome-en-base 94 | language-pack-gnome-es 95 | language-pack-gnome-es-base 96 | language-pack-gnome-fr 97 | language-pack-gnome-fr-base 98 | language-pack-gnome-it 99 | language-pack-gnome-it-base 100 | language-pack-gnome-pt 101 | language-pack-gnome-pt-base 102 | language-pack-gnome-ru 103 | language-pack-gnome-ru-base 104 | language-pack-gnome-zh-hans 105 | language-pack-gnome-zh-hans-base 106 | language-pack-it 107 | language-pack-it-base 108 | language-pack-pt 109 | language-pack-pt-base 110 | language-pack-ru 111 | language-pack-ru-base 112 | language-pack-zh-hans 113 | language-pack-zh-hans-base 114 | libaio1:amd64 115 | libchewing3:amd64 116 | libchewing3-data 117 | libdebian-installer4:amd64 118 | libdevmapper-event1.02.1:amd64 119 | libdmraid1.0.0.rc16 120 | libhangul-data 121 | libhangul1:amd64 122 | liblvm2cmd2.03:amd64 123 | libm17n-0:amd64 124 | libnvpair1linux 125 | libotf0:amd64 126 | libpinyin-data:amd64 127 | libpinyin13:amd64 128 | libreadline5:amd64 129 | libreoffice-help-common 130 | libreoffice-help-de 131 | libreoffice-help-en-gb 132 | libreoffice-help-en-us 133 | libreoffice-help-es 134 | libreoffice-help-fr 135 | libreoffice-help-it 136 | libreoffice-help-pt 137 | libreoffice-help-pt-br 138 | libreoffice-help-ru 139 | libreoffice-help-zh-cn 140 | libreoffice-help-zh-tw 141 | libreoffice-l10n-de 142 | libreoffice-l10n-en-gb 143 | libreoffice-l10n-en-za 144 | libreoffice-l10n-es 145 | libreoffice-l10n-fr 146 | libreoffice-l10n-it 147 | libreoffice-l10n-pt 148 | libreoffice-l10n-pt-br 149 | libreoffice-l10n-ru 150 | libreoffice-l10n-zh-cn 151 | libreoffice-l10n-zh-tw 152 | libtimezonemap-data 153 | libtimezonemap1:amd64 154 | libuutil1linux 155 | libzfs2linux 156 | libzpool2linux 157 | localechooser-data 158 | lupin-casper 159 | lvm2 160 | m17n-db 161 | mokutil 162 | mozc-data 163 | mozc-server 164 | mythes-de 165 | mythes-de-ch 166 | mythes-en-au 167 | mythes-en-us 168 | mythes-es 169 | mythes-fr 170 | mythes-it 171 | mythes-pt-pt 172 | mythes-ru 173 | python3-icu 174 | python3-pam 175 | rdate 176 | reiserfsprogs 177 | tegaki-zinnia-japanese 178 | thin-provisioning-tools 179 | thunderbird-locale-de 180 | thunderbird-locale-en 181 | thunderbird-locale-en-gb 182 | thunderbird-locale-en-us 183 | thunderbird-locale-es 184 | thunderbird-locale-es-ar 185 | thunderbird-locale-es-es 186 | thunderbird-locale-fr 187 | thunderbird-locale-it 188 | thunderbird-locale-pt 189 | thunderbird-locale-pt-br 190 | thunderbird-locale-pt-pt 191 | thunderbird-locale-ru 192 | thunderbird-locale-zh-cn 193 | thunderbird-locale-zh-hans 194 | thunderbird-locale-zh-hant 195 | thunderbird-locale-zh-tw 196 | ubiquity 197 | ubiquity-casper 198 | ubiquity-frontend-gtk 199 | ubiquity-slideshow-ubuntu 200 | ubiquity-ubuntu-artwork 201 | user-setup 202 | wbrazilian 203 | wbritish 204 | wfrench 205 | witalian 206 | wngerman 207 | wogerman 208 | wportuguese 209 | wspanish 210 | wswiss 211 | xfsprogs 212 | zfs-initramfs 213 | zfs-zed 214 | zfsutils-linux 215 | zsys 216 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/manifests/ubuntu-22.04/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | adcli 2 | btrfs-progs 3 | casper 4 | cifs-utils 5 | cryptsetup 6 | cryptsetup-bin 7 | cryptsetup-initramfs 8 | dbus-x11 9 | dctrl-tools 10 | dmeventd 11 | dmraid 12 | dpkg-repack 13 | efibootmgr 14 | finalrd 15 | fonts-arphic-ukai 16 | fonts-arphic-uming 17 | gir1.2-timezonemap-1.0 18 | gir1.2-xkl-1.0:amd64 19 | gnome-user-docs-de 20 | gnome-user-docs-es 21 | gnome-user-docs-fr 22 | gnome-user-docs-it 23 | gnome-user-docs-pt 24 | gnome-user-docs-ru 25 | gnome-user-docs-zh-hans 26 | gparted 27 | gparted-common 28 | grub-efi-amd64-bin 29 | grub-efi-amd64-signed 30 | gtk-im-libthai:amd64 31 | hunspell-de-at-frami 32 | hunspell-de-ch-frami 33 | hunspell-de-de-frami 34 | hunspell-en-au 35 | hunspell-en-ca 36 | hunspell-en-gb 37 | hunspell-en-za 38 | hunspell-es 39 | hunspell-fr 40 | hunspell-fr-classical 41 | hunspell-it 42 | hunspell-pt-br 43 | hunspell-pt-pt 44 | hunspell-ru 45 | hyphen-de 46 | hyphen-en-ca 47 | hyphen-en-gb 48 | hyphen-en-us 49 | hyphen-es 50 | hyphen-fr 51 | hyphen-it 52 | hyphen-pt-br 53 | hyphen-pt-pt 54 | hyphen-ru 55 | ibus-chewing 56 | ibus-hangul 57 | ibus-libpinyin 58 | ibus-m17n 59 | ibus-mozc 60 | ibus-table-cangjie 61 | ibus-table-cangjie-big 62 | ibus-table-cangjie3 63 | ibus-table-cangjie5 64 | ibus-table-quick-classic 65 | ibus-table-wubi 66 | ibus-unikey 67 | jfsutils 68 | keyutils 69 | kpartx 70 | kpartx-boot 71 | language-pack-de 72 | language-pack-de-base 73 | language-pack-en 74 | language-pack-en-base 75 | language-pack-es 76 | language-pack-es-base 77 | language-pack-fr 78 | language-pack-fr-base 79 | language-pack-gnome-de 80 | language-pack-gnome-de-base 81 | language-pack-gnome-en 82 | language-pack-gnome-en-base 83 | language-pack-gnome-es 84 | language-pack-gnome-es-base 85 | language-pack-gnome-fr 86 | language-pack-gnome-fr-base 87 | language-pack-gnome-it 88 | language-pack-gnome-it-base 89 | language-pack-gnome-pt 90 | language-pack-gnome-pt-base 91 | language-pack-gnome-ru 92 | language-pack-gnome-ru-base 93 | language-pack-gnome-zh-hans 94 | language-pack-gnome-zh-hans-base 95 | language-pack-it 96 | language-pack-it-base 97 | language-pack-pt 98 | language-pack-pt-base 99 | language-pack-ru 100 | language-pack-ru-base 101 | language-pack-zh-hans 102 | language-pack-zh-hans-base 103 | libaio1:amd64 104 | libchewing3:amd64 105 | libchewing3-data 106 | libdebian-installer4:amd64 107 | libdevmapper-event1.02.1:amd64 108 | libdmraid1.0.0.rc16:amd64 109 | libdpkg-perl 110 | libfile-fcntllock-perl 111 | libhangul-data 112 | libhangul1:amd64 113 | liblvm2cmd2.03:amd64 114 | libm17n-0:amd64 115 | libmarisa0:amd64 116 | libnvpair3linux 117 | libopencc-data 118 | libopencc1.1 119 | libotf1:amd64 120 | libpinyin-data:amd64 121 | libpinyin13:amd64 122 | libreoffice-help-common 123 | libreoffice-help-de 124 | libreoffice-help-en-gb 125 | libreoffice-help-en-us 126 | libreoffice-help-es 127 | libreoffice-help-fr 128 | libreoffice-help-it 129 | libreoffice-help-pt 130 | libreoffice-help-pt-br 131 | libreoffice-help-ru 132 | libreoffice-help-zh-cn 133 | libreoffice-help-zh-tw 134 | libreoffice-l10n-de 135 | libreoffice-l10n-en-gb 136 | libreoffice-l10n-en-za 137 | libreoffice-l10n-es 138 | libreoffice-l10n-fr 139 | libreoffice-l10n-it 140 | libreoffice-l10n-pt 141 | libreoffice-l10n-pt-br 142 | libreoffice-l10n-ru 143 | libreoffice-l10n-zh-cn 144 | libreoffice-l10n-zh-tw 145 | libtimezonemap-data 146 | libtimezonemap1:amd64 147 | libuutil3linux 148 | libzfs4linux 149 | libzpool5linux 150 | lvm2 151 | m17n-db 152 | mokutil 153 | mozc-data 154 | mozc-server 155 | mythes-de 156 | mythes-de-ch 157 | mythes-en-au 158 | mythes-en-us 159 | mythes-es 160 | mythes-fr 161 | mythes-it 162 | mythes-pt-pt 163 | mythes-ru 164 | python3-icu 165 | python3-pam 166 | rdate 167 | realmd 168 | reiserfsprogs 169 | shim-signed 170 | thin-provisioning-tools 171 | thunderbird-locale-de 172 | thunderbird-locale-en 173 | thunderbird-locale-en-gb 174 | thunderbird-locale-en-us 175 | thunderbird-locale-es 176 | thunderbird-locale-es-ar 177 | thunderbird-locale-es-es 178 | thunderbird-locale-fr 179 | thunderbird-locale-it 180 | thunderbird-locale-pt 181 | thunderbird-locale-pt-br 182 | thunderbird-locale-pt-pt 183 | thunderbird-locale-ru 184 | thunderbird-locale-zh-cn 185 | thunderbird-locale-zh-hans 186 | thunderbird-locale-zh-hant 187 | thunderbird-locale-zh-tw 188 | ubiquity 189 | ubiquity-casper 190 | ubiquity-frontend-gtk 191 | ubiquity-slideshow-ubuntu 192 | ubiquity-ubuntu-artwork 193 | user-setup 194 | wbrazilian 195 | wbritish 196 | wfrench 197 | witalian 198 | wngerman 199 | wogerman 200 | wportuguese 201 | wspanish 202 | wswiss 203 | xfsprogs 204 | zfs-initramfs 205 | zfs-zed 206 | zfsutils-linux 207 | zsys 208 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/manifests/ubuntu-mate-18.04/filesystem.manifest-minimal-remove: -------------------------------------------------------------------------------- 1 | caja-eiciel 2 | caja-gtkhash 3 | caja-rename 4 | deja-dup 5 | deja-dup-caja 6 | duplicity 7 | folder-color 8 | folder-color-caja 9 | folder-color-common 10 | gtkhash 11 | gufw 12 | gnome-disk-utility 13 | redshift 14 | redshift-gtk 15 | shotwell 16 | shotwell-common 17 | simple-scan 18 | usb-creator-gtk 19 | brasero 20 | brasero-cdrkit 21 | brasero-common 22 | cdrdao 23 | dvd+rw+tools 24 | dvdauthor 25 | libbrasero-media3-1 26 | libnautilus-extension1a 27 | nautilus-extension-brasero 28 | cheese 29 | cheese-common 30 | gnome-video-effects 31 | gstreamer1.0-clutter-3.0 32 | libcheese-gtk25 33 | libcheese8 34 | libclutter-1.0-0 35 | libclutter-1.0-common 36 | libclutter-gst-3.0-0 37 | libclutter-gtk-1.0-0 38 | libcogl20 39 | libcogl-common 40 | libcogl-pango20 41 | libcogl-path20 42 | hunspell-de-at-frami 43 | hunspell-de-ch-frami 44 | hunspell-de-de-frami 45 | hunspell-en-au 46 | hunspell-en-ca 47 | hunspell-en-gb 48 | hunspell-en-za 49 | hunspell-es 50 | hunspell-fr 51 | hunspell-fr-classical 52 | hunspell-it 53 | hunspell-pt-br 54 | hunspell-pt-pt 55 | hunspell-ru 56 | hyphen-de 57 | hyphen-en-ca 58 | hyphen-en-gb 59 | hyphen-en-us 60 | hyphen-fr 61 | hyphen-hr 62 | hyphen-it 63 | hyphen-pl 64 | hyphen-pt-br 65 | hyphen-pt-pt 66 | hyphen-ru 67 | mythes-de 68 | mythes-de-ch 69 | mythes-en-au 70 | mythes-en-us 71 | mythes-fr 72 | mythes-it 73 | mythes-pt-pt 74 | mythes-ru 75 | ubuntu-mate-guide 76 | gir1.2-rb-3.0 77 | libdmapsharing-3.0-2 78 | libgom-1.0-0 79 | libgrilo-0.3-0 80 | librhythmbox-core10 81 | libtotem-plparser18 82 | libtotem-plparser-common 83 | rhythmbox 84 | rhythmbox-data 85 | rhythmbox-plugin-cdrecorder 86 | rhythmbox-plugin-alternative-toolbar 87 | rhythmbox-plugins 88 | caja-seahorse 89 | libcryptui0a 90 | seahorse 91 | seahorse-daemon 92 | libmessaging-menu0 93 | thunderbird 94 | thunderbird-gnome-support 95 | thunderbird-locale-de 96 | thunderbird-locale-en 97 | thunderbird-locale-en-gb 98 | thunderbird-locale-en-us 99 | thunderbird-locale-es 100 | thunderbird-locale-es-ar 101 | thunderbird-locale-es-es 102 | thunderbird-locale-fr 103 | thunderbird-locale-it 104 | thunderbird-locale-pt 105 | thunderbird-locale-pt-br 106 | thunderbird-locale-pt-pt 107 | thunderbird-locale-ru 108 | thunderbird-locale-zh-cn 109 | thunderbird-locale-zh-hans 110 | thunderbird-locale-zh-tw 111 | xul-ext-calendar-timezones 112 | xul-ext-gdata-provider 113 | xul-ext-lightning 114 | libminiupnpc10 115 | libnatpmp1 116 | transmission-common 117 | transmission-gtk 118 | libabw-0.1-1 119 | libcdr-0.1-1 120 | libclucene-core1v5 121 | libclucene-contribs1v5 122 | libcmis-0.5-5v5 123 | libe-book-0.1-1 124 | libepubgen-0.1-1 125 | libetonyek-0.1-1 126 | libexttextcat-2.0-0 127 | libexttextcat-data 128 | libfreehand-0.1-1 129 | liblangtag-common 130 | liblangtag1 131 | libmhash2 132 | libmspub-0.1-1 133 | libmwaw-0.3-3 134 | libmythes-1.2-0 135 | libneon27-gnutls 136 | libodfgen-0.1-1 137 | liborcus-0.13-0 138 | libpagemaker-0.0-0 139 | libraptor2-0 140 | librasqal3 141 | librdf0 142 | librevenge-0.0-0 143 | libvisio-0.1-1 144 | libwpd-0.10-10 145 | libwpg-0.3-3 146 | libwps-0.4-4 147 | libyajl2 148 | libreoffice-avmedia-backend-gstreamer 149 | libreoffice-base-core 150 | libreoffice-calc 151 | libreoffice-common 152 | libreoffice-core 153 | libreoffice-draw 154 | libreoffice-gnome 155 | libreoffice-gtk3 156 | libreoffice-impress 157 | libreoffice-l10n-de 158 | libreoffice-l10n-en-gb 159 | libreoffice-l10n-en-za 160 | libreoffice-l10n-es 161 | libreoffice-l10n-fr 162 | libreoffice-l10n-it 163 | libreoffice-l10n-pt 164 | libreoffice-l10n-pt-br 165 | libreoffice-l10n-ru 166 | libreoffice-l10n-zh-cn 167 | libreoffice-l10n-zh-tw 168 | libreoffice-math 169 | libreoffice-help-de 170 | libreoffice-help-en-gb 171 | libreoffice-help-en-us 172 | libreoffice-help-es 173 | libreoffice-help-fr 174 | libreoffice-help-it 175 | libreoffice-help-pt 176 | libreoffice-help-pt-br 177 | libreoffice-help-ru 178 | libreoffice-help-zh-cn 179 | libreoffice-help-zh-tw 180 | libreoffice-ogltrans 181 | libreoffice-pdfimport 182 | libreoffice-style-elementary 183 | libreoffice-style-galaxy 184 | libreoffice-style-tango 185 | libreoffice-writer 186 | python3-uno 187 | uno-libs3 188 | ure 189 | liba52-0.7.4 190 | libaacs0 191 | libbluray2 192 | libvlc-bin 193 | libvlc5 194 | libvlccore9 195 | vlc 196 | vlc-bin 197 | vlc-data 198 | vlc-l10n 199 | vlc-plugin-base 200 | vlc-plugin-notify 201 | vlc-plugin-qt 202 | vlc-plugin-samba 203 | vlc-plugin-skins2 204 | vlc-plugin-video-output 205 | vlc-plugin-video-splitter 206 | vlc-plugin-visualization 207 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/manifests/ubuntu-mate-18.04/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | a11y-profile-manager 2 | apt-clone 3 | archdetect-deb 4 | btrfs-progs 5 | btrfs-tools 6 | casper 7 | cifs-utils 8 | cryptsetup 9 | cryptsetup-bin 10 | dmeventd 11 | dmraid 12 | dpkg-repack 13 | fcitx 14 | fcitx-bin 15 | fcitx-config-common 16 | fcitx-config-gtk 17 | fcitx-data 18 | fcitx-frontend-all 19 | fcitx-frontend-gtk2 20 | fcitx-frontend-gtk3 21 | fcitx-frontend-qt4 22 | fcitx-frontend-qt5:amd64 23 | fcitx-module-dbus 24 | fcitx-module-kimpanel 25 | fcitx-module-lua 26 | fcitx-module-x11 27 | fcitx-modules 28 | fcitx-ui-classic 29 | firefox-locale-de 30 | firefox-locale-en 31 | firefox-locale-es 32 | firefox-locale-fr 33 | firefox-locale-it 34 | firefox-locale-pt 35 | firefox-locale-ru 36 | firefox-locale-zh-hans 37 | fonts-arphic-ukai 38 | fonts-arphic-uming 39 | gir1.2-json-1.0:amd64 40 | gir1.2-nm-1.0:amd64 41 | gir1.2-nma-1.0:amd64 42 | gir1.2-timezonemap-1.0 43 | gir1.2-xkl-1.0:amd64 44 | gparted 45 | hunspell-de-at 46 | hunspell-de-ch 47 | hunspell-de-de 48 | hunspell-en-ca 49 | hunspell-fr 50 | hunspell-fr-classical 51 | hunspell-ru 52 | hyphen-de 53 | hyphen-en-ca 54 | hyphen-en-us 55 | hyphen-fi 56 | hyphen-fr 57 | hyphen-ga 58 | hyphen-id 59 | hyphen-it 60 | hyphen-ru 61 | jfsutils 62 | kpartx 63 | kpartx-boot 64 | language-pack-de 65 | language-pack-de-base 66 | language-pack-en 67 | language-pack-en-base 68 | language-pack-es 69 | language-pack-es-base 70 | language-pack-fr 71 | language-pack-fr-base 72 | language-pack-gnome-de 73 | language-pack-gnome-de-base 74 | language-pack-gnome-en 75 | language-pack-gnome-en-base 76 | language-pack-gnome-es 77 | language-pack-gnome-es-base 78 | language-pack-gnome-fr 79 | language-pack-gnome-fr-base 80 | language-pack-gnome-it 81 | language-pack-gnome-it-base 82 | language-pack-gnome-pt 83 | language-pack-gnome-pt-base 84 | language-pack-gnome-ru 85 | language-pack-gnome-ru-base 86 | language-pack-gnome-zh-hans 87 | language-pack-gnome-zh-hans-base 88 | language-pack-it 89 | language-pack-it-base 90 | language-pack-pt 91 | language-pack-pt-base 92 | language-pack-ru 93 | language-pack-ru-base 94 | language-pack-zh-hans 95 | language-pack-zh-hans-base 96 | libdebian-installer4:amd64 97 | libdevmapper-event1.02.1:amd64 98 | libdmraid1.0.0.rc16 99 | libfcitx-config4:amd64 100 | libfcitx-core0:amd64 101 | libfcitx-gclient1:amd64 102 | libfcitx-qt5-1:amd64 103 | libfcitx-utils0:amd64 104 | libgettextpo0:amd64 105 | libgtkmm-2.4-1v5:amd64 106 | liblvm2app2.2:amd64 107 | liblvm2cmd2.02:amd64 108 | libpresage-data 109 | libpresage1v5:amd64 110 | libreadline5:amd64 111 | libreoffice-help-de 112 | libreoffice-help-en-gb 113 | libreoffice-help-en-us 114 | libreoffice-help-es 115 | libreoffice-help-fr 116 | libreoffice-help-it 117 | libreoffice-help-pt 118 | libreoffice-help-pt-br 119 | libreoffice-help-ru 120 | libreoffice-help-zh-cn 121 | libreoffice-help-zh-tw 122 | libreoffice-l10n-de 123 | libreoffice-l10n-en-gb 124 | libreoffice-l10n-en-za 125 | libreoffice-l10n-es 126 | libreoffice-l10n-fr 127 | libreoffice-l10n-it 128 | libreoffice-l10n-pt 129 | libreoffice-l10n-pt-br 130 | libreoffice-l10n-ru 131 | libreoffice-l10n-zh-cn 132 | libreoffice-l10n-zh-tw 133 | libtimezonemap-data 134 | libtimezonemap1:amd64 135 | libtinyxml2.6.2v5:amd64 136 | linux-signed-generic 137 | localechooser-data 138 | lupin-casper 139 | lvm2 140 | mokutil 141 | myspell-en-au 142 | myspell-es 143 | myspell-pt 144 | myspell-pt-br 145 | myspell-pt-pt 146 | mythes-de 147 | mythes-de-ch 148 | mythes-en-au 149 | mythes-en-us 150 | mythes-fr 151 | mythes-it 152 | mythes-ru 153 | openoffice.org-hyphenation 154 | presage 155 | python3-icu 156 | python3-pam 157 | rdate 158 | reiserfsprogs 159 | thunderbird-locale-de 160 | thunderbird-locale-en 161 | thunderbird-locale-en-gb 162 | thunderbird-locale-en-us 163 | thunderbird-locale-es 164 | thunderbird-locale-es-ar 165 | thunderbird-locale-es-es 166 | thunderbird-locale-fr 167 | thunderbird-locale-it 168 | thunderbird-locale-pt 169 | thunderbird-locale-pt-br 170 | thunderbird-locale-pt-pt 171 | thunderbird-locale-ru 172 | thunderbird-locale-zh-cn 173 | thunderbird-locale-zh-hans 174 | thunderbird-locale-zh-hant 175 | thunderbird-locale-zh-tw 176 | ubiquity 177 | ubiquity-casper 178 | ubiquity-frontend-gtk 179 | ubiquity-slideshow-ubuntu-mate 180 | ubiquity-ubuntu-artwork 181 | ubuntu-mate-live-settings 182 | user-setup 183 | wbrazilian 184 | wbritish 185 | wfrench 186 | witalian 187 | wngerman 188 | wogerman 189 | wportuguese 190 | wspanish 191 | wswiss 192 | xfsprogs 193 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/manifests/xubuntu-18.04/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | apt-clone 2 | archdetect-deb 3 | btrfs-progs 4 | btrfs-tools 5 | casper 6 | cifs-utils 7 | cryptsetup 8 | cryptsetup-bin 9 | dmeventd 10 | dmraid 11 | dpkg-repack 12 | feh 13 | firefox-locale-en 14 | gir1.2-nm-1.0:amd64 15 | gir1.2-nma-1.0:amd64 16 | gir1.2-timezonemap-1.0 17 | gir1.2-xkl-1.0:amd64 18 | gparted 19 | jfsutils 20 | kpartx 21 | kpartx-boot 22 | language-pack-bn 23 | language-pack-bn-base 24 | language-pack-de 25 | language-pack-de-base 26 | language-pack-en 27 | language-pack-en-base 28 | language-pack-es 29 | language-pack-es-base 30 | language-pack-fr 31 | language-pack-fr-base 32 | language-pack-gnome-bn 33 | language-pack-gnome-bn-base 34 | language-pack-gnome-de 35 | language-pack-gnome-de-base 36 | language-pack-gnome-en 37 | language-pack-gnome-en-base 38 | language-pack-gnome-es 39 | language-pack-gnome-es-base 40 | language-pack-gnome-fr 41 | language-pack-gnome-fr-base 42 | language-pack-gnome-hi 43 | language-pack-gnome-hi-base 44 | language-pack-gnome-ja 45 | language-pack-gnome-ja-base 46 | language-pack-gnome-pt 47 | language-pack-gnome-pt-base 48 | language-pack-gnome-xh 49 | language-pack-gnome-xh-base 50 | language-pack-gnome-zh-hans 51 | language-pack-gnome-zh-hans-base 52 | language-pack-hi 53 | language-pack-hi-base 54 | language-pack-ja 55 | language-pack-ja-base 56 | language-pack-pt 57 | language-pack-pt-base 58 | language-pack-xh 59 | language-pack-xh-base 60 | language-pack-zh-hans 61 | language-pack-zh-hans-base 62 | libcurl4:amd64 63 | libdebian-installer4:amd64 64 | libdevmapper-event1.02.1:amd64 65 | libdmraid1.0.0.rc16 66 | libgif7:amd64 67 | libgtkmm-2.4-1v5:amd64 68 | libid3tag0:amd64 69 | libimlib2:amd64 70 | libjpeg-progs 71 | libjpeg9:amd64 72 | liblvm2app2.2:amd64 73 | liblvm2cmd2.02:amd64 74 | libreadline5:amd64 75 | libtimezonemap-data 76 | libtimezonemap1:amd64 77 | linux-signed-generic 78 | localechooser-data 79 | lupin-casper 80 | lvm2 81 | mokutil 82 | python-crypto 83 | python-ldb:amd64 84 | python-samba 85 | python-tdb 86 | python3-icu 87 | python3-pam 88 | rdate 89 | reiserfsprogs 90 | samba-common 91 | samba-common-bin 92 | ubiquity 93 | ubiquity-casper 94 | ubiquity-frontend-gtk 95 | ubiquity-slideshow-xubuntu 96 | ubiquity-ubuntu-artwork 97 | user-setup 98 | wamerican 99 | xfsprogs 100 | xubuntu-live-settings 101 | yudit-common 102 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/mint-check-translations.glade: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 1024 7 | 768 8 | False 9 | 6 10 | Translation Checker 11 | center 12 | preferences-desktop-locale 13 | 14 | 15 | True 16 | False 17 | vertical 18 | 19 | 20 | True 21 | True 22 | True 23 | in 24 | 25 | 26 | 27 | 28 | 29 | True 30 | True 31 | 0 32 | 33 | 34 | 35 | 36 | True 37 | False 38 | True 39 | 40 | 41 | False 42 | True 43 | 6 44 | 1 45 | 46 | 47 | 48 | 49 | 50 | 51 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/old-manifests/debian-live-8-cinnamon/filesystem.packages-remove: -------------------------------------------------------------------------------- 1 | dkms 2 | ethtool 3 | fakeroot 4 | gcc 5 | gcc-4.9 6 | libasan1:amd64 7 | libcilkrts5:amd64 8 | libdumbnet1 9 | libfakeroot:amd64 10 | libgcc-4.9-dev:amd64 11 | liblsan0:amd64 12 | libubsan0:amd64 13 | open-vm-tools 14 | open-vm-tools-desktop 15 | open-vm-tools-dkms 16 | zerofree 17 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/old-manifests/elementary-freya/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | apt-clone 2 | archdetect-deb 3 | btrfs-tools 4 | casper 5 | cifs-utils 6 | cryptsetup 7 | cryptsetup-bin 8 | dmraid 9 | dpkg-repack 10 | ecryptfs-utils 11 | firefox-locale-en 12 | firefox-locale-es 13 | firefox-locale-zh-hans 14 | gir1.2-json-1.0 15 | gir1.2-timezonemap-1.0 16 | gir1.2-xkl-1.0 17 | gparted 18 | jfsutils 19 | keyutils 20 | kpartx 21 | kpartx-boot 22 | language-pack-en 23 | language-pack-en-base 24 | language-pack-es 25 | language-pack-es-base 26 | language-pack-gnome-en 27 | language-pack-gnome-en-base 28 | language-pack-gnome-es 29 | language-pack-gnome-es-base 30 | language-pack-gnome-zh-hans 31 | language-pack-gnome-zh-hans-base 32 | language-pack-zh-hans 33 | language-pack-zh-hans-base 34 | libcryptsetup4 35 | libdebian-installer4:amd64 36 | libdevmapper-event1.02.1:amd64 37 | libdmraid1.0.0.rc16 38 | libecryptfs0 39 | libgtkmm-2.4-1c2a:amd64 40 | libnss3-1d:amd64 41 | libreoffice-help-en-us 42 | linux-signed-generic-lts-utopic 43 | linux-signed-image-3.16.0-30-generic 44 | linux-signed-image-generic-lts-utopic 45 | localechooser-data 46 | lupin-casper 47 | lvm2 48 | metacity 49 | python3-icu 50 | python3-pam 51 | rdate 52 | reiserfsprogs 53 | sbsigntool 54 | ubiquity 55 | ubiquity-casper 56 | ubiquity-frontend-gtk 57 | ubiquity-slideshow-ubuntu 58 | ubiquity-ubuntu-artwork 59 | user-setup 60 | watershed 61 | xfsprogs 62 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/old-manifests/kubuntu-16.04/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | apt-clone 2 | archdetect-deb 3 | btrfs-tools 4 | casper 5 | cifs-utils 6 | dmeventd 7 | dmraid 8 | dpkg-repack 9 | ecryptfs-utils 10 | fcitx 11 | fcitx-bin 12 | fcitx-data 13 | fcitx-frontend-all 14 | fcitx-frontend-gtk2 15 | fcitx-frontend-gtk3 16 | fcitx-frontend-qt4 17 | fcitx-frontend-qt5:amd64 18 | fcitx-module-cloudpinyin:amd64 19 | fcitx-module-dbus 20 | fcitx-module-kimpanel 21 | fcitx-module-lua 22 | fcitx-module-x11 23 | fcitx-modules 24 | fcitx-pinyin 25 | fcitx-table 26 | fcitx-ui-classic 27 | jfsutils 28 | k3b-i18n 29 | kde-config-fcitx 30 | kde-l10n-engb 31 | keyutils 32 | kpartx 33 | kpartx-boot 34 | language-pack-en 35 | language-pack-en-base 36 | language-pack-kde-en 37 | libdebian-installer4:amd64 38 | libdevmapper-event1.02.1:amd64 39 | libdmraid1.0.0.rc16 40 | libecryptfs1 41 | libfcitx-config4:amd64 42 | libfcitx-core0:amd64 43 | libfcitx-gclient0:amd64 44 | libfcitx-qt0:amd64 45 | libfcitx-qt5-1:amd64 46 | libfcitx-utils0:amd64 47 | libgeoclue0:amd64 48 | libjavascriptcoregtk-4.0-18:amd64 49 | liblua5.2-0:amd64 50 | liblvm2app2.2:amd64 51 | liblvm2cmd2.02:amd64 52 | libnss3-1d:amd64 53 | libpresage-data 54 | libpresage1v5:amd64 55 | libreadline5:amd64 56 | libtinyxml2.6.2v5:amd64 57 | libwebkit2gtk-4.0-37:amd64 58 | libwebkit2gtk-4.0-37-gtk2:amd64 59 | linux-signed-generic 60 | linux-signed-image-4.4.0-21-generic 61 | linux-signed-image-generic 62 | localechooser-data 63 | lupin-casper 64 | lvm2 65 | mokutil 66 | openoffice.org-hyphenation 67 | presage 68 | python-crypto 69 | python-ldb 70 | python-samba 71 | python-tdb 72 | python3-dbus.mainloop.qt 73 | python3-icu 74 | python3-pam 75 | rdate 76 | reiserfsprogs 77 | samba-common 78 | samba-common-bin 79 | ubiquity 80 | ubiquity-casper 81 | ubiquity-frontend-kde 82 | ubiquity-slideshow-kubuntu 83 | ubiquity-ubuntu-artwork 84 | user-setup 85 | xfsprogs 86 | zenity 87 | zenity-common 88 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/old-manifests/lmde-2-201503-cinnamon/filesystem.packages-remove: -------------------------------------------------------------------------------- 1 | gdisk 2 | gparted 3 | imagemagick 4 | imagemagick-6.q16 5 | isoquery 6 | libgtkmm-2.4-1c2a:amd64 7 | libisocodes1:amd64 8 | libparted-fs-resize0:amd64 9 | live-boot 10 | live-boot-initramfs-tools 11 | live-config 12 | live-config-sysvinit 13 | live-installer 14 | live-installer-slideshow 15 | menu 16 | syslinux-utils 17 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/old-manifests/lmde-2-201503-mate/filesystem.packages-remove: -------------------------------------------------------------------------------- 1 | gdisk 2 | gparted 3 | imagemagick 4 | imagemagick-6.q16 5 | isoquery 6 | libgee-0.8-2:amd64 7 | libgtkmm-2.4-1c2a:amd64 8 | libisocodes1:amd64 9 | libopencv-photo2.4:amd64 10 | libparted-fs-resize0:amd64 11 | live-boot 12 | live-boot-initramfs-tools 13 | live-config 14 | live-config-sysvinit 15 | live-installer 16 | live-installer-slideshow 17 | menu 18 | python-opencv 19 | syslinux-utils 20 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/old-manifests/lmde-3-201808-cinnamon/filesystem.packages-remove: -------------------------------------------------------------------------------- 1 | calamares 2 | calamares-settings-debian 3 | gir1.2-javascriptcoregtk-3.0:amd64 4 | gir1.2-webkit-3.0:amd64 5 | gparted 6 | insserv 7 | isoquery 8 | kio 9 | liba52-0.7.4:amd64 10 | libaribb24-0 11 | libaribb25-0 12 | libass9:amd64 13 | libbasicusageenvironment1 14 | libboost-python1.62.0 15 | libcddb2 16 | libdbusmenu-qt5-2:amd64 17 | libdc1394-22:amd64 18 | libdca0:amd64 19 | libdvbpsi10:amd64 20 | libdvdnav4:amd64 21 | libebml4v5:amd64 22 | libfaad2:amd64 23 | libfam0:amd64 24 | libfribidi0:amd64 25 | libgpgmepp6:amd64 26 | libgroupsock8 27 | libjavascriptcoregtk-3.0-0:amd64 28 | libkate1:amd64 29 | libkf5archive5:amd64 30 | libkf5attica5:amd64 31 | libkf5auth-data 32 | libkf5auth5:amd64 33 | libkf5codecs-data 34 | libkf5codecs5:amd64 35 | libkf5completion-data 36 | libkf5completion5:amd64 37 | libkf5config-data 38 | libkf5configcore5:amd64 39 | libkf5configgui5:amd64 40 | libkf5configwidgets-data 41 | libkf5configwidgets5:amd64 42 | libkf5coreaddons-data 43 | libkf5coreaddons5:amd64 44 | libkf5crash5:amd64 45 | libkf5dbusaddons-data 46 | libkf5dbusaddons5:amd64 47 | libkf5globalaccel-data 48 | libkf5globalaccel5:amd64 49 | libkf5guiaddons5:amd64 50 | libkf5i18n-data 51 | libkf5i18n5:amd64 52 | libkf5iconthemes-data 53 | libkf5iconthemes5:amd64 54 | libkf5itemviews-data 55 | libkf5itemviews5:amd64 56 | libkf5jobwidgets-data 57 | libkf5jobwidgets5:amd64 58 | libkf5kiocore5:amd64 59 | libkf5kiontlm5:amd64 60 | libkf5kiowidgets5:amd64 61 | libkf5notifications-data 62 | libkf5notifications5:amd64 63 | libkf5parts-data 64 | libkf5parts5:amd64 65 | libkf5service-bin 66 | libkf5service-data 67 | libkf5service5:amd64 68 | libkf5solid5:amd64 69 | libkf5solid5-data 70 | libkf5sonnet5-data 71 | libkf5sonnetcore5:amd64 72 | libkf5sonnetui5:amd64 73 | libkf5textwidgets-data 74 | libkf5textwidgets5:amd64 75 | libkf5wallet-bin 76 | libkf5wallet-data 77 | libkf5wallet5:amd64 78 | libkf5widgetsaddons-data 79 | libkf5widgetsaddons5:amd64 80 | libkf5windowsystem-data 81 | libkf5windowsystem5:amd64 82 | libkf5xmlgui-data 83 | libkf5xmlgui5:amd64 84 | libkpmcore4 85 | libkwalletbackend5-5:amd64 86 | liblivemedia58 87 | libmad0:amd64 88 | libmatroska6v5:amd64 89 | libmicrodns0:amd64 90 | libmodplug1:amd64 91 | libmpcdec6:amd64 92 | libmpeg2-4:amd64 93 | libparted-fs-resize0:amd64 94 | libphonon4qt5-4:amd64 95 | libpolkit-qt5-1-1:amd64 96 | libprotobuf-lite10:amd64 97 | libqt4-dbus:amd64 98 | libqt4-declarative:amd64 99 | libqt4-designer:amd64 100 | libqt4-help:amd64 101 | libqt4-network:amd64 102 | libqt4-script:amd64 103 | libqt4-scripttools:amd64 104 | libqt4-sql:amd64 105 | libqt4-svg:amd64 106 | libqt4-test:amd64 107 | libqt4-xml:amd64 108 | libqt4-xmlpatterns:amd64 109 | libqt5opengl5:amd64 110 | libqt5printsupport5:amd64 111 | libqt5qml5:amd64 112 | libqt5quick5:amd64 113 | libqt5quickwidgets5:amd64 114 | libqt5script5:amd64 115 | libqt5sql5:amd64 116 | libqt5svg5:amd64 117 | libqt5webkit5:amd64 118 | libqt5x11extras5:amd64 119 | libqt5xml5:amd64 120 | libqtassistantclient4:amd64 121 | libqtcore4:amd64 122 | libqtdbus4:amd64 123 | libqtgui4:amd64 124 | libresid-builder0c2a 125 | libsidplay2 126 | libssh-4:amd64 127 | libtwolame0:amd64 128 | libupnp6 129 | libusageenvironment3 130 | libva-wayland1:amd64 131 | libvlc5:amd64 132 | libvlccore9:amd64 133 | libwebkitgtk-3.0-0:amd64 134 | libyaml-cpp0.5v5:amd64 135 | live-boot 136 | live-boot-initramfs-tools 137 | live-config 138 | live-config-systemd 139 | live-installer 140 | menu 141 | phonon4qt5:amd64 142 | phonon4qt5-backend-vlc:amd64 143 | python-imaging 144 | python-pil:amd64 145 | python-qt4 146 | python-sip 147 | qdbus 148 | qml-module-qtquick-window2:amd64 149 | qml-module-qtquick2:amd64 150 | qtchooser 151 | qtcore4-l10n 152 | startpar 153 | syslinux-utils 154 | sysv-rc 155 | vlc-data 156 | vlc-plugin-base:amd64 157 | vlc-plugin-video-output:amd64 158 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/old-manifests/mint-17-cinnamon/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | gir1.2-appindicator3-0.1 2 | gparted 3 | language-selector-common 4 | libgtkmm-2.4-1c2a:amd64 5 | libido3-0.1-0:amd64 6 | python3-pam 7 | sbsigntool 8 | ubiquity 9 | ubiquity-casper 10 | ubiquity-frontend-gtk 11 | ubiquity-slideshow-mint 12 | ubiquity-ubuntu-artwork 13 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/old-manifests/mint-17-kde/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | dmidecode 2 | dmraid 3 | firefox-locale-en 4 | jfsutils 5 | k3b-i18n 6 | kde-l10n-engb 7 | kpartx 8 | kpartx-boot 9 | language-pack-en 10 | language-pack-en-base 11 | language-pack-kde-en 12 | laptop-detect 13 | libdmraid1.0.0.rc16 14 | openoffice.org-hyphenation 15 | python3-pam 16 | python3-pyqt4 17 | python3-sip 18 | ubiquity 19 | ubiquity-casper 20 | ubiquity-frontend-kde 21 | ubiquity-slideshow-mint-kde 22 | ubiquity-ubuntu-artwork 23 | wamerican 24 | xfsprogs 25 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/old-manifests/mint-17-mate/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | gparted 2 | language-selector-common 3 | libido3-0.1-0:amd64 4 | python3-pam 5 | sbsigntool 6 | ubiquity 7 | ubiquity-casper 8 | ubiquity-frontend-gtk 9 | ubiquity-slideshow-mint 10 | ubiquity-ubuntu-artwork 11 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/old-manifests/mint-17-xfce/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | gparted 2 | language-selector-common 3 | libgtkmm-2.4-1c2a:amd64 4 | python3-pam 5 | sbsigntool 6 | ubiquity 7 | ubiquity-casper 8 | ubiquity-frontend-gtk 9 | ubiquity-slideshow-mint 10 | ubiquity-ubuntu-artwork 11 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/old-manifests/mint-17.1-cinnamon/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | gir1.2-appindicator3-0.1 2 | gparted 3 | language-selector-common 4 | libgtkmm-2.4-1c2a:amd64 5 | libido3-0.1-0:amd64 6 | python3-pam 7 | sbsigntool 8 | ubiquity 9 | ubiquity-casper 10 | ubiquity-frontend-gtk 11 | ubiquity-slideshow-mint 12 | ubiquity-ubuntu-artwork 13 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/old-manifests/mint-17.1-mate/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | gparted 2 | language-selector-common 3 | libido3-0.1-0:amd64 4 | python3-pam 5 | sbsigntool 6 | ubiquity 7 | ubiquity-casper 8 | ubiquity-frontend-gtk 9 | ubiquity-slideshow-mint 10 | ubiquity-ubuntu-artwork 11 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/old-manifests/mint-17.1-xfce/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | gparted 2 | language-selector-common 3 | libgtkmm-2.4-1c2a:amd64 4 | python3-pam 5 | sbsigntool 6 | ubiquity 7 | ubiquity-casper 8 | ubiquity-frontend-gtk 9 | ubiquity-slideshow-mint 10 | ubiquity-ubuntu-artwork 11 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/old-manifests/mint-17.2-cinnamon/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | gir1.2-appindicator3-0.1 2 | gparted 3 | language-selector-common 4 | libido3-0.1-0:amd64 5 | python3-pam 6 | sbsigntool 7 | ubiquity 8 | ubiquity-casper 9 | ubiquity-frontend-gtk 10 | ubiquity-slideshow-mint 11 | ubiquity-ubuntu-artwork 12 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/old-manifests/mint-17.2-kde/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | dmidecode 2 | dmraid 3 | firefox-locale-en 4 | jfsutils 5 | k3b-i18n 6 | kde-l10n-engb 7 | kpartx 8 | kpartx-boot 9 | language-pack-en 10 | language-pack-en-base 11 | language-pack-kde-en 12 | laptop-detect 13 | libdmraid1.0.0.rc16 14 | openoffice.org-hyphenation 15 | python3-pam 16 | python3-pyqt4 17 | python3-sip 18 | ubiquity 19 | ubiquity-casper 20 | ubiquity-frontend-kde 21 | ubiquity-slideshow-mint-kde 22 | ubiquity-ubuntu-artwork 23 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/old-manifests/mint-17.2-mate/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | gparted 2 | language-selector-common 3 | libido3-0.1-0:amd64 4 | python3-pam 5 | sbsigntool 6 | ubiquity 7 | ubiquity-casper 8 | ubiquity-frontend-gtk 9 | ubiquity-slideshow-mint 10 | ubiquity-ubuntu-artwork 11 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/old-manifests/mint-17.2-xfce/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | gparted 2 | language-selector-common 3 | python3-pam 4 | sbsigntool 5 | ubiquity 6 | ubiquity-casper 7 | ubiquity-frontend-gtk 8 | ubiquity-slideshow-mint 9 | ubiquity-ubuntu-artwork 10 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/old-manifests/mint-17.3-cinnamon/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | gir1.2-appindicator3-0.1 2 | gparted 3 | language-selector-common 4 | libido3-0.1-0:amd64 5 | python3-pam 6 | sbsigntool 7 | ubiquity 8 | ubiquity-casper 9 | ubiquity-frontend-gtk 10 | ubiquity-slideshow-mint 11 | ubiquity-ubuntu-artwork 12 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/old-manifests/mint-17.3-kde/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | dmidecode 2 | dmraid 3 | firefox-locale-en 4 | jfsutils 5 | k3b-i18n 6 | kde-l10n-engb 7 | kpartx 8 | kpartx-boot 9 | language-pack-en 10 | language-pack-en-base 11 | language-pack-kde-en 12 | laptop-detect 13 | libdmraid1.0.0.rc16 14 | openoffice.org-hyphenation 15 | python3-pam 16 | python3-pyqt4 17 | python3-sip 18 | ubiquity 19 | ubiquity-casper 20 | ubiquity-frontend-kde 21 | ubiquity-slideshow-mint-kde 22 | ubiquity-ubuntu-artwork 23 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/old-manifests/mint-17.3-mate/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | gparted 2 | language-selector-common 3 | libido3-0.1-0:amd64 4 | python3-pam 5 | sbsigntool 6 | ubiquity 7 | ubiquity-casper 8 | ubiquity-frontend-gtk 9 | ubiquity-slideshow-mint 10 | ubiquity-ubuntu-artwork 11 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/old-manifests/mint-17.3-xfce/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | gparted 2 | language-selector-common 3 | python3-pam 4 | sbsigntool 5 | ubiquity 6 | ubiquity-casper 7 | ubiquity-frontend-gtk 8 | ubiquity-slideshow-mint 9 | ubiquity-ubuntu-artwork 10 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/old-manifests/mint-18-cinnamon/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | gir1.2-appindicator3-0.1 2 | gir1.2-javascriptcoregtk-4.0:amd64 3 | gir1.2-webkit2-4.0:amd64 4 | gparted 5 | language-selector-common 6 | libido3-0.1-0:amd64 7 | libparted-fs-resize0:amd64 8 | python3-pam 9 | sbsigntool 10 | ubiquity 11 | ubiquity-casper 12 | ubiquity-frontend-gtk 13 | ubiquity-slideshow-mint 14 | ubiquity-ubuntu-artwork 15 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/old-manifests/mint-18-kde/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | k3b-i18n 2 | kde-l10n-engb 3 | language-pack-kde-en 4 | language-selector-common 5 | openoffice.org-hyphenation 6 | python3-pam 7 | ubiquity 8 | ubiquity-casper 9 | ubiquity-frontend-kde 10 | ubiquity-slideshow-mint-kde 11 | ubiquity-ubuntu-artwork 12 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/old-manifests/mint-18-mate/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | gir1.2-javascriptcoregtk-4.0:amd64 2 | gir1.2-webkit2-4.0:amd64 3 | gparted 4 | language-selector-common 5 | libido3-0.1-0:amd64 6 | libparted-fs-resize0:amd64 7 | python3-pam 8 | sbsigntool 9 | ubiquity 10 | ubiquity-casper 11 | ubiquity-frontend-gtk 12 | ubiquity-slideshow-mint 13 | ubiquity-ubuntu-artwork 14 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/old-manifests/mint-18-xfce/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | gir1.2-javascriptcoregtk-4.0:amd64 2 | gir1.2-webkit2-4.0:amd64 3 | gparted 4 | language-selector-common 5 | libparted-fs-resize0:amd64 6 | python3-pam 7 | sbsigntool 8 | ubiquity 9 | ubiquity-casper 10 | ubiquity-frontend-gtk 11 | ubiquity-slideshow-mint 12 | ubiquity-ubuntu-artwork 13 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/old-manifests/mint-18.1-cinnamon/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | gir1.2-javascriptcoregtk-4.0:amd64 2 | gir1.2-webkit2-4.0:amd64 3 | gparted 4 | language-selector-common 5 | libido3-0.1-0:amd64 6 | libparted-fs-resize0:amd64 7 | python3-pam 8 | sbsigntool 9 | ubiquity 10 | ubiquity-casper 11 | ubiquity-frontend-gtk 12 | ubiquity-slideshow-mint 13 | ubiquity-ubuntu-artwork 14 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/old-manifests/mint-18.1-kde/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | k3b-i18n 2 | kde-l10n-engb 3 | language-pack-kde-en 4 | language-selector-common 5 | openoffice.org-hyphenation 6 | python3-pam 7 | ubiquity 8 | ubiquity-casper 9 | ubiquity-frontend-kde 10 | ubiquity-slideshow-mint-kde 11 | ubiquity-ubuntu-artwork 12 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/old-manifests/mint-18.1-mate/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | gir1.2-javascriptcoregtk-4.0:amd64 2 | gir1.2-webkit2-4.0:amd64 3 | gparted 4 | language-selector-common 5 | libido3-0.1-0:amd64 6 | libparted-fs-resize0:amd64 7 | python3-pam 8 | sbsigntool 9 | ubiquity 10 | ubiquity-casper 11 | ubiquity-frontend-gtk 12 | ubiquity-slideshow-mint 13 | ubiquity-ubuntu-artwork 14 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/old-manifests/mint-18.1-xfce/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | gir1.2-javascriptcoregtk-4.0:amd64 2 | gir1.2-webkit2-4.0:amd64 3 | gparted 4 | language-selector-common 5 | libparted-fs-resize0:amd64 6 | python3-pam 7 | sbsigntool 8 | ubiquity 9 | ubiquity-casper 10 | ubiquity-frontend-gtk 11 | ubiquity-slideshow-mint 12 | ubiquity-ubuntu-artwork 13 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/old-manifests/mint-18.2-cinnamon/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | gparted 2 | language-selector-common 3 | libido3-0.1-0:amd64 4 | libparted-fs-resize0:amd64 5 | python3-pam 6 | sbsigntool 7 | ubiquity 8 | ubiquity-casper 9 | ubiquity-frontend-gtk 10 | ubiquity-slideshow-mint 11 | ubiquity-ubuntu-artwork 12 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/old-manifests/mint-18.2-kde/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | k3b-i18n 2 | kde-l10n-engb 3 | language-pack-kde-en 4 | language-selector-common 5 | openoffice.org-hyphenation 6 | python3-pam 7 | ubiquity 8 | ubiquity-casper 9 | ubiquity-frontend-kde 10 | ubiquity-slideshow-mint-kde 11 | ubiquity-ubuntu-artwork 12 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/old-manifests/mint-18.2-mate/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | gir1.2-javascriptcoregtk-4.0:amd64 2 | gir1.2-webkit2-4.0:amd64 3 | gparted 4 | language-selector-common 5 | libparted-fs-resize0:amd64 6 | python3-pam 7 | sbsigntool 8 | ubiquity 9 | ubiquity-casper 10 | ubiquity-frontend-gtk 11 | ubiquity-slideshow-mint 12 | ubiquity-ubuntu-artwork 13 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/old-manifests/mint-18.2-xfce/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | gir1.2-javascriptcoregtk-4.0:amd64 2 | gir1.2-webkit2-4.0:amd64 3 | gparted 4 | language-selector-common 5 | libparted-fs-resize0:amd64 6 | python3-pam 7 | sbsigntool 8 | ubiquity 9 | ubiquity-casper 10 | ubiquity-frontend-gtk 11 | ubiquity-slideshow-mint 12 | ubiquity-ubuntu-artwork 13 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/old-manifests/mint-18.3-cinnamon/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | gparted 2 | language-selector-common 3 | libido3-0.1-0:amd64 4 | libparted-fs-resize0:amd64 5 | python3-pam 6 | sbsigntool 7 | ubiquity 8 | ubiquity-casper 9 | ubiquity-frontend-gtk 10 | ubiquity-slideshow-mint 11 | ubiquity-ubuntu-artwork 12 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/old-manifests/mint-18.3-kde/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | k3b-i18n 2 | kde-l10n-engb 3 | language-pack-kde-en 4 | language-selector-common 5 | python3-pam 6 | ubiquity 7 | ubiquity-casper 8 | ubiquity-frontend-kde 9 | ubiquity-slideshow-mint-kde 10 | ubiquity-ubuntu-artwork 11 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/old-manifests/mint-18.3-mate/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | gir1.2-javascriptcoregtk-4.0:amd64 2 | gir1.2-webkit2-4.0:amd64 3 | gparted 4 | language-selector-common 5 | libparted-fs-resize0:amd64 6 | python3-pam 7 | sbsigntool 8 | ubiquity 9 | ubiquity-casper 10 | ubiquity-frontend-gtk 11 | ubiquity-slideshow-mint 12 | ubiquity-ubuntu-artwork 13 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/old-manifests/mint-18.3-xfce/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | gir1.2-javascriptcoregtk-4.0:amd64 2 | gir1.2-webkit2-4.0:amd64 3 | gparted 4 | language-selector-common 5 | libparted-fs-resize0:amd64 6 | python3-pam 7 | sbsigntool 8 | ubiquity 9 | ubiquity-casper 10 | ubiquity-frontend-gtk 11 | ubiquity-slideshow-mint 12 | ubiquity-ubuntu-artwork 13 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/old-manifests/ubuntu-14.04.2/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | apt-clone 2 | archdetect-deb 3 | btrfs-tools 4 | casper 5 | cifs-utils 6 | cryptsetup 7 | cryptsetup-bin 8 | dmraid 9 | dpkg-repack 10 | ecryptfs-utils 11 | firefox-locale-en 12 | firefox-locale-es 13 | firefox-locale-zh-hans 14 | gir1.2-json-1.0 15 | gir1.2-timezonemap-1.0 16 | gir1.2-xkl-1.0 17 | gparted 18 | jfsutils 19 | keyutils 20 | kpartx 21 | kpartx-boot 22 | language-pack-en 23 | language-pack-en-base 24 | language-pack-es 25 | language-pack-es-base 26 | language-pack-gnome-en 27 | language-pack-gnome-en-base 28 | language-pack-gnome-es 29 | language-pack-gnome-es-base 30 | language-pack-gnome-zh-hans 31 | language-pack-gnome-zh-hans-base 32 | language-pack-zh-hans 33 | language-pack-zh-hans-base 34 | libcryptsetup4 35 | libdebian-installer4:amd64 36 | libdevmapper-event1.02.1:amd64 37 | libdmraid1.0.0.rc16 38 | libecryptfs0 39 | libgtkmm-2.4-1c2a:amd64 40 | libnss3-1d:amd64 41 | libreoffice-help-en-us 42 | linux-signed-generic-lts-utopic 43 | linux-signed-image-3.16.0-30-generic 44 | linux-signed-image-generic-lts-utopic 45 | localechooser-data 46 | lupin-casper 47 | lvm2 48 | metacity 49 | python3-icu 50 | python3-pam 51 | rdate 52 | reiserfsprogs 53 | sbsigntool 54 | ubiquity 55 | ubiquity-casper 56 | ubiquity-frontend-gtk 57 | ubiquity-slideshow-ubuntu 58 | ubiquity-ubuntu-artwork 59 | user-setup 60 | watershed 61 | xfsprogs 62 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/old-manifests/ubuntu-14.04.3/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | apt-clone 2 | archdetect-deb 3 | btrfs-tools 4 | casper 5 | cifs-utils 6 | cryptsetup 7 | cryptsetup-bin 8 | dmraid 9 | dpkg-repack 10 | ecryptfs-utils 11 | firefox-locale-en 12 | firefox-locale-es 13 | firefox-locale-zh-hans 14 | gir1.2-json-1.0 15 | gir1.2-timezonemap-1.0 16 | gir1.2-xkl-1.0 17 | gparted 18 | jfsutils 19 | keyutils 20 | kpartx 21 | kpartx-boot 22 | language-pack-en 23 | language-pack-en-base 24 | language-pack-es 25 | language-pack-es-base 26 | language-pack-gnome-en 27 | language-pack-gnome-en-base 28 | language-pack-gnome-es 29 | language-pack-gnome-es-base 30 | language-pack-gnome-zh-hans 31 | language-pack-gnome-zh-hans-base 32 | language-pack-zh-hans 33 | language-pack-zh-hans-base 34 | libcryptsetup4 35 | libdebian-installer4:amd64 36 | libdevmapper-event1.02.1:amd64 37 | libdmraid1.0.0.rc16 38 | libecryptfs0 39 | libgtkmm-2.4-1c2a:amd64 40 | libnss3-1d:amd64 41 | libreoffice-help-en-us 42 | linux-signed-generic-lts-vivid 43 | linux-signed-image-3.19.0-25-generic 44 | linux-signed-image-generic-lts-vivid 45 | localechooser-data 46 | lupin-casper 47 | lvm2 48 | metacity 49 | python3-icu 50 | python3-pam 51 | rdate 52 | reiserfsprogs 53 | sbsigntool 54 | ubiquity 55 | ubiquity-casper 56 | ubiquity-frontend-gtk 57 | ubiquity-slideshow-ubuntu 58 | ubiquity-ubuntu-artwork 59 | user-setup 60 | watershed 61 | xfsprogs 62 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/old-manifests/ubuntu-15.04/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | apt-clone 2 | archdetect-deb 3 | btrfs-tools 4 | casper 5 | cifs-utils 6 | cryptsetup 7 | cryptsetup-bin 8 | dmeventd 9 | dmraid 10 | dpkg-repack 11 | ecryptfs-utils 12 | fcitx 13 | fcitx-bin 14 | fcitx-config-common 15 | fcitx-config-gtk 16 | fcitx-data 17 | fcitx-frontend-all 18 | fcitx-frontend-gtk2 19 | fcitx-frontend-gtk3 20 | fcitx-frontend-qt4 21 | fcitx-frontend-qt5:amd64 22 | fcitx-module-cloudpinyin:amd64 23 | fcitx-module-dbus 24 | fcitx-module-kimpanel 25 | fcitx-module-lua 26 | fcitx-module-x11 27 | fcitx-modules 28 | fcitx-pinyin 29 | fcitx-table 30 | fcitx-ui-classic 31 | fcitx-ui-qimpanel 32 | gir1.2-timezonemap-1.0 33 | gir1.2-xkl-1.0 34 | gnome-themes-standard:amd64 35 | gnome-themes-standard-data 36 | gparted 37 | gtk2-engines-pixbuf:amd64 38 | jfsutils 39 | keyutils 40 | kpartx 41 | kpartx-boot 42 | language-pack-en 43 | language-pack-en-base 44 | language-pack-es 45 | language-pack-es-base 46 | language-pack-gnome-en 47 | language-pack-gnome-en-base 48 | language-pack-gnome-es 49 | language-pack-gnome-es-base 50 | language-pack-gnome-zh-hans 51 | language-pack-gnome-zh-hans-base 52 | language-pack-zh-hans 53 | language-pack-zh-hans-base 54 | libdebian-installer4:amd64 55 | libdevmapper-event1.02.1:amd64 56 | libdmraid1.0.0.rc16 57 | libecryptfs0 58 | libfcitx-core0:amd64 59 | libfcitx-qt0:amd64 60 | libfcitx-qt5-1:amd64 61 | libgtkmm-2.4-1c2a:amd64 62 | liblvm2cmd2.02:amd64 63 | libnss3-1d:amd64 64 | libparted-fs-resize0:amd64 65 | libpresage-data 66 | libpresage1:amd64 67 | libqt5quickwidgets5:amd64 68 | libreoffice-help-en-us 69 | libtinyxml2.6.2:amd64 70 | linux-signed-generic 71 | linux-signed-image-3.19.0-15-generic 72 | linux-signed-image-generic 73 | localechooser-data 74 | lupin-casper 75 | lvm2 76 | metacity 77 | presage 78 | python3-icu 79 | python3-pam 80 | rdate 81 | reiserfsprogs 82 | sbsigntool 83 | ubiquity 84 | ubiquity-casper 85 | ubiquity-frontend-gtk 86 | ubiquity-slideshow-ubuntu 87 | ubiquity-ubuntu-artwork 88 | user-setup 89 | watershed 90 | xfsprogs 91 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/old-manifests/ubuntu-15.10/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | apt-clone 2 | archdetect-deb 3 | btrfs-tools 4 | casper 5 | cifs-utils 6 | cryptsetup 7 | cryptsetup-bin 8 | dmeventd 9 | dmraid 10 | dpkg-repack 11 | ecryptfs-utils 12 | fcitx 13 | fcitx-bin 14 | fcitx-config-common 15 | fcitx-config-gtk 16 | fcitx-data 17 | fcitx-frontend-all 18 | fcitx-frontend-gtk2 19 | fcitx-frontend-gtk3 20 | fcitx-frontend-qt4 21 | fcitx-frontend-qt5:amd64 22 | fcitx-hangul:amd64 23 | fcitx-module-cloudpinyin:amd64 24 | fcitx-module-dbus 25 | fcitx-module-kimpanel 26 | fcitx-module-lua 27 | fcitx-module-x11 28 | fcitx-modules 29 | fcitx-mozc:amd64 30 | fcitx-pinyin 31 | fcitx-table 32 | fcitx-ui-classic 33 | fcitx-ui-qimpanel 34 | fcitx-unikey 35 | gir1.2-timezonemap-1.0 36 | gir1.2-xkl-1.0 37 | gnome-themes-standard:amd64 38 | gnome-themes-standard-data 39 | gparted 40 | gtk2-engines-pixbuf:amd64 41 | jfsutils 42 | keyutils 43 | kpartx 44 | kpartx-boot 45 | language-pack-en 46 | language-pack-en-base 47 | language-pack-es 48 | language-pack-es-base 49 | language-pack-gnome-en 50 | language-pack-gnome-en-base 51 | language-pack-gnome-es 52 | language-pack-gnome-es-base 53 | language-pack-gnome-zh-hans 54 | language-pack-gnome-zh-hans-base 55 | language-pack-zh-hans 56 | language-pack-zh-hans-base 57 | libdebian-installer4:amd64 58 | libdevmapper-event1.02.1:amd64 59 | libdmraid1.0.0.rc16 60 | libecryptfs1 61 | libfcitx-core0:amd64 62 | libfcitx-qt0:amd64 63 | libfcitx-qt5-1:amd64 64 | libgtkmm-2.4-1v5:amd64 65 | libhangul-data 66 | libhangul1:amd64 67 | liblvm2cmd2.02:amd64 68 | libnss3-1d:amd64 69 | libparted-fs-resize0:amd64 70 | libpresage-data 71 | libpresage1:amd64 72 | libqt5quickwidgets5:amd64 73 | libreadline5:amd64 74 | libreoffice-help-en-us 75 | libtinyxml2.6.2v5:amd64 76 | libzinnia0v5 77 | linux-signed-generic 78 | linux-signed-image-4.2.0-16-generic 79 | linux-signed-image-generic 80 | localechooser-data 81 | lupin-casper 82 | lvm2 83 | metacity 84 | mozc-data 85 | mozc-server 86 | mozc-utils-gui 87 | presage 88 | python3-icu 89 | python3-pam 90 | rdate 91 | reiserfsprogs 92 | sbsigntool 93 | tegaki-zinnia-japanese 94 | ubiquity 95 | ubiquity-casper 96 | ubiquity-frontend-gtk 97 | ubiquity-slideshow-ubuntu 98 | ubiquity-ubuntu-artwork 99 | user-setup 100 | watershed 101 | xfsprogs 102 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/old-manifests/ubuntu-16.04.1/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | a11y-profile-manager 2 | apt-clone 3 | archdetect-deb 4 | btrfs-tools 5 | casper 6 | cifs-utils 7 | cryptsetup 8 | cryptsetup-bin 9 | dmeventd 10 | dmraid 11 | dmsetup 12 | dpkg-repack 13 | ecryptfs-utils 14 | fcitx 15 | fcitx-bin 16 | fcitx-config-common 17 | fcitx-config-gtk 18 | fcitx-data 19 | fcitx-frontend-all 20 | fcitx-frontend-gtk2 21 | fcitx-frontend-gtk3 22 | fcitx-frontend-qt4 23 | fcitx-frontend-qt5:amd64 24 | fcitx-hangul:amd64 25 | fcitx-module-cloudpinyin:amd64 26 | fcitx-module-dbus 27 | fcitx-module-kimpanel 28 | fcitx-module-lua 29 | fcitx-module-x11 30 | fcitx-modules 31 | fcitx-mozc:amd64 32 | fcitx-pinyin 33 | fcitx-table 34 | fcitx-ui-classic 35 | fcitx-ui-qimpanel 36 | fcitx-unikey 37 | firefox-locale-de 38 | firefox-locale-en 39 | firefox-locale-es 40 | firefox-locale-fr 41 | firefox-locale-it 42 | firefox-locale-pt 43 | firefox-locale-ru 44 | firefox-locale-zh-hans 45 | fonts-arphic-ukai 46 | fonts-arphic-uming 47 | gir1.2-timezonemap-1.0 48 | gir1.2-xkl-1.0:amd64 49 | gparted 50 | hunspell-de-at 51 | hunspell-de-ch 52 | hunspell-de-de 53 | hunspell-en-ca 54 | hunspell-en-gb 55 | hunspell-en-za 56 | hunspell-fr 57 | hunspell-fr-classical 58 | hunspell-it 59 | hunspell-ru 60 | hyphen-de 61 | hyphen-en-us 62 | hyphen-fr 63 | hyphen-it 64 | hyphen-ru 65 | jfsutils 66 | keyutils 67 | kpartx 68 | kpartx-boot 69 | language-pack-de 70 | language-pack-de-base 71 | language-pack-en 72 | language-pack-en-base 73 | language-pack-es 74 | language-pack-es-base 75 | language-pack-fr 76 | language-pack-fr-base 77 | language-pack-gnome-de 78 | language-pack-gnome-de-base 79 | language-pack-gnome-en 80 | language-pack-gnome-en-base 81 | language-pack-gnome-es 82 | language-pack-gnome-es-base 83 | language-pack-gnome-fr 84 | language-pack-gnome-fr-base 85 | language-pack-gnome-it 86 | language-pack-gnome-it-base 87 | language-pack-gnome-pt 88 | language-pack-gnome-pt-base 89 | language-pack-gnome-ru 90 | language-pack-gnome-ru-base 91 | language-pack-gnome-zh-hans 92 | language-pack-gnome-zh-hans-base 93 | language-pack-it 94 | language-pack-it-base 95 | language-pack-pt 96 | language-pack-pt-base 97 | language-pack-ru 98 | language-pack-ru-base 99 | language-pack-zh-hans 100 | language-pack-zh-hans-base 101 | libdebian-installer4:amd64 102 | libdevmapper-event1.02.1:amd64 103 | libdmraid1.0.0.rc16 104 | libecryptfs1 105 | libfcitx-core0:amd64 106 | libfcitx-qt0:amd64 107 | libfcitx-qt5-1:amd64 108 | libgtkmm-2.4-1v5:amd64 109 | libhangul-data 110 | libhangul1:amd64 111 | liblvm2app2.2:amd64 112 | liblvm2cmd2.02:amd64 113 | libnss3-1d:amd64 114 | libparted-fs-resize0:amd64 115 | libpresage-data 116 | libpresage1v5:amd64 117 | libqt5quickwidgets5:amd64 118 | libreadline5:amd64 119 | libreoffice-help-de 120 | libreoffice-help-en-gb 121 | libreoffice-help-en-us 122 | libreoffice-help-es 123 | libreoffice-help-fr 124 | libreoffice-help-it 125 | libreoffice-help-pt 126 | libreoffice-help-pt-br 127 | libreoffice-help-ru 128 | libreoffice-help-zh-cn 129 | libreoffice-help-zh-tw 130 | libreoffice-l10n-de 131 | libreoffice-l10n-en-gb 132 | libreoffice-l10n-en-za 133 | libreoffice-l10n-es 134 | libreoffice-l10n-fr 135 | libreoffice-l10n-it 136 | libreoffice-l10n-pt 137 | libreoffice-l10n-pt-br 138 | libreoffice-l10n-ru 139 | libreoffice-l10n-zh-cn 140 | libreoffice-l10n-zh-tw 141 | libtinyxml2.6.2v5:amd64 142 | libzinnia0v5 143 | linux-signed-generic 144 | linux-signed-image-4.4.0-31-generic 145 | linux-signed-image-generic 146 | localechooser-data 147 | lupin-casper 148 | lvm2 149 | metacity 150 | mokutil 151 | mozc-data 152 | mozc-server 153 | mozc-utils-gui 154 | myspell-en-au 155 | myspell-en-gb 156 | myspell-en-za 157 | myspell-es 158 | myspell-it 159 | myspell-pt 160 | myspell-pt-br 161 | myspell-pt-pt 162 | mythes-de 163 | mythes-de-ch 164 | mythes-en-au 165 | mythes-en-us 166 | mythes-fr 167 | mythes-it 168 | mythes-ru 169 | openoffice.org-hyphenation 170 | presage 171 | python-crypto 172 | python-ldb 173 | python-samba 174 | python-tdb 175 | python3-icu 176 | python3-pam 177 | rdate 178 | reiserfsprogs 179 | samba-common 180 | samba-common-bin 181 | tegaki-zinnia-japanese 182 | thunderbird-locale-de 183 | thunderbird-locale-en 184 | thunderbird-locale-en-gb 185 | thunderbird-locale-en-us 186 | thunderbird-locale-es 187 | thunderbird-locale-es-ar 188 | thunderbird-locale-es-es 189 | thunderbird-locale-fr 190 | thunderbird-locale-it 191 | thunderbird-locale-pt 192 | thunderbird-locale-pt-br 193 | thunderbird-locale-pt-pt 194 | thunderbird-locale-ru 195 | thunderbird-locale-zh-cn 196 | thunderbird-locale-zh-hans 197 | thunderbird-locale-zh-hant 198 | thunderbird-locale-zh-tw 199 | ubiquity 200 | ubiquity-casper 201 | ubiquity-frontend-gtk 202 | ubiquity-slideshow-ubuntu 203 | ubiquity-ubuntu-artwork 204 | user-setup 205 | wbrazilian 206 | wbritish 207 | wfrench 208 | witalian 209 | wngerman 210 | wogerman 211 | wportuguese 212 | wspanish 213 | wswiss 214 | xfsprogs 215 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/old-manifests/ubuntu-16.04.2/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | a11y-profile-manager 2 | apt-clone 3 | archdetect-deb 4 | btrfs-tools 5 | casper 6 | cifs-utils 7 | cryptsetup 8 | cryptsetup-bin 9 | dmeventd 10 | dmraid 11 | dmsetup 12 | dpkg-repack 13 | ecryptfs-utils 14 | fcitx 15 | fcitx-bin 16 | fcitx-config-common 17 | fcitx-config-gtk 18 | fcitx-data 19 | fcitx-frontend-all 20 | fcitx-frontend-gtk2 21 | fcitx-frontend-gtk3 22 | fcitx-frontend-qt4 23 | fcitx-frontend-qt5:amd64 24 | fcitx-hangul:amd64 25 | fcitx-module-cloudpinyin:amd64 26 | fcitx-module-dbus 27 | fcitx-module-kimpanel 28 | fcitx-module-lua 29 | fcitx-module-x11 30 | fcitx-modules 31 | fcitx-mozc:amd64 32 | fcitx-pinyin 33 | fcitx-table 34 | fcitx-ui-classic 35 | fcitx-ui-qimpanel 36 | fcitx-unikey 37 | firefox-locale-de 38 | firefox-locale-en 39 | firefox-locale-es 40 | firefox-locale-fr 41 | firefox-locale-it 42 | firefox-locale-pt 43 | firefox-locale-ru 44 | firefox-locale-zh-hans 45 | fonts-arphic-ukai 46 | fonts-arphic-uming 47 | gir1.2-timezonemap-1.0 48 | gir1.2-xkl-1.0:amd64 49 | gparted 50 | hunspell-de-at 51 | hunspell-de-ch 52 | hunspell-de-de 53 | hunspell-en-ca 54 | hunspell-en-gb 55 | hunspell-en-za 56 | hunspell-fr 57 | hunspell-fr-classical 58 | hunspell-it 59 | hunspell-ru 60 | hyphen-de 61 | hyphen-en-us 62 | hyphen-fr 63 | hyphen-it 64 | hyphen-ru 65 | jfsutils 66 | keyutils 67 | kpartx 68 | kpartx-boot 69 | language-pack-de 70 | language-pack-de-base 71 | language-pack-en 72 | language-pack-en-base 73 | language-pack-es 74 | language-pack-es-base 75 | language-pack-fr 76 | language-pack-fr-base 77 | language-pack-gnome-de 78 | language-pack-gnome-de-base 79 | language-pack-gnome-en 80 | language-pack-gnome-en-base 81 | language-pack-gnome-es 82 | language-pack-gnome-es-base 83 | language-pack-gnome-fr 84 | language-pack-gnome-fr-base 85 | language-pack-gnome-it 86 | language-pack-gnome-it-base 87 | language-pack-gnome-pt 88 | language-pack-gnome-pt-base 89 | language-pack-gnome-ru 90 | language-pack-gnome-ru-base 91 | language-pack-gnome-zh-hans 92 | language-pack-gnome-zh-hans-base 93 | language-pack-it 94 | language-pack-it-base 95 | language-pack-pt 96 | language-pack-pt-base 97 | language-pack-ru 98 | language-pack-ru-base 99 | language-pack-zh-hans 100 | language-pack-zh-hans-base 101 | libdebian-installer4:amd64 102 | libdevmapper-event1.02.1:amd64 103 | libdmraid1.0.0.rc16 104 | libecryptfs1 105 | libfcitx-core0:amd64 106 | libfcitx-qt0:amd64 107 | libfcitx-qt5-1:amd64 108 | libgtkmm-2.4-1v5:amd64 109 | libhangul-data 110 | libhangul1:amd64 111 | liblvm2app2.2:amd64 112 | liblvm2cmd2.02:amd64 113 | libnss3-1d:amd64 114 | libparted-fs-resize0:amd64 115 | libpresage-data 116 | libpresage1v5:amd64 117 | libqt5quickwidgets5:amd64 118 | libreadline5:amd64 119 | libreoffice-help-de 120 | libreoffice-help-en-gb 121 | libreoffice-help-en-us 122 | libreoffice-help-es 123 | libreoffice-help-fr 124 | libreoffice-help-it 125 | libreoffice-help-pt 126 | libreoffice-help-pt-br 127 | libreoffice-help-ru 128 | libreoffice-help-zh-cn 129 | libreoffice-help-zh-tw 130 | libreoffice-l10n-de 131 | libreoffice-l10n-en-gb 132 | libreoffice-l10n-en-za 133 | libreoffice-l10n-es 134 | libreoffice-l10n-fr 135 | libreoffice-l10n-it 136 | libreoffice-l10n-pt 137 | libreoffice-l10n-pt-br 138 | libreoffice-l10n-ru 139 | libreoffice-l10n-zh-cn 140 | libreoffice-l10n-zh-tw 141 | libtinyxml2.6.2v5:amd64 142 | libzinnia0v5 143 | linux-signed-generic-hwe-16.04 144 | linux-signed-image-4.8.0-36-generic 145 | linux-signed-image-generic-hwe-16.04 146 | localechooser-data 147 | lupin-casper 148 | lvm2 149 | metacity 150 | mokutil 151 | mozc-data 152 | mozc-server 153 | mozc-utils-gui 154 | myspell-en-au 155 | myspell-en-gb 156 | myspell-en-za 157 | myspell-es 158 | myspell-it 159 | myspell-pt 160 | myspell-pt-br 161 | myspell-pt-pt 162 | mythes-de 163 | mythes-de-ch 164 | mythes-en-au 165 | mythes-en-us 166 | mythes-fr 167 | mythes-it 168 | mythes-ru 169 | openoffice.org-hyphenation 170 | presage 171 | python-crypto 172 | python-ldb 173 | python-samba 174 | python-tdb 175 | python3-icu 176 | python3-pam 177 | rdate 178 | reiserfsprogs 179 | samba-common 180 | samba-common-bin 181 | tegaki-zinnia-japanese 182 | thunderbird-locale-de 183 | thunderbird-locale-en 184 | thunderbird-locale-en-gb 185 | thunderbird-locale-en-us 186 | thunderbird-locale-es 187 | thunderbird-locale-es-ar 188 | thunderbird-locale-es-es 189 | thunderbird-locale-fr 190 | thunderbird-locale-it 191 | thunderbird-locale-pt 192 | thunderbird-locale-pt-br 193 | thunderbird-locale-pt-pt 194 | thunderbird-locale-ru 195 | thunderbird-locale-zh-cn 196 | thunderbird-locale-zh-hans 197 | thunderbird-locale-zh-hant 198 | thunderbird-locale-zh-tw 199 | ubiquity 200 | ubiquity-casper 201 | ubiquity-frontend-gtk 202 | ubiquity-slideshow-ubuntu 203 | ubiquity-ubuntu-artwork 204 | user-setup 205 | wbrazilian 206 | wbritish 207 | wfrench 208 | witalian 209 | wngerman 210 | wogerman 211 | wportuguese 212 | wspanish 213 | wswiss 214 | xfsprogs 215 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/old-manifests/ubuntu-16.04/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | a11y-profile-manager 2 | apt-clone 3 | archdetect-deb 4 | btrfs-tools 5 | casper 6 | cifs-utils 7 | cryptsetup 8 | cryptsetup-bin 9 | dmeventd 10 | dmraid 11 | dmsetup 12 | dpkg-repack 13 | ecryptfs-utils 14 | fcitx 15 | fcitx-bin 16 | fcitx-config-common 17 | fcitx-config-gtk 18 | fcitx-data 19 | fcitx-frontend-all 20 | fcitx-frontend-gtk2 21 | fcitx-frontend-gtk3 22 | fcitx-frontend-qt4 23 | fcitx-frontend-qt5:amd64 24 | fcitx-hangul:amd64 25 | fcitx-module-cloudpinyin:amd64 26 | fcitx-module-dbus 27 | fcitx-module-kimpanel 28 | fcitx-module-lua 29 | fcitx-module-x11 30 | fcitx-modules 31 | fcitx-mozc:amd64 32 | fcitx-pinyin 33 | fcitx-table 34 | fcitx-ui-classic 35 | fcitx-ui-qimpanel 36 | fcitx-unikey 37 | firefox-locale-de 38 | firefox-locale-en 39 | firefox-locale-es 40 | firefox-locale-fr 41 | firefox-locale-it 42 | firefox-locale-pt 43 | firefox-locale-ru 44 | firefox-locale-zh-hans 45 | fonts-arphic-ukai 46 | fonts-arphic-uming 47 | gir1.2-timezonemap-1.0 48 | gir1.2-xkl-1.0:amd64 49 | gparted 50 | hunspell-de-at 51 | hunspell-de-ch 52 | hunspell-de-de 53 | hunspell-en-ca 54 | hunspell-en-gb 55 | hunspell-en-za 56 | hunspell-fr 57 | hunspell-fr-classical 58 | hunspell-it 59 | hunspell-ru 60 | hyphen-de 61 | hyphen-en-us 62 | hyphen-fr 63 | hyphen-it 64 | hyphen-ru 65 | jfsutils 66 | keyutils 67 | kpartx 68 | kpartx-boot 69 | language-pack-de 70 | language-pack-de-base 71 | language-pack-en 72 | language-pack-en-base 73 | language-pack-es 74 | language-pack-es-base 75 | language-pack-fr 76 | language-pack-fr-base 77 | language-pack-gnome-de 78 | language-pack-gnome-de-base 79 | language-pack-gnome-en 80 | language-pack-gnome-en-base 81 | language-pack-gnome-es 82 | language-pack-gnome-es-base 83 | language-pack-gnome-fr 84 | language-pack-gnome-fr-base 85 | language-pack-gnome-it 86 | language-pack-gnome-it-base 87 | language-pack-gnome-pt 88 | language-pack-gnome-pt-base 89 | language-pack-gnome-ru 90 | language-pack-gnome-ru-base 91 | language-pack-gnome-zh-hans 92 | language-pack-gnome-zh-hans-base 93 | language-pack-it 94 | language-pack-it-base 95 | language-pack-pt 96 | language-pack-pt-base 97 | language-pack-ru 98 | language-pack-ru-base 99 | language-pack-zh-hans 100 | language-pack-zh-hans-base 101 | libdebian-installer4:amd64 102 | libdevmapper-event1.02.1:amd64 103 | libdmraid1.0.0.rc16 104 | libecryptfs1 105 | libfcitx-core0:amd64 106 | libfcitx-qt0:amd64 107 | libfcitx-qt5-1:amd64 108 | libgtkmm-2.4-1v5:amd64 109 | libhangul-data 110 | libhangul1:amd64 111 | liblvm2app2.2:amd64 112 | liblvm2cmd2.02:amd64 113 | libnss3-1d:amd64 114 | libparted-fs-resize0:amd64 115 | libpresage-data 116 | libpresage1v5:amd64 117 | libqt5quickwidgets5:amd64 118 | libreadline5:amd64 119 | libreoffice-help-de 120 | libreoffice-help-en-gb 121 | libreoffice-help-en-us 122 | libreoffice-help-es 123 | libreoffice-help-fr 124 | libreoffice-help-it 125 | libreoffice-help-pt 126 | libreoffice-help-pt-br 127 | libreoffice-help-ru 128 | libreoffice-help-zh-cn 129 | libreoffice-help-zh-tw 130 | libreoffice-l10n-de 131 | libreoffice-l10n-en-gb 132 | libreoffice-l10n-en-za 133 | libreoffice-l10n-es 134 | libreoffice-l10n-fr 135 | libreoffice-l10n-it 136 | libreoffice-l10n-pt 137 | libreoffice-l10n-pt-br 138 | libreoffice-l10n-ru 139 | libreoffice-l10n-zh-cn 140 | libreoffice-l10n-zh-tw 141 | libtinyxml2.6.2v5:amd64 142 | libzinnia0v5 143 | linux-signed-generic 144 | linux-signed-image-4.4.0-21-generic 145 | linux-signed-image-generic 146 | localechooser-data 147 | lupin-casper 148 | lvm2 149 | metacity 150 | mokutil 151 | mozc-data 152 | mozc-server 153 | mozc-utils-gui 154 | myspell-en-au 155 | myspell-en-gb 156 | myspell-en-za 157 | myspell-es 158 | myspell-it 159 | myspell-pt 160 | myspell-pt-br 161 | myspell-pt-pt 162 | mythes-de 163 | mythes-de-ch 164 | mythes-en-au 165 | mythes-en-us 166 | mythes-fr 167 | mythes-it 168 | mythes-ru 169 | openoffice.org-hyphenation 170 | presage 171 | python-crypto 172 | python-ldb 173 | python-samba 174 | python-tdb 175 | python3-icu 176 | python3-pam 177 | rdate 178 | reiserfsprogs 179 | samba-common 180 | samba-common-bin 181 | tegaki-zinnia-japanese 182 | thunderbird-locale-de 183 | thunderbird-locale-en 184 | thunderbird-locale-en-gb 185 | thunderbird-locale-en-us 186 | thunderbird-locale-es 187 | thunderbird-locale-es-ar 188 | thunderbird-locale-es-es 189 | thunderbird-locale-fr 190 | thunderbird-locale-it 191 | thunderbird-locale-pt 192 | thunderbird-locale-pt-br 193 | thunderbird-locale-pt-pt 194 | thunderbird-locale-ru 195 | thunderbird-locale-zh-cn 196 | thunderbird-locale-zh-hans 197 | thunderbird-locale-zh-hant 198 | thunderbird-locale-zh-tw 199 | ubiquity 200 | ubiquity-casper 201 | ubiquity-frontend-gtk 202 | ubiquity-slideshow-ubuntu 203 | ubiquity-ubuntu-artwork 204 | user-setup 205 | wbrazilian 206 | wbritish 207 | wfrench 208 | witalian 209 | wngerman 210 | wogerman 211 | wportuguese 212 | wspanish 213 | wswiss 214 | xfsprogs 215 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/old-manifests/ubuntu-18.04.3/filesystem.manifest-minimal-remove: -------------------------------------------------------------------------------- 1 | thunderbird 2 | transmission-gtk 3 | gnome-todo 4 | baobab 5 | rhythmbox 6 | cheese 7 | vino 8 | shotwell 9 | totem 10 | usb-creator-gtk 11 | deja-dup 12 | gnome-calendar 13 | remmina 14 | simple-scan 15 | thunderbird-gnome-support 16 | aisleriot 17 | gnome-mahjongg 18 | gnome-mines 19 | gnome-sudoku 20 | branding-ubuntu 21 | libreoffice-style-breeze 22 | libreoffice-gnome 23 | libreoffice-writer 24 | libreoffice-calc 25 | libreoffice-impress 26 | libreoffice-math 27 | libreoffice-ogltrans 28 | libreoffice-pdfimport 29 | example-content 30 | ubuntu-web-launchers 31 | libreoffice-l10n-en-gb 32 | libreoffice-l10n-es 33 | libreoffice-l10n-zh-cn 34 | libreoffice-l10n-zh-tw 35 | libreoffice-l10n-pt 36 | libreoffice-l10n-pt-br 37 | libreoffice-l10n-de 38 | libreoffice-l10n-fr 39 | libreoffice-l10n-it 40 | libreoffice-l10n-ru 41 | libreoffice-l10n-en-za 42 | libreoffice-help-en-gb 43 | libreoffice-help-es 44 | libreoffice-help-zh-cn 45 | libreoffice-help-zh-tw 46 | libreoffice-help-pt 47 | libreoffice-help-pt-br 48 | libreoffice-help-de 49 | libreoffice-help-fr 50 | libreoffice-help-it 51 | libreoffice-help-ru 52 | libreoffice-help-en-us 53 | thunderbird-locale-en 54 | thunderbird-locale-en-gb 55 | thunderbird-locale-en-us 56 | thunderbird-locale-es 57 | thunderbird-locale-es-ar 58 | thunderbird-locale-es-es 59 | thunderbird-locale-zh-cn 60 | thunderbird-locale-zh-hans 61 | thunderbird-locale-zh-hant 62 | thunderbird-locale-zh-tw 63 | thunderbird-locale-pt 64 | thunderbird-locale-pt-br 65 | thunderbird-locale-pt-pt 66 | thunderbird-locale-de 67 | thunderbird-locale-fr 68 | thunderbird-locale-it 69 | thunderbird-locale-ru 70 | gir1.2-rb-3.0 71 | gir1.2-totem-1.0 72 | gir1.2-totemplparser-1.0 73 | guile-2.0-libs 74 | libabw-0.1-1 75 | libavahi-ui-gtk3-0 76 | libdmapsharing-3.0-2 77 | libexttextcat-2.0-0 78 | libexttextcat-data 79 | libfreehand-0.1-1 80 | libgnome-games-support-1-3 81 | libgnome-games-support-common 82 | libgom-1.0-0 83 | libgrilo-0.3-0 84 | liblangtag-common 85 | liblangtag1 86 | libmessaging-menu0 87 | libmhash2 88 | libminiupnpc10 89 | libmwaw-0.3-3 90 | libmythes-1.2-0 91 | libnatpmp1 92 | libneon27-gnutls 93 | liborcus-0.13-0 94 | libpagemaker-0.0-0 95 | librdf0 96 | libreoffice-avmedia-backend-gstreamer 97 | libreoffice-base-core 98 | libreoffice-common 99 | libreoffice-core 100 | libreoffice-draw 101 | libreoffice-gtk3 102 | libreoffice-style-elementary 103 | libreoffice-style-galaxy 104 | libreoffice-style-tango 105 | libraptor2-0 106 | librasqal3 107 | librevenge-0.0-0 108 | librhythmbox-core10 109 | libtotem0 110 | libvisio-0.1-1 111 | libwpd-0.10-10 112 | libwpg-0.3-3 113 | libwps-0.4-4 114 | libyajl2 115 | python3-uno 116 | rhythmbox-data 117 | rhythmbox-plugin-alternative-toolbar 118 | rhythmbox-plugins 119 | remmina-common 120 | remmina-plugin-rdp 121 | remmina-plugin-secret 122 | remmina-plugin-vnc 123 | duplicity 124 | seahorse-daemon 125 | shotwell-common 126 | totem-common 127 | totem-plugins 128 | transmission-common 129 | cheese-common 130 | gnome-todo-common 131 | libgnome-todo 132 | gnome-video-effects 133 | libcheese-gtk25 134 | libcheese8 135 | uno-libs3 136 | ure 137 | zeitgeist-core 138 | hunspell-de-at-frami 139 | hunspell-de-ch-frami 140 | hunspell-de-de-frami 141 | hunspell-en-au 142 | hunspell-en-ca 143 | hunspell-en-gb 144 | hunspell-en-za 145 | hunspell-es 146 | hunspell-fr 147 | hunspell-fr-classical 148 | hunspell-it 149 | hunspell-pt-br 150 | hunspell-pt-pt 151 | hunspell-ru 152 | hyphen-de 153 | hyphen-en-ca 154 | hyphen-en-gb 155 | hyphen-en-us 156 | hyphen-fr 157 | hyphen-hr 158 | hyphen-it 159 | hyphen-pl 160 | hyphen-pt-br 161 | hyphen-pt-pt 162 | hyphen-ru 163 | mythes-de 164 | mythes-de-ch 165 | mythes-en-au 166 | mythes-en-us 167 | mythes-fr 168 | mythes-it 169 | mythes-pt-pt 170 | mythes-ru 171 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/old-manifests/ubuntu-18.04.3/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | apt-clone 2 | archdetect-deb 3 | btrfs-progs 4 | btrfs-tools 5 | casper 6 | cifs-utils 7 | cryptsetup 8 | cryptsetup-bin 9 | dmeventd 10 | dmraid 11 | dpkg-repack 12 | firefox-locale-de 13 | firefox-locale-en 14 | firefox-locale-es 15 | firefox-locale-fr 16 | firefox-locale-it 17 | firefox-locale-pt 18 | firefox-locale-ru 19 | firefox-locale-zh-hans 20 | fonts-arphic-ukai 21 | fonts-arphic-uming 22 | gir1.2-timezonemap-1.0 23 | gir1.2-xkl-1.0:amd64 24 | gnome-getting-started-docs-de 25 | gnome-getting-started-docs-es 26 | gnome-getting-started-docs-fr 27 | gnome-getting-started-docs-it 28 | gnome-getting-started-docs-pt 29 | gnome-getting-started-docs-ru 30 | gnome-user-docs-de 31 | gnome-user-docs-es 32 | gnome-user-docs-fr 33 | gnome-user-docs-it 34 | gnome-user-docs-pt 35 | gnome-user-docs-ru 36 | gnome-user-docs-zh-hans 37 | gparted 38 | gtk-im-libthai:amd64 39 | hunspell-de-at-frami 40 | hunspell-de-ch-frami 41 | hunspell-de-de-frami 42 | hunspell-en-au 43 | hunspell-en-ca 44 | hunspell-en-gb 45 | hunspell-en-za 46 | hunspell-es 47 | hunspell-fr 48 | hunspell-fr-classical 49 | hunspell-it 50 | hunspell-pt-br 51 | hunspell-pt-pt 52 | hunspell-ru 53 | hyphen-de 54 | hyphen-en-ca 55 | hyphen-en-gb 56 | hyphen-en-us 57 | hyphen-fr 58 | hyphen-it 59 | hyphen-pt-br 60 | hyphen-pt-pt 61 | hyphen-ru 62 | ibus-chewing 63 | ibus-hangul 64 | ibus-libpinyin 65 | ibus-m17n 66 | ibus-mozc 67 | ibus-table-cangjie 68 | ibus-table-cangjie-big 69 | ibus-table-cangjie3 70 | ibus-table-cangjie5 71 | ibus-table-quick-classic 72 | ibus-table-wubi 73 | ibus-unikey 74 | jfsutils 75 | kpartx 76 | kpartx-boot 77 | language-pack-de 78 | language-pack-de-base 79 | language-pack-en 80 | language-pack-en-base 81 | language-pack-es 82 | language-pack-es-base 83 | language-pack-fr 84 | language-pack-fr-base 85 | language-pack-gnome-de 86 | language-pack-gnome-de-base 87 | language-pack-gnome-en 88 | language-pack-gnome-en-base 89 | language-pack-gnome-es 90 | language-pack-gnome-es-base 91 | language-pack-gnome-fr 92 | language-pack-gnome-fr-base 93 | language-pack-gnome-it 94 | language-pack-gnome-it-base 95 | language-pack-gnome-pt 96 | language-pack-gnome-pt-base 97 | language-pack-gnome-ru 98 | language-pack-gnome-ru-base 99 | language-pack-gnome-zh-hans 100 | language-pack-gnome-zh-hans-base 101 | language-pack-it 102 | language-pack-it-base 103 | language-pack-pt 104 | language-pack-pt-base 105 | language-pack-ru 106 | language-pack-ru-base 107 | language-pack-zh-hans 108 | language-pack-zh-hans-base 109 | libatkmm-1.6-1v5:amd64 110 | libcairomm-1.0-1v5:amd64 111 | libchewing3:amd64 112 | libchewing3-data 113 | libdebian-installer4:amd64 114 | libdevmapper-event1.02.1:amd64 115 | libdmraid1.0.0.rc16 116 | libdouble-conversion1:amd64 117 | libglibmm-2.4-1v5:amd64 118 | libgtkmm-2.4-1v5:amd64 119 | libhangul-data 120 | libhangul1:amd64 121 | libido3-0.1-0:amd64 122 | liblvm2app2.2:amd64 123 | liblvm2cmd2.02:amd64 124 | libm17n-0:amd64 125 | libotf0:amd64 126 | libpangomm-1.4-1v5:amd64 127 | libpinyin-data:amd64 128 | libpinyin13:amd64 129 | libpython-stdlib:amd64 130 | libqt5core5a:amd64 131 | libqt5dbus5:amd64 132 | libqt5gui5:amd64 133 | libqt5network5:amd64 134 | libqt5svg5:amd64 135 | libqt5widgets5:amd64 136 | libreadline5:amd64 137 | libreoffice-help-de 138 | libreoffice-help-en-gb 139 | libreoffice-help-en-us 140 | libreoffice-help-es 141 | libreoffice-help-fr 142 | libreoffice-help-it 143 | libreoffice-help-pt 144 | libreoffice-help-pt-br 145 | libreoffice-help-ru 146 | libreoffice-help-zh-cn 147 | libreoffice-help-zh-tw 148 | libreoffice-l10n-de 149 | libreoffice-l10n-en-gb 150 | libreoffice-l10n-en-za 151 | libreoffice-l10n-es 152 | libreoffice-l10n-fr 153 | libreoffice-l10n-it 154 | libreoffice-l10n-pt 155 | libreoffice-l10n-pt-br 156 | libreoffice-l10n-ru 157 | libreoffice-l10n-zh-cn 158 | libreoffice-l10n-zh-tw 159 | libsigc++-2.0-0v5:amd64 160 | libtimezonemap-data 161 | libtimezonemap1:amd64 162 | libxcb-xinerama0:amd64 163 | libzinnia0v5 164 | linux-signed-generic-hwe-18.04 165 | localechooser-data 166 | lupin-casper 167 | lvm2 168 | m17n-db 169 | mokutil 170 | mozc-data 171 | mozc-server 172 | mozc-utils-gui 173 | mythes-de 174 | mythes-de-ch 175 | mythes-en-au 176 | mythes-en-us 177 | mythes-fr 178 | mythes-it 179 | mythes-pt-pt 180 | mythes-ru 181 | python 182 | python-crypto 183 | python-ldb:amd64 184 | python-minimal 185 | python-samba 186 | python-tdb 187 | python2.7 188 | python2.7-minimal 189 | python3-icu 190 | python3-pam 191 | qt5-gtk-platformtheme:amd64 192 | qttranslations5-l10n 193 | rdate 194 | reiserfsprogs 195 | samba-common 196 | samba-common-bin 197 | tegaki-zinnia-japanese 198 | thunderbird-locale-de 199 | thunderbird-locale-en 200 | thunderbird-locale-en-gb 201 | thunderbird-locale-en-us 202 | thunderbird-locale-es 203 | thunderbird-locale-es-ar 204 | thunderbird-locale-es-es 205 | thunderbird-locale-fr 206 | thunderbird-locale-it 207 | thunderbird-locale-pt 208 | thunderbird-locale-pt-br 209 | thunderbird-locale-pt-pt 210 | thunderbird-locale-ru 211 | thunderbird-locale-zh-cn 212 | thunderbird-locale-zh-hans 213 | thunderbird-locale-zh-hant 214 | thunderbird-locale-zh-tw 215 | ubiquity 216 | ubiquity-casper 217 | ubiquity-frontend-gtk 218 | ubiquity-slideshow-ubuntu 219 | ubiquity-ubuntu-artwork 220 | user-setup 221 | wbrazilian 222 | wbritish 223 | wfrench 224 | witalian 225 | wngerman 226 | wogerman 227 | wportuguese 228 | wspanish 229 | wswiss 230 | xfsprogs 231 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/old-manifests/ubuntu-20.04.1/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | apt-clone 2 | archdetect-deb 3 | btrfs-progs 4 | casper 5 | cifs-utils 6 | cryptsetup 7 | cryptsetup-bin 8 | cryptsetup-initramfs 9 | cryptsetup-run 10 | dctrl-tools 11 | dmeventd 12 | dmraid 13 | dpkg-repack 14 | finalrd 15 | firefox-locale-de 16 | firefox-locale-en 17 | firefox-locale-es 18 | firefox-locale-fr 19 | firefox-locale-it 20 | firefox-locale-pt 21 | firefox-locale-ru 22 | firefox-locale-zh-hans 23 | fonts-arphic-ukai 24 | fonts-arphic-uming 25 | gir1.2-timezonemap-1.0 26 | gir1.2-xkl-1.0:amd64 27 | gnome-getting-started-docs-de 28 | gnome-getting-started-docs-es 29 | gnome-getting-started-docs-fr 30 | gnome-getting-started-docs-it 31 | gnome-getting-started-docs-pt 32 | gnome-getting-started-docs-ru 33 | gnome-user-docs-de 34 | gnome-user-docs-es 35 | gnome-user-docs-fr 36 | gnome-user-docs-it 37 | gnome-user-docs-pt 38 | gnome-user-docs-ru 39 | gnome-user-docs-zh-hans 40 | gparted 41 | gparted-common 42 | gtk-im-libthai:amd64 43 | hunspell-de-at-frami 44 | hunspell-de-ch-frami 45 | hunspell-de-de-frami 46 | hunspell-en-au 47 | hunspell-en-ca 48 | hunspell-en-gb 49 | hunspell-en-za 50 | hunspell-es 51 | hunspell-fr 52 | hunspell-fr-classical 53 | hunspell-it 54 | hunspell-pt-br 55 | hunspell-pt-pt 56 | hunspell-ru 57 | hyphen-de 58 | hyphen-en-ca 59 | hyphen-en-gb 60 | hyphen-en-us 61 | hyphen-es 62 | hyphen-fr 63 | hyphen-it 64 | hyphen-pt-br 65 | hyphen-pt-pt 66 | hyphen-ru 67 | ibus-chewing 68 | ibus-hangul 69 | ibus-libpinyin 70 | ibus-m17n 71 | ibus-mozc 72 | ibus-table-cangjie 73 | ibus-table-cangjie-big 74 | ibus-table-cangjie3 75 | ibus-table-cangjie5 76 | ibus-table-quick-classic 77 | ibus-table-wubi 78 | ibus-unikey 79 | jfsutils 80 | kpartx 81 | kpartx-boot 82 | language-pack-de 83 | language-pack-de-base 84 | language-pack-en 85 | language-pack-en-base 86 | language-pack-es 87 | language-pack-es-base 88 | language-pack-fr 89 | language-pack-fr-base 90 | language-pack-gnome-de 91 | language-pack-gnome-de-base 92 | language-pack-gnome-en 93 | language-pack-gnome-en-base 94 | language-pack-gnome-es 95 | language-pack-gnome-es-base 96 | language-pack-gnome-fr 97 | language-pack-gnome-fr-base 98 | language-pack-gnome-it 99 | language-pack-gnome-it-base 100 | language-pack-gnome-pt 101 | language-pack-gnome-pt-base 102 | language-pack-gnome-ru 103 | language-pack-gnome-ru-base 104 | language-pack-gnome-zh-hans 105 | language-pack-gnome-zh-hans-base 106 | language-pack-it 107 | language-pack-it-base 108 | language-pack-pt 109 | language-pack-pt-base 110 | language-pack-ru 111 | language-pack-ru-base 112 | language-pack-zh-hans 113 | language-pack-zh-hans-base 114 | libaio1:amd64 115 | libchewing3:amd64 116 | libchewing3-data 117 | libdebian-installer4:amd64 118 | libdevmapper-event1.02.1:amd64 119 | libdmraid1.0.0.rc16 120 | libhangul-data 121 | libhangul1:amd64 122 | liblvm2cmd2.03:amd64 123 | libm17n-0:amd64 124 | libnvpair1linux 125 | libotf0:amd64 126 | libpinyin-data:amd64 127 | libpinyin13:amd64 128 | libreadline5:amd64 129 | libreoffice-help-common 130 | libreoffice-help-de 131 | libreoffice-help-en-gb 132 | libreoffice-help-en-us 133 | libreoffice-help-es 134 | libreoffice-help-fr 135 | libreoffice-help-it 136 | libreoffice-help-pt 137 | libreoffice-help-pt-br 138 | libreoffice-help-ru 139 | libreoffice-help-zh-cn 140 | libreoffice-help-zh-tw 141 | libreoffice-l10n-de 142 | libreoffice-l10n-en-gb 143 | libreoffice-l10n-en-za 144 | libreoffice-l10n-es 145 | libreoffice-l10n-fr 146 | libreoffice-l10n-it 147 | libreoffice-l10n-pt 148 | libreoffice-l10n-pt-br 149 | libreoffice-l10n-ru 150 | libreoffice-l10n-zh-cn 151 | libreoffice-l10n-zh-tw 152 | libtimezonemap-data 153 | libtimezonemap1:amd64 154 | libuutil1linux 155 | libzfs2linux 156 | libzpool2linux 157 | localechooser-data 158 | lupin-casper 159 | lvm2 160 | m17n-db 161 | mokutil 162 | mozc-data 163 | mozc-server 164 | mythes-de 165 | mythes-de-ch 166 | mythes-en-au 167 | mythes-en-us 168 | mythes-es 169 | mythes-fr 170 | mythes-it 171 | mythes-pt-pt 172 | mythes-ru 173 | python3-icu 174 | python3-pam 175 | rdate 176 | reiserfsprogs 177 | tegaki-zinnia-japanese 178 | thin-provisioning-tools 179 | thunderbird-locale-de 180 | thunderbird-locale-en 181 | thunderbird-locale-en-gb 182 | thunderbird-locale-en-us 183 | thunderbird-locale-es 184 | thunderbird-locale-es-ar 185 | thunderbird-locale-es-es 186 | thunderbird-locale-fr 187 | thunderbird-locale-it 188 | thunderbird-locale-pt 189 | thunderbird-locale-pt-br 190 | thunderbird-locale-pt-pt 191 | thunderbird-locale-ru 192 | thunderbird-locale-zh-cn 193 | thunderbird-locale-zh-hans 194 | thunderbird-locale-zh-hant 195 | thunderbird-locale-zh-tw 196 | ubiquity 197 | ubiquity-casper 198 | ubiquity-frontend-gtk 199 | ubiquity-slideshow-ubuntu 200 | ubiquity-ubuntu-artwork 201 | user-setup 202 | wbrazilian 203 | wbritish 204 | wfrench 205 | witalian 206 | wngerman 207 | wogerman 208 | wportuguese 209 | wspanish 210 | wswiss 211 | xfsprogs 212 | zfs-initramfs 213 | zfs-zed 214 | zfsutils-linux 215 | zsys 216 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/old-manifests/ubuntu-20.04.2/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | apt-clone 2 | archdetect-deb 3 | btrfs-progs 4 | casper 5 | cifs-utils 6 | cryptsetup 7 | cryptsetup-bin 8 | cryptsetup-initramfs 9 | cryptsetup-run 10 | dctrl-tools 11 | dmeventd 12 | dmraid 13 | dpkg-repack 14 | finalrd 15 | firefox-locale-de 16 | firefox-locale-en 17 | firefox-locale-es 18 | firefox-locale-fr 19 | firefox-locale-it 20 | firefox-locale-pt 21 | firefox-locale-ru 22 | firefox-locale-zh-hans 23 | fonts-arphic-ukai 24 | fonts-arphic-uming 25 | gir1.2-timezonemap-1.0 26 | gir1.2-xkl-1.0:amd64 27 | gnome-getting-started-docs-de 28 | gnome-getting-started-docs-es 29 | gnome-getting-started-docs-fr 30 | gnome-getting-started-docs-it 31 | gnome-getting-started-docs-pt 32 | gnome-getting-started-docs-ru 33 | gnome-user-docs-de 34 | gnome-user-docs-es 35 | gnome-user-docs-fr 36 | gnome-user-docs-it 37 | gnome-user-docs-pt 38 | gnome-user-docs-ru 39 | gnome-user-docs-zh-hans 40 | gparted 41 | gparted-common 42 | gtk-im-libthai:amd64 43 | hunspell-de-at-frami 44 | hunspell-de-ch-frami 45 | hunspell-de-de-frami 46 | hunspell-en-au 47 | hunspell-en-ca 48 | hunspell-en-gb 49 | hunspell-en-za 50 | hunspell-es 51 | hunspell-fr 52 | hunspell-fr-classical 53 | hunspell-it 54 | hunspell-pt-br 55 | hunspell-pt-pt 56 | hunspell-ru 57 | hyphen-de 58 | hyphen-en-ca 59 | hyphen-en-gb 60 | hyphen-en-us 61 | hyphen-es 62 | hyphen-fr 63 | hyphen-it 64 | hyphen-pt-br 65 | hyphen-pt-pt 66 | hyphen-ru 67 | ibus-chewing 68 | ibus-hangul 69 | ibus-libpinyin 70 | ibus-m17n 71 | ibus-mozc 72 | ibus-table-cangjie 73 | ibus-table-cangjie-big 74 | ibus-table-cangjie3 75 | ibus-table-cangjie5 76 | ibus-table-quick-classic 77 | ibus-table-wubi 78 | ibus-unikey 79 | jfsutils 80 | kpartx 81 | kpartx-boot 82 | language-pack-de 83 | language-pack-de-base 84 | language-pack-en 85 | language-pack-en-base 86 | language-pack-es 87 | language-pack-es-base 88 | language-pack-fr 89 | language-pack-fr-base 90 | language-pack-gnome-de 91 | language-pack-gnome-de-base 92 | language-pack-gnome-en 93 | language-pack-gnome-en-base 94 | language-pack-gnome-es 95 | language-pack-gnome-es-base 96 | language-pack-gnome-fr 97 | language-pack-gnome-fr-base 98 | language-pack-gnome-it 99 | language-pack-gnome-it-base 100 | language-pack-gnome-pt 101 | language-pack-gnome-pt-base 102 | language-pack-gnome-ru 103 | language-pack-gnome-ru-base 104 | language-pack-gnome-zh-hans 105 | language-pack-gnome-zh-hans-base 106 | language-pack-it 107 | language-pack-it-base 108 | language-pack-pt 109 | language-pack-pt-base 110 | language-pack-ru 111 | language-pack-ru-base 112 | language-pack-zh-hans 113 | language-pack-zh-hans-base 114 | libaio1:amd64 115 | libchewing3:amd64 116 | libchewing3-data 117 | libdebian-installer4:amd64 118 | libdevmapper-event1.02.1:amd64 119 | libdmraid1.0.0.rc16 120 | libhangul-data 121 | libhangul1:amd64 122 | liblvm2cmd2.03:amd64 123 | libm17n-0:amd64 124 | libnvpair1linux 125 | libotf0:amd64 126 | libpinyin-data:amd64 127 | libpinyin13:amd64 128 | libreadline5:amd64 129 | libreoffice-help-common 130 | libreoffice-help-de 131 | libreoffice-help-en-gb 132 | libreoffice-help-en-us 133 | libreoffice-help-es 134 | libreoffice-help-fr 135 | libreoffice-help-it 136 | libreoffice-help-pt 137 | libreoffice-help-pt-br 138 | libreoffice-help-ru 139 | libreoffice-help-zh-cn 140 | libreoffice-help-zh-tw 141 | libreoffice-l10n-de 142 | libreoffice-l10n-en-gb 143 | libreoffice-l10n-en-za 144 | libreoffice-l10n-es 145 | libreoffice-l10n-fr 146 | libreoffice-l10n-it 147 | libreoffice-l10n-pt 148 | libreoffice-l10n-pt-br 149 | libreoffice-l10n-ru 150 | libreoffice-l10n-zh-cn 151 | libreoffice-l10n-zh-tw 152 | libtimezonemap-data 153 | libtimezonemap1:amd64 154 | libuutil1linux 155 | libzfs2linux 156 | libzpool2linux 157 | localechooser-data 158 | lupin-casper 159 | lvm2 160 | m17n-db 161 | mokutil 162 | mozc-data 163 | mozc-server 164 | mythes-de 165 | mythes-de-ch 166 | mythes-en-au 167 | mythes-en-us 168 | mythes-es 169 | mythes-fr 170 | mythes-it 171 | mythes-pt-pt 172 | mythes-ru 173 | python3-icu 174 | python3-pam 175 | rdate 176 | reiserfsprogs 177 | tegaki-zinnia-japanese 178 | thin-provisioning-tools 179 | thunderbird-locale-de 180 | thunderbird-locale-en 181 | thunderbird-locale-en-gb 182 | thunderbird-locale-en-us 183 | thunderbird-locale-es 184 | thunderbird-locale-es-ar 185 | thunderbird-locale-es-es 186 | thunderbird-locale-fr 187 | thunderbird-locale-it 188 | thunderbird-locale-pt 189 | thunderbird-locale-pt-br 190 | thunderbird-locale-pt-pt 191 | thunderbird-locale-ru 192 | thunderbird-locale-zh-cn 193 | thunderbird-locale-zh-hans 194 | thunderbird-locale-zh-hant 195 | thunderbird-locale-zh-tw 196 | ubiquity 197 | ubiquity-casper 198 | ubiquity-frontend-gtk 199 | ubiquity-slideshow-ubuntu 200 | ubiquity-ubuntu-artwork 201 | user-setup 202 | wbrazilian 203 | wbritish 204 | wfrench 205 | witalian 206 | wngerman 207 | wogerman 208 | wportuguese 209 | wspanish 210 | wswiss 211 | xfsprogs 212 | zfs-initramfs 213 | zfs-zed 214 | zfsutils-linux 215 | zsys 216 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/old-manifests/ubuntu-mate-15.10/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | apt-clone 2 | archdetect-deb 3 | btrfs-tools 4 | casper 5 | cifs-utils 6 | cryptsetup 7 | cryptsetup-bin 8 | dmeventd 9 | dmraid 10 | dpkg-repack 11 | ecryptfs-utils 12 | fcitx-bin 13 | firefox-locale-en 14 | gir1.2-json-1.0:amd64 15 | gir1.2-timezonemap-1.0 16 | gir1.2-xkl-1.0 17 | gnome-desktop3-data 18 | gparted 19 | grub-gfxpayload-lists 20 | grub-pc 21 | grub-pc-bin 22 | grub2-common 23 | hunspell-en-us 24 | indicator-applet 25 | indicator-keyboard 26 | indicator-power 27 | indicator-session 28 | jfsutils 29 | keyutils 30 | kpartx 31 | kpartx-boot 32 | language-pack-bn 33 | language-pack-bn-base 34 | language-pack-en 35 | language-pack-en-base 36 | language-pack-es 37 | language-pack-es-base 38 | language-pack-fr 39 | language-pack-fr-base 40 | language-pack-hi 41 | language-pack-hi-base 42 | language-pack-ja 43 | language-pack-ja-base 44 | language-pack-pt 45 | language-pack-pt-base 46 | language-pack-zh-hans 47 | language-pack-zh-hans-base 48 | libdebian-installer4:amd64 49 | libdevmapper-event1.02.1:amd64 50 | libdmraid1.0.0.rc16 51 | libecryptfs1 52 | libfcitx-config4:amd64 53 | libfcitx-core0:amd64 54 | libfcitx-gclient0:amd64 55 | libfcitx-utils0:amd64 56 | libgettextpo0:amd64 57 | libgnome-desktop-3-10:amd64 58 | libibus-1.0-5:amd64 59 | liblvm2cmd2.02:amd64 60 | libnss3-1d:amd64 61 | libpanel-applet0 62 | libparted-fs-resize0:amd64 63 | libreadline5:amd64 64 | libtimezonemap-data 65 | libtimezonemap1:amd64 66 | libunistring0:amd64 67 | linux-signed-generic 68 | linux-signed-image-4.2.0-16-generic 69 | linux-signed-image-generic 70 | localechooser-data 71 | lupin-casper 72 | lvm2 73 | os-prober 74 | python3-icu 75 | python3-pam 76 | rdate 77 | reiserfsprogs 78 | sbsigntool 79 | ubiquity 80 | ubiquity-casper 81 | ubiquity-frontend-gtk 82 | ubiquity-slideshow-ubuntu-mate 83 | ubiquity-ubuntu-artwork 84 | ubuntu-mate-live-settings 85 | user-setup 86 | wamerican 87 | watershed 88 | xfsprogs 89 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/old-manifests/ubuntu-mate-16.04/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | apt-clone 2 | archdetect-deb 3 | btrfs-tools 4 | casper 5 | cifs-utils 6 | cryptsetup 7 | cryptsetup-bin 8 | dmeventd 9 | dmraid 10 | dmsetup 11 | dpkg-repack 12 | ecryptfs-utils 13 | fcitx-bin 14 | firefox-locale-de 15 | firefox-locale-en 16 | firefox-locale-es 17 | firefox-locale-fr 18 | firefox-locale-it 19 | firefox-locale-pt 20 | firefox-locale-ru 21 | firefox-locale-zh-hans 22 | fonts-arphic-ukai 23 | fonts-arphic-uming 24 | gir1.2-json-1.0:amd64 25 | gir1.2-timezonemap-1.0 26 | gir1.2-xkl-1.0:amd64 27 | gparted 28 | grub-gfxpayload-lists 29 | grub-pc 30 | grub-pc-bin 31 | grub2-common 32 | hunspell-de-at 33 | hunspell-de-ch 34 | hunspell-de-de 35 | hunspell-en-ca 36 | hunspell-en-gb 37 | hunspell-en-us 38 | hunspell-en-za 39 | hunspell-fr 40 | hunspell-fr-classical 41 | hunspell-it 42 | hunspell-ru 43 | hyphen-de 44 | hyphen-en-us 45 | hyphen-fr 46 | hyphen-it 47 | hyphen-ru 48 | indicator-applet 49 | indicator-power 50 | indicator-session 51 | jfsutils 52 | keyutils 53 | kpartx 54 | kpartx-boot 55 | language-pack-de 56 | language-pack-de-base 57 | language-pack-en 58 | language-pack-en-base 59 | language-pack-es 60 | language-pack-es-base 61 | language-pack-fr 62 | language-pack-fr-base 63 | language-pack-gnome-de 64 | language-pack-gnome-de-base 65 | language-pack-gnome-en 66 | language-pack-gnome-en-base 67 | language-pack-gnome-es 68 | language-pack-gnome-es-base 69 | language-pack-gnome-fr 70 | language-pack-gnome-fr-base 71 | language-pack-gnome-it 72 | language-pack-gnome-it-base 73 | language-pack-gnome-pt 74 | language-pack-gnome-pt-base 75 | language-pack-gnome-ru 76 | language-pack-gnome-ru-base 77 | language-pack-gnome-zh-hans 78 | language-pack-gnome-zh-hans-base 79 | language-pack-it 80 | language-pack-it-base 81 | language-pack-pt 82 | language-pack-pt-base 83 | language-pack-ru 84 | language-pack-ru-base 85 | language-pack-zh-hans 86 | language-pack-zh-hans-base 87 | libdebian-installer4:amd64 88 | libdevmapper-event1.02.1:amd64 89 | libdmraid1.0.0.rc16 90 | libecryptfs1 91 | libfcitx-config4:amd64 92 | libfcitx-core0:amd64 93 | libfcitx-utils0:amd64 94 | libgettextpo0:amd64 95 | liblvm2app2.2:amd64 96 | liblvm2cmd2.02:amd64 97 | libnss3-1d:amd64 98 | libpanel-applet0 99 | libparted-fs-resize0:amd64 100 | libreadline5:amd64 101 | libreoffice-help-de 102 | libreoffice-help-en-gb 103 | libreoffice-help-en-us 104 | libreoffice-help-es 105 | libreoffice-help-fr 106 | libreoffice-help-it 107 | libreoffice-help-pt 108 | libreoffice-help-pt-br 109 | libreoffice-help-ru 110 | libreoffice-help-zh-cn 111 | libreoffice-help-zh-tw 112 | libreoffice-l10n-de 113 | libreoffice-l10n-en-gb 114 | libreoffice-l10n-en-za 115 | libreoffice-l10n-es 116 | libreoffice-l10n-fr 117 | libreoffice-l10n-it 118 | libreoffice-l10n-pt 119 | libreoffice-l10n-pt-br 120 | libreoffice-l10n-ru 121 | libreoffice-l10n-zh-cn 122 | libreoffice-l10n-zh-tw 123 | libtimezonemap-data 124 | libtimezonemap1:amd64 125 | libunistring0:amd64 126 | linux-signed-generic 127 | linux-signed-image-4.4.0-21-generic 128 | linux-signed-image-generic 129 | localechooser-data 130 | lupin-casper 131 | lvm2 132 | mokutil 133 | myspell-en-au 134 | myspell-en-gb 135 | myspell-en-za 136 | myspell-es 137 | myspell-it 138 | myspell-pt 139 | myspell-pt-br 140 | myspell-pt-pt 141 | mythes-de 142 | mythes-de-ch 143 | mythes-en-au 144 | mythes-en-us 145 | mythes-fr 146 | mythes-it 147 | mythes-ru 148 | openoffice.org-hyphenation 149 | os-prober 150 | python3-icu 151 | python3-pam 152 | rdate 153 | reiserfsprogs 154 | thunderbird-locale-de 155 | thunderbird-locale-en 156 | thunderbird-locale-en-gb 157 | thunderbird-locale-en-us 158 | thunderbird-locale-es 159 | thunderbird-locale-es-ar 160 | thunderbird-locale-es-es 161 | thunderbird-locale-fr 162 | thunderbird-locale-it 163 | thunderbird-locale-pt 164 | thunderbird-locale-pt-br 165 | thunderbird-locale-pt-pt 166 | thunderbird-locale-ru 167 | thunderbird-locale-zh-cn 168 | thunderbird-locale-zh-hans 169 | thunderbird-locale-zh-hant 170 | thunderbird-locale-zh-tw 171 | ubiquity 172 | ubiquity-casper 173 | ubiquity-frontend-gtk 174 | ubiquity-slideshow-ubuntu-mate 175 | ubiquity-ubuntu-artwork 176 | ubuntu-mate-live-settings 177 | user-setup 178 | wamerican 179 | wbrazilian 180 | wbritish 181 | wfrench 182 | witalian 183 | wngerman 184 | wogerman 185 | wportuguese 186 | wspanish 187 | wswiss 188 | xfsprogs 189 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/old-manifests/xubuntu-14.04.2/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | apt-clone 2 | archdetect-deb 3 | btrfs-tools 4 | casper 5 | cifs-utils 6 | cryptsetup 7 | cryptsetup-bin 8 | dmraid 9 | dpkg-repack 10 | ecryptfs-utils 11 | firefox-locale-bn 12 | firefox-locale-de 13 | firefox-locale-en 14 | firefox-locale-es 15 | firefox-locale-fr 16 | firefox-locale-hi 17 | firefox-locale-ja 18 | firefox-locale-pt 19 | firefox-locale-xh 20 | firefox-locale-zh-hans 21 | gir1.2-json-1.0 22 | gir1.2-timezonemap-1.0 23 | gir1.2-xkl-1.0 24 | gparted 25 | jfsutils 26 | keyutils 27 | kpartx 28 | kpartx-boot 29 | language-pack-bn 30 | language-pack-bn-base 31 | language-pack-de 32 | language-pack-de-base 33 | language-pack-en 34 | language-pack-en-base 35 | language-pack-es 36 | language-pack-es-base 37 | language-pack-fr 38 | language-pack-fr-base 39 | language-pack-gnome-bn 40 | language-pack-gnome-bn-base 41 | language-pack-gnome-de 42 | language-pack-gnome-de-base 43 | language-pack-gnome-en 44 | language-pack-gnome-en-base 45 | language-pack-gnome-es 46 | language-pack-gnome-es-base 47 | language-pack-gnome-fr 48 | language-pack-gnome-fr-base 49 | language-pack-gnome-hi 50 | language-pack-gnome-hi-base 51 | language-pack-gnome-ja 52 | language-pack-gnome-ja-base 53 | language-pack-gnome-pt 54 | language-pack-gnome-pt-base 55 | language-pack-gnome-xh 56 | language-pack-gnome-xh-base 57 | language-pack-gnome-zh-hans 58 | language-pack-gnome-zh-hans-base 59 | language-pack-hi 60 | language-pack-hi-base 61 | language-pack-ja 62 | language-pack-ja-base 63 | language-pack-pt 64 | language-pack-pt-base 65 | language-pack-xh 66 | language-pack-xh-base 67 | language-pack-zh-hans 68 | language-pack-zh-hans-base 69 | libcryptsetup4 70 | libdebian-installer4:amd64 71 | libdevmapper-event1.02.1:amd64 72 | libdmraid1.0.0.rc16 73 | libecryptfs0 74 | libgtkmm-2.4-1c2a:amd64 75 | libnss3-1d:amd64 76 | libtimezonemap1 77 | linux-signed-generic-lts-utopic 78 | linux-signed-image-3.16.0-30-generic 79 | linux-signed-image-generic-lts-utopic 80 | localechooser-data 81 | lupin-casper 82 | lvm2 83 | python3-icu 84 | python3-pam 85 | rdate 86 | reiserfsprogs 87 | sbsigntool 88 | ubiquity 89 | ubiquity-casper 90 | ubiquity-frontend-gtk 91 | ubiquity-slideshow-xubuntu 92 | ubiquity-ubuntu-artwork 93 | user-setup 94 | wamerican 95 | watershed 96 | xfsprogs 97 | xubuntu-live-settings 98 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/old-manifests/xubuntu-15.04/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | apt-clone 2 | archdetect-deb 3 | btrfs-tools 4 | casper 5 | cifs-utils 6 | cryptsetup 7 | cryptsetup-bin 8 | dmeventd 9 | dmraid 10 | dpkg-repack 11 | ecryptfs-utils 12 | firefox-locale-en 13 | gir1.2-json-1.0 14 | gir1.2-timezonemap-1.0 15 | gir1.2-xkl-1.0 16 | gparted 17 | jfsutils 18 | keyutils 19 | kpartx 20 | kpartx-boot 21 | language-pack-bn 22 | language-pack-bn-base 23 | language-pack-de 24 | language-pack-de-base 25 | language-pack-en 26 | language-pack-en-base 27 | language-pack-es 28 | language-pack-es-base 29 | language-pack-fr 30 | language-pack-fr-base 31 | language-pack-gnome-bn 32 | language-pack-gnome-bn-base 33 | language-pack-gnome-de 34 | language-pack-gnome-de-base 35 | language-pack-gnome-en 36 | language-pack-gnome-en-base 37 | language-pack-gnome-es 38 | language-pack-gnome-es-base 39 | language-pack-gnome-fr 40 | language-pack-gnome-fr-base 41 | language-pack-gnome-hi 42 | language-pack-gnome-hi-base 43 | language-pack-gnome-ja 44 | language-pack-gnome-ja-base 45 | language-pack-gnome-pt 46 | language-pack-gnome-pt-base 47 | language-pack-gnome-xh 48 | language-pack-gnome-xh-base 49 | language-pack-gnome-zh-hans 50 | language-pack-gnome-zh-hans-base 51 | language-pack-hi 52 | language-pack-hi-base 53 | language-pack-ja 54 | language-pack-ja-base 55 | language-pack-pt 56 | language-pack-pt-base 57 | language-pack-xh 58 | language-pack-xh-base 59 | language-pack-zh-hans 60 | language-pack-zh-hans-base 61 | libdebian-installer4:amd64 62 | libdevmapper-event1.02.1:amd64 63 | libdmraid1.0.0.rc16 64 | libecryptfs0 65 | libgtkmm-2.4-1c2a:amd64 66 | liblvm2cmd2.02:amd64 67 | libnss3-1d:amd64 68 | libparted-fs-resize0:amd64 69 | libtimezonemap-data 70 | libtimezonemap1:amd64 71 | linux-signed-generic 72 | linux-signed-image-3.19.0-15-generic 73 | linux-signed-image-generic 74 | localechooser-data 75 | lupin-casper 76 | lvm2 77 | python-ldb 78 | python-ntdb 79 | python-samba 80 | python-tdb 81 | python3-icu 82 | python3-pam 83 | rdate 84 | reiserfsprogs 85 | samba-common 86 | samba-common-bin 87 | sbsigntool 88 | ubiquity 89 | ubiquity-casper 90 | ubiquity-frontend-gtk 91 | ubiquity-slideshow-xubuntu 92 | ubiquity-ubuntu-artwork 93 | user-setup 94 | wamerican 95 | watershed 96 | xfsprogs 97 | xubuntu-live-settings 98 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/old-manifests/xubuntu-16.04/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | apt-clone 2 | archdetect-deb 3 | btrfs-tools 4 | casper 5 | cifs-utils 6 | cryptsetup 7 | cryptsetup-bin 8 | dmeventd 9 | dmraid 10 | dmsetup 11 | dpkg-repack 12 | ecryptfs-utils 13 | feh 14 | firefox-locale-en 15 | gir1.2-timezonemap-1.0 16 | gir1.2-xkl-1.0:amd64 17 | gparted 18 | jfsutils 19 | keyutils 20 | kpartx 21 | kpartx-boot 22 | language-pack-bn 23 | language-pack-bn-base 24 | language-pack-de 25 | language-pack-de-base 26 | language-pack-en 27 | language-pack-en-base 28 | language-pack-es 29 | language-pack-es-base 30 | language-pack-fr 31 | language-pack-fr-base 32 | language-pack-gnome-bn 33 | language-pack-gnome-bn-base 34 | language-pack-gnome-de 35 | language-pack-gnome-de-base 36 | language-pack-gnome-en 37 | language-pack-gnome-en-base 38 | language-pack-gnome-es 39 | language-pack-gnome-es-base 40 | language-pack-gnome-fr 41 | language-pack-gnome-fr-base 42 | language-pack-gnome-hi 43 | language-pack-gnome-hi-base 44 | language-pack-gnome-ja 45 | language-pack-gnome-ja-base 46 | language-pack-gnome-pt 47 | language-pack-gnome-pt-base 48 | language-pack-gnome-xh 49 | language-pack-gnome-xh-base 50 | language-pack-gnome-zh-hans 51 | language-pack-gnome-zh-hans-base 52 | language-pack-hi 53 | language-pack-hi-base 54 | language-pack-ja 55 | language-pack-ja-base 56 | language-pack-pt 57 | language-pack-pt-base 58 | language-pack-xh 59 | language-pack-xh-base 60 | language-pack-zh-hans 61 | language-pack-zh-hans-base 62 | libdebian-installer4:amd64 63 | libdevmapper-event1.02.1:amd64 64 | libdmraid1.0.0.rc16 65 | libecryptfs1 66 | libgif7:amd64 67 | libgtkmm-2.4-1v5:amd64 68 | libid3tag0 69 | libimlib2:amd64 70 | libjpeg-progs 71 | libjpeg9:amd64 72 | liblvm2app2.2:amd64 73 | liblvm2cmd2.02:amd64 74 | libnss3-1d:amd64 75 | libparted-fs-resize0:amd64 76 | libreadline5:amd64 77 | libtimezonemap-data 78 | libtimezonemap1:amd64 79 | linux-signed-generic 80 | linux-signed-image-4.4.0-21-generic 81 | linux-signed-image-generic 82 | localechooser-data 83 | lupin-casper 84 | lvm2 85 | mokutil 86 | python-crypto 87 | python-ldb 88 | python-samba 89 | python-tdb 90 | python3-icu 91 | python3-pam 92 | rdate 93 | reiserfsprogs 94 | samba-common 95 | samba-common-bin 96 | ubiquity 97 | ubiquity-casper 98 | ubiquity-frontend-gtk 99 | ubiquity-slideshow-xubuntu 100 | ubiquity-ubuntu-artwork 101 | user-setup 102 | wamerican 103 | xfsprogs 104 | xubuntu-live-settings 105 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/old-manifests/zorin-10/filesystem.manifest-remove: -------------------------------------------------------------------------------- 1 | apt-clone 2 | archdetect-deb 3 | btrfs-tools 4 | casper 5 | cifs-utils 6 | cryptsetup 7 | cryptsetup-bin 8 | dmeventd 9 | dmraid 10 | dpkg-repack 11 | ecryptfs-utils 12 | fcitx 13 | fcitx-bin 14 | fcitx-config-common 15 | fcitx-config-gtk 16 | fcitx-data 17 | fcitx-frontend-all 18 | fcitx-frontend-gtk2 19 | fcitx-frontend-gtk3 20 | fcitx-frontend-qt4 21 | fcitx-frontend-qt5:amd64 22 | fcitx-module-cloudpinyin:amd64 23 | fcitx-module-dbus 24 | fcitx-module-kimpanel 25 | fcitx-module-lua 26 | fcitx-module-x11 27 | fcitx-modules 28 | fcitx-pinyin 29 | fcitx-table 30 | fcitx-ui-classic 31 | fcitx-ui-qimpanel 32 | gir1.2-timezonemap-1.0 33 | gir1.2-xkl-1.0 34 | gnome-themes-standard:amd64 35 | gnome-themes-standard-data 36 | gparted 37 | gtk2-engines-pixbuf:amd64 38 | jfsutils 39 | keyutils 40 | kpartx 41 | kpartx-boot 42 | language-pack-en 43 | language-pack-en-base 44 | language-pack-es 45 | language-pack-es-base 46 | language-pack-gnome-en 47 | language-pack-gnome-en-base 48 | language-pack-gnome-es 49 | language-pack-gnome-es-base 50 | language-pack-gnome-zh-hans 51 | language-pack-gnome-zh-hans-base 52 | language-pack-zh-hans 53 | language-pack-zh-hans-base 54 | libdebian-installer4:amd64 55 | libdevmapper-event1.02.1:amd64 56 | libdmraid1.0.0.rc16 57 | libecryptfs0 58 | libfcitx-core0:amd64 59 | libfcitx-qt0:amd64 60 | libfcitx-qt5-1:amd64 61 | libgtkmm-2.4-1c2a:amd64 62 | liblvm2cmd2.02:amd64 63 | libnss3-1d:amd64 64 | libparted-fs-resize0:amd64 65 | libpresage-data 66 | libpresage1:amd64 67 | libqt5quickwidgets5:amd64 68 | libreoffice-help-en-us 69 | libtinyxml2.6.2:amd64 70 | linux-signed-generic 71 | linux-signed-image-3.19.0-15-generic 72 | linux-signed-image-generic 73 | localechooser-data 74 | lupin-casper 75 | lvm2 76 | metacity 77 | presage 78 | python3-icu 79 | python3-pam 80 | rdate 81 | reiserfsprogs 82 | sbsigntool 83 | ubiquity 84 | ubiquity-casper 85 | ubiquity-frontend-gtk 86 | ubiquity-slideshow-ubuntu 87 | ubiquity-ubuntu-artwork 88 | user-setup 89 | watershed 90 | xfsprogs 91 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/packages/ignored.list: -------------------------------------------------------------------------------- 1 | mint-stylish-addon 2 | mate-themes 3 | python-caja 4 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/packages/lmde.list: -------------------------------------------------------------------------------- 1 | # LMDE specific 2 | debian-system-adjustments 3 | firefox 4 | firefox-l10n 5 | live-installer 6 | syslinux-themes-lmde 7 | mint-flashplugin 8 | plymouth-themes-mint 9 | thunderbird 10 | thunderbird-l10n 11 | -------------------------------------------------------------------------------- /usr/share/mint-dev-tools/packages/ubuntu.list: -------------------------------------------------------------------------------- 1 | # Ubuntu specific 2 | cinnamon-bluetooth 3 | linux-kernel 4 | mint-artwork-common 5 | mint-info 6 | mintdrivers 7 | nvidia-prime-applet 8 | ubuntu-system-adjustments 9 | ubiquity-slideshow-mint 10 | mint-meta-codecs 11 | mint-meta 12 | syslinux-themes-linuxmint 13 | ia32-libs 14 | firefox 15 | ubuntu-drivers-common 16 | ubiquity 17 | nvidia-prime 18 | banshee 19 | 20 | # Imports from PPA and backports 21 | minecraft-installer 22 | doxygen 23 | libreoffice 24 | libreoffice 25 | libreoffice-l10n 26 | hplip 27 | virtualbox 28 | bcmwl 29 | 30 | # KDE packages 31 | akonadi 32 | amor 33 | analitza 34 | ark 35 | audiocd-kio 36 | baloo 37 | baloo-widgets 38 | blinken 39 | bomber 40 | bovo 41 | calligra 42 | calligra-l10n 43 | cantor 44 | cervisia 45 | digikam 46 | dolphin-plugins 47 | dragon 48 | ffmpegthumbs 49 | filelight 50 | garcon 51 | gmusicbrowser 52 | granatier 53 | gwenview 54 | inkscape 55 | jovie 56 | juk 57 | kaccessible 58 | kactivities 59 | kajongg 60 | kalgebra 61 | kalzium 62 | kamera 63 | kamoso 64 | kanagram 65 | kapman 66 | kapptemplate 67 | kate 68 | katomic 69 | kblackbox 70 | kblocks 71 | kbounce 72 | kbreakout 73 | kbruch 74 | kcachegrind 75 | kcalc 76 | kcharselect 77 | kcolorchooser 78 | kcron 79 | kdf 80 | kdiamond 81 | kfilemetadata 82 | kfloppy 83 | kfourinline 84 | kgamma 85 | kgeography 86 | kget 87 | kgoldrunner 88 | kgpg 89 | kgraphviewer 90 | khangman 91 | kig 92 | kigo 93 | killbots 94 | kiriki 95 | kiten 96 | kjumpingcube 97 | klettres 98 | klickety 99 | klines 100 | kmag 101 | kmahjongg 102 | kmines 103 | kmix 104 | kmousetool 105 | kmouth 106 | kmplot 107 | knavalbattle 108 | knetwalk 109 | kolf 110 | kollision 111 | kolourpaint 112 | kompare 113 | konquest 114 | konsole 115 | kopete 116 | korundum 117 | kpat 118 | kppp 119 | kqtquickcharts 120 | krdc 121 | kremotecontrol 122 | kreversi 123 | krfb 124 | kross-interpreters 125 | kruler 126 | ksaneplugin 127 | kscd 128 | kshisen 129 | ksirk 130 | ksnakeduel 131 | ksnapshot 132 | kspaceduel 133 | ksquares 134 | kstars 135 | ksudoku 136 | ksystemlog 137 | kteatime 138 | ktimer 139 | ktouch 140 | ktuberling 141 | kturtle 142 | ktux 143 | kubrick 144 | kubuntu-meta 145 | kuser 146 | kwalletmanager 147 | kwordquiz 148 | lcms2 149 | libetonyek 150 | libkcddb 151 | libkcompactdisc 152 | libkdcraw 153 | libkexiv2 154 | libkgapi 155 | libkipi 156 | libkmahjongg 157 | libkolab 158 | libkomparediff2 159 | libksane 160 | libmpris2client 161 | libodfgen 162 | librevenge 163 | libvisio 164 | libwpd 165 | libwpg 166 | libwps 167 | lokalize 168 | lskat 169 | marble 170 | massif-visualizer 171 | menulibre 172 | mousepad 173 | mplayerthumbs 174 | mugshot 175 | okteta 176 | okular 177 | oxygen-icons 178 | pairs 179 | palapeli 180 | parley 181 | parole 182 | perlqt 183 | picmi 184 | poxml 185 | print-manager 186 | qtruby 187 | redshift 188 | rocs 189 | rootactions-servicemenu 190 | skippy-xd 191 | smokegen 192 | smokeqt 193 | step 194 | subsurface 195 | superkaramba 196 | svgpart 197 | sweeper 198 | tellico 199 | tumbler 200 | umbrello 201 | zeroconf-ioslave 202 | 203 | # Xfce packages (Ubuntu specific) 204 | catfish 205 | exo 206 | garcon 207 | orage 208 | ristretto 209 | thunar 210 | thunar-archive-plugin 211 | thunar-dropbox-plugin 212 | thunar-volman 213 | xfburn 214 | xfconf 215 | xfdashboard 216 | xfdesktop4 217 | xfwm4 218 | xfburn 219 | lxpanel 220 | -------------------------------------------------------------------------------- /usr/share/nemo/actions/mint_dev_tool_add_shadow.nemo_action: -------------------------------------------------------------------------------- 1 | [Nemo Action] 2 | 3 | Name=Add a shadow 4 | 5 | Comment=Add a shadow around the picture 6 | 7 | Exec=mint-add-shadow %F 8 | 9 | Selection=s 10 | 11 | Mimetypes=image/*; 12 | 13 | Conditions=dbus org.Cinnamon; 14 | -------------------------------------------------------------------------------- /usr/share/nemo/actions/mint_dev_tool_make_thumbnail.nemo_action: -------------------------------------------------------------------------------- 1 | [Nemo Action] 2 | 3 | Name=Make a thumbnail 4 | 5 | Comment=Generate a 500px wide thumbnail with a shadow 6 | 7 | Exec=mint-make-thumbnail %F 8 | 9 | Selection=s 10 | 11 | Mimetypes=image/*; 12 | 13 | Conditions=dbus org.Cinnamon; 14 | -------------------------------------------------------------------------------- /usr/share/nemo/actions/mint_dev_tool_show_file_metadata.nemo_action: -------------------------------------------------------------------------------- 1 | [Nemo Action] 2 | 3 | Name=View file metadata 4 | 5 | Comment=View gvfs metadata for %U 6 | Quote=double 7 | 8 | Exec=mint-show-gvfs-metadata %U 9 | 10 | Selection=s 11 | 12 | Extensions=any; --------------------------------------------------------------------------------