From 1d15cbcc26597ef78c2c8c19f61bbbd6f2f83ce4 Mon Sep 17 00:00:00 2001 From: Rmys Date: Wed, 8 Sep 2021 12:19:14 +0300 Subject: [PATCH] mate-1.26.0 --- desktop/mate/atril/pspec.xml | 13 +++++++--- desktop/mate/caja-admin/actions.py | 14 ++++------- desktop/mate/caja-admin/files/added_tr.patch | 16 +++++------- desktop/mate/caja-admin/pspec.xml | 9 ++++++- desktop/mate/caja-extensions/pspec.xml | 19 +++++++++++--- desktop/mate/caja/pspec.xml | 13 +++++++--- desktop/mate/engrampa/pspec.xml | 13 +++++++--- desktop/mate/eom/pspec.xml | 13 +++++++--- desktop/mate/libmatekbd/pspec.xml | 11 ++++++-- desktop/mate/libmatemixer/pspec.xml | 11 ++++++-- desktop/mate/libmateweather/pspec.xml | 11 ++++++-- desktop/mate/marco/pspec.xml | 13 +++++++--- desktop/mate/mate-applets/pspec.xml | 17 +++++++++---- desktop/mate/mate-backgrounds/pspec.xml | 11 ++++++-- desktop/mate/mate-brisk-menu/pspec.xml | 7 ++++++ desktop/mate/mate-calc/actions.py | 2 +- desktop/mate/mate-calc/pspec.xml | 11 ++++++-- desktop/mate/mate-common/pspec.xml | 9 ++++++- desktop/mate/mate-control-center/pspec.xml | 25 +++++++++++++------ desktop/mate/mate-desktop/pspec.xml | 11 ++++++-- desktop/mate/mate-icon-theme/pspec.xml | 13 +++++++--- desktop/mate/mate-indicator-applet/pspec.xml | 13 +++++++--- desktop/mate/mate-media/pspec.xml | 17 +++++++++---- desktop/mate/mate-menus/pspec.xml | 11 ++++++-- desktop/mate/mate-netbook/pspec.xml | 2 +- .../mate/mate-notification-daemon/pspec.xml | 17 +++++++++---- desktop/mate/mate-panel/pspec.xml | 17 +++++++++---- desktop/mate/mate-polkit/pspec.xml | 4 ++- desktop/mate/mate-power-manager/pspec.xml | 15 ++++++++--- desktop/mate/mate-screensaver/pspec.xml | 9 ++++++- desktop/mate/mate-sensors-applet/pspec.xml | 13 +++++++--- desktop/mate/mate-session-manager/pspec.xml | 11 ++++++-- desktop/mate/mate-settings-daemon/pspec.xml | 17 +++++++++---- desktop/mate/mate-system-monitor/pspec.xml | 11 ++++++-- desktop/mate/mate-terminal/pspec.xml | 11 ++++++-- desktop/mate/mate-themes/pspec.xml | 17 +++++++++---- desktop/mate/mate-tweak/pspec.xml | 10 ++++++-- desktop/mate/mate-user-share/pspec.xml | 9 ++++++- desktop/mate/mate-utils/pspec.xml | 13 +++++++--- desktop/mate/mozo/pspec.xml | 13 +++++++--- desktop/mate/pluma/pspec.xml | 11 ++++++-- desktop/mate/python-caja/pspec.xml | 11 ++++++-- 42 files changed, 387 insertions(+), 127 deletions(-) diff --git a/desktop/mate/atril/pspec.xml b/desktop/mate/atril/pspec.xml index becc0339bd..ca52df91b2 100755 --- a/desktop/mate/atril/pspec.xml +++ b/desktop/mate/atril/pspec.xml @@ -13,7 +13,7 @@ app:gui Atril is a document viewer for the MATE desktop Atril is a document viewer capable of displaying multiple and single page document formats like PDF and Postscript. - http://pub.mate-desktop.org/releases/1.25/atril-1.25.1.tar.xz + http://pub.mate-desktop.org/releases/1.26/atril-1.26.0.tar.xz tiff-devel gtk3-devel @@ -21,14 +21,14 @@ libglade-devel libjpeg-turbo-devel cairo-devel - mate-common + mate-common libsecret-devel libspectre-devel poppler-glib-devel gobject-introspection-devel yelp-tools libgxps-devel - caja-devel + caja-devel webkit2gtk-devel intltool itstool @@ -111,6 +111,13 @@ + + 2021-09-07 + 1.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-04-05 1.25.1 diff --git a/desktop/mate/caja-admin/actions.py b/desktop/mate/caja-admin/actions.py index ab93ea21df..8eb9d78c6b 100644 --- a/desktop/mate/caja-admin/actions.py +++ b/desktop/mate/caja-admin/actions.py @@ -8,20 +8,16 @@ from pisi.actionsapi import autotools from pisi.actionsapi import pisitools from pisi.actionsapi import shelltools -from pisi.actionsapi import cmaketools +from pisi.actionsapi import mesontools from pisi.actionsapi import get def setup(): - shelltools.makedirs("build") - shelltools.cd("build") - cmaketools.configure("-DCMAKE_INSTALL_PREFIX=/usr", sourceDir="..") + mesontools.configure() def build(): - shelltools.cd("build") - cmaketools.make("..") + mesontools.build() def install(): - shelltools.cd("build") - cmaketools.rawInstall("DESTDIR=%s" % get.installDIR()) - shelltools.cd("..") + mesontools.install() + pisitools.dodoc("AUTHORS", "LICENSE", "NEWS") diff --git a/desktop/mate/caja-admin/files/added_tr.patch b/desktop/mate/caja-admin/files/added_tr.patch index 1af083b3ae..757ce73634 100644 --- a/desktop/mate/caja-admin/files/added_tr.patch +++ b/desktop/mate/caja-admin/files/added_tr.patch @@ -1,10 +1,6 @@ ---- CMakeLists_old.txt 2017-08-16 18:55:41.000000000 +0300 -+++ CMakeLists.txt 2020-03-19 00:11:06.074179576 +0300 -@@ -26,6 +26,7 @@ - po/pt.po - po/ru.po - po/sk.po -+ po/tr.po - po/zh_CN.po) - - # Install target +diff -Nuar a/po/LINGUAS b/po/LINGUAS +--- a/po/LINGUAS 2021-09-04 14:02:50.000000000 +0300 ++++ b/po/LINGUAS 2021-09-08 11:09:49.283828394 +0300 +@@ -1 +1 @@ +-ar cs de es eu fr it lt kab oc pl pt ru sk zh_CN ++ar cs de es eu fr it lt kab oc pl pt ru sk tr zh_CN diff --git a/desktop/mate/caja-admin/pspec.xml b/desktop/mate/caja-admin/pspec.xml index 897194700a..30868d69c4 100644 --- a/desktop/mate/caja-admin/pspec.xml +++ b/desktop/mate/caja-admin/pspec.xml @@ -12,7 +12,7 @@ app:gui Caja Admin is a simple Python extension for the Caja file manager. Caja Admin is a simple Python extension for the Caja file manager that adds some administrative actions to the right-click menu. - https://github.com/infirit/caja-admin/archive/0.0.2.tar.gz + https://github.com/infirit/caja-admin/archive/0.0.5.tar.gz tr.po @@ -42,6 +42,13 @@ + + 2021-09-07 + 0.0.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2020-06-29 0.0.2 diff --git a/desktop/mate/caja-extensions/pspec.xml b/desktop/mate/caja-extensions/pspec.xml index 9751a8c85c..b71e388375 100755 --- a/desktop/mate/caja-extensions/pspec.xml +++ b/desktop/mate/caja-extensions/pspec.xml @@ -12,15 +12,17 @@ app:gui Mate file manager eklentileri caja-extensions, Mate file manager eklentileri. - http://pub.mate-desktop.org/releases/1.25/caja-extensions-1.25.1.tar.xz + http://pub.mate-desktop.org/releases/1.26/caja-extensions-1.26.0.tar.xz python3 - caja-devel + caja-devel gtk3-devel dbus-glib-devel intltool - mate-common - mate-desktop-devel + gssdp-devel + gupnp-devel + mate-common + mate-desktop-devel @@ -30,6 +32,8 @@ caja gtk3 glib2 + gssdp + gupnp dbus-glib gdk-pixbuf mate-desktop @@ -73,6 +77,13 @@ + + 2021-09-07 + 1.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-06-26 1.25.1 diff --git a/desktop/mate/caja/pspec.xml b/desktop/mate/caja/pspec.xml index 5262e79b4a..006e8db574 100644 --- a/desktop/mate/caja/pspec.xml +++ b/desktop/mate/caja/pspec.xml @@ -15,14 +15,14 @@ app:gui Default file manager for the Mate desktop. Caja is a file manager that allows to browse directories, preview files and launch applications. - http://pub.mate-desktop.org/releases/1.25/caja-1.25.3.tar.xz + http://pub.mate-desktop.org/releases/1.26/caja-1.26.0.tar.xz intltool pango-devel cairo-devel libSM-devel gettext-devel - mate-common + mate-common exempi-devel python3-devel libxml2-devel @@ -30,7 +30,7 @@ autoconf-archive libnotify-devel dbus-glib-devel - mate-desktop-devel + mate-desktop-devel startup-notification-devel gobject-introspection-devel @@ -110,6 +110,13 @@ + + 2021-09-07 + 1.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-05-30 1.25.3 diff --git a/desktop/mate/engrampa/pspec.xml b/desktop/mate/engrampa/pspec.xml index de734bc9a1..103f8046b0 100755 --- a/desktop/mate/engrampa/pspec.xml +++ b/desktop/mate/engrampa/pspec.xml @@ -13,11 +13,11 @@ app:gui Engrampa is an archive manager for the MATE environment. Engrampa is an archive manager for the MATE environment. This means that you can create and modify archives; view the content of an archive; view and modify a file contained in the archive; extract files from the archive. - http://pub.mate-desktop.org/releases/1.25/engrampa-1.25.1.tar.xz + http://pub.mate-desktop.org/releases/1.26/engrampa-1.26.0.tar.xz gtk3-devel - caja-devel - mate-common + caja-devel + mate-common libSM-devel intltool itstool @@ -59,6 +59,13 @@ + + 2021-09-07 + 1.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-06-26 1.25.1 diff --git a/desktop/mate/eom/pspec.xml b/desktop/mate/eom/pspec.xml index 79b2555542..4004d9f68e 100755 --- a/desktop/mate/eom/pspec.xml +++ b/desktop/mate/eom/pspec.xml @@ -13,7 +13,7 @@ app:gui Eye of MATE, an image viewer for MATE This is the Eye of MATE, an image viewer program. It is meant to be a fast and functional image viewer. - http://pub.mate-desktop.org/releases/1.25/eom-1.25.1.tar.xz + http://pub.mate-desktop.org/releases/1.26/eom-1.26.0.tar.xz zlib-devel gobject-introspection-devel @@ -22,12 +22,12 @@ gtk3-devel imagemagick-devel lcms2-devel - mate-common + mate-common exempi-devel libexif-devel librsvg-devel dbus-glib-devel - mate-desktop-devel + mate-desktop-devel libjpeg-turbo-devel intltool itstool @@ -101,6 +101,13 @@ + + 2021-09-07 + 1.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-06-26 1.25.1 diff --git a/desktop/mate/libmatekbd/pspec.xml b/desktop/mate/libmatekbd/pspec.xml index a669e35c91..65280d6017 100644 --- a/desktop/mate/libmatekbd/pspec.xml +++ b/desktop/mate/libmatekbd/pspec.xml @@ -13,11 +13,11 @@ library GNOME keybord configration library libgnomekbd contains a GNOME library that manages keyboard layout settings and its panel applet. - http://pub.mate-desktop.org/releases/1.25/libmatekbd-1.25.0.tar.xz + http://pub.mate-desktop.org/releases/1.26/libmatekbd-1.26.0.tar.xz intltool gtk3-devel - mate-common + mate-common libICE-devel python3-devel libxklavier-devel @@ -66,6 +66,13 @@ + + 2021-09-07 + 1.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2020-08-23 1.25.0 diff --git a/desktop/mate/libmatemixer/pspec.xml b/desktop/mate/libmatemixer/pspec.xml index f9e6ebc8f7..583cad0c36 100644 --- a/desktop/mate/libmatemixer/pspec.xml +++ b/desktop/mate/libmatemixer/pspec.xml @@ -13,10 +13,10 @@ library Mixer library for MATE Desktop Mixer library for MATE Desktop - http://pub.mate-desktop.org/releases/1.25/libmatemixer-1.25.0.tar.xz + http://pub.mate-desktop.org/releases/1.26/libmatemixer-1.26.0.tar.xz intltool - mate-common + mate-common pulseaudio-libs-devel alsa-lib-devel gtk-doc @@ -54,6 +54,13 @@ + + 2021-09-07 + 1.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-08-17 1.25.0 diff --git a/desktop/mate/libmateweather/pspec.xml b/desktop/mate/libmateweather/pspec.xml index a5ca735a3b..8c266cc16e 100644 --- a/desktop/mate/libmateweather/pspec.xml +++ b/desktop/mate/libmateweather/pspec.xml @@ -13,11 +13,11 @@ library libmateweather libmateweather is a collection of documentation utilities for the Mate project. - http://pub.mate-desktop.org/releases/1.25/libmateweather-1.25.0.tar.xz + http://pub.mate-desktop.org/releases/1.26/libmateweather-1.26.0.tar.xz intltool gtk3-devel - mate-common + mate-common libsoup-devel libxml2-devel timezone @@ -73,6 +73,13 @@ + + 2021-09-07 + 1.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2020-06-29 1.25.0 diff --git a/desktop/mate/marco/pspec.xml b/desktop/mate/marco/pspec.xml index 230ee3afb9..43a3382ebb 100644 --- a/desktop/mate/marco/pspec.xml +++ b/desktop/mate/marco/pspec.xml @@ -12,7 +12,7 @@ app:gui GTK+ based window manager Marco is a small window manager, using GTK+ to do everything. - http://pub.mate-desktop.org/releases/1.25/marco-1.25.1.tar.xz + http://pub.mate-desktop.org/releases/1.26/marco-1.26.0.tar.xz zenity itstool @@ -26,8 +26,8 @@ libcanberra-devel libcanberra-gtk3-devel startup-notification-devel - mate-common - mate-desktop-devel + mate-common + mate-desktop-devel window.png @@ -96,6 +96,13 @@ + + 2021-09-07 + 1.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-06-26 1.25.1 diff --git a/desktop/mate/mate-applets/pspec.xml b/desktop/mate/mate-applets/pspec.xml index 5e12108a5d..c1e2032033 100644 --- a/desktop/mate/mate-applets/pspec.xml +++ b/desktop/mate/mate-applets/pspec.xml @@ -12,7 +12,7 @@ library Applets for MATE panel Applets for the MATE Desktop and Panel - http://pub.mate-desktop.org/releases/1.25/mate-applets-1.25.3.tar.xz + http://pub.mate-desktop.org/releases/1.26/mate-applets-1.26.0.tar.xz libgtop-devel libxml2-devel @@ -21,11 +21,11 @@ upower-devel libwnck3-devel libnotify-devel - mate-common - mate-settings-daemon-devel - mate-notification-daemon + mate-common + mate-settings-daemon-devel + mate-notification-daemon mate-panel-devel - libmateweather-devel + libmateweather-devel polkit-devel gtksourceview3-devel wireless-tools-devel @@ -85,6 +85,13 @@ + + 2021-09-07 + 1.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-02-06 1.25.3 diff --git a/desktop/mate/mate-backgrounds/pspec.xml b/desktop/mate/mate-backgrounds/pspec.xml index 65b6cc73dc..66875f3103 100644 --- a/desktop/mate/mate-backgrounds/pspec.xml +++ b/desktop/mate/mate-backgrounds/pspec.xml @@ -12,10 +12,10 @@ data Default wallpapers for the Mate desktop gnome-backgrounds contains default wallpapers for the Mate desktop. - http://pub.mate-desktop.org/releases/1.25/mate-backgrounds-1.25.0.tar.xz + http://pub.mate-desktop.org/releases/1.26/mate-backgrounds-1.26.0.tar.xz intltool - mate-common + mate-common mate-backgrounds-add-image.patch @@ -44,6 +44,13 @@ + + 2021-09-07 + 1.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2020-08-23 1.25.0 diff --git a/desktop/mate/mate-brisk-menu/pspec.xml b/desktop/mate/mate-brisk-menu/pspec.xml index 55f186a4ac..324a8c25a8 100644 --- a/desktop/mate/mate-brisk-menu/pspec.xml +++ b/desktop/mate/mate-brisk-menu/pspec.xml @@ -45,6 +45,13 @@ + + 2021-09-07 + 0.6.2 + Rebuild + Mustafa Cinasal + muscnsl@pisilinux.org + 2021-04-21 0.6.2 diff --git a/desktop/mate/mate-calc/actions.py b/desktop/mate/mate-calc/actions.py index eb3b81d581..b6989f0d1e 100644 --- a/desktop/mate/mate-calc/actions.py +++ b/desktop/mate/mate-calc/actions.py @@ -22,4 +22,4 @@ def build(): def install(): autotools.rawInstall("DESTDIR=%s" % get.installDIR()) - pisitools.dodoc("README", "NEWS", "ChangeLog", "AUTHORS", "COPYING") \ No newline at end of file + pisitools.dodoc("README*", "NEWS", "ChangeLog", "AUTHORS", "COPYING") diff --git a/desktop/mate/mate-calc/pspec.xml b/desktop/mate/mate-calc/pspec.xml index 293331dd2b..2263cd2d2f 100644 --- a/desktop/mate/mate-calc/pspec.xml +++ b/desktop/mate/mate-calc/pspec.xml @@ -13,7 +13,7 @@ app:gui Calculator for the Mate desktop environment mate-calc, Mate masaüstü için hesap makinesi. - http://pub.mate-desktop.org/releases/1.25/mate-calc-1.25.0.tar.xz + http://pub.mate-desktop.org/releases/1.26/mate-calc-1.26.0.tar.xz intltool itstool @@ -21,7 +21,7 @@ libmpc-devel gtk3-devel libxml2-devel - mate-common + mate-common @@ -50,6 +50,13 @@ + + 2021-09-07 + 1.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2020-06-29 1.25.0 diff --git a/desktop/mate/mate-common/pspec.xml b/desktop/mate/mate-common/pspec.xml index 960c728c9e..66f5f3dc2b 100644 --- a/desktop/mate/mate-common/pspec.xml +++ b/desktop/mate/mate-common/pspec.xml @@ -12,7 +12,7 @@ library Common files for development of Mate packages maate-common package contains aclocal macros, makefile headers and documents tools in order to build Mate sources. - http://pub.mate-desktop.org/releases/1.25/mate-common-1.25.0.tar.xz + http://pub.mate-desktop.org/releases/1.26/mate-common-1.26.0.tar.xz mate-common @@ -26,6 +26,13 @@ + + 2021-09-07 + 1.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2020-06-29 1.25.0 diff --git a/desktop/mate/mate-control-center/pspec.xml b/desktop/mate/mate-control-center/pspec.xml index 9bdf3c1f18..83c5662172 100644 --- a/desktop/mate/mate-control-center/pspec.xml +++ b/desktop/mate/mate-control-center/pspec.xml @@ -14,7 +14,7 @@ app:gui The MATE Desktop configuration tool mate-control-center is Mate's main interface for configuration of various aspects of your Mate desktop. - http://pub.mate-desktop.org/releases/1.25/mate-control-center-1.25.1.tar.xz + http://pub.mate-desktop.org/releases/1.26/mate-control-center-1.26.0.tar.xz itstool intltool @@ -27,14 +27,15 @@ libcanberra-devel desktop-file-utils libXScrnSaver-devel + libappindicator-devel accountsservice-devel libcanberra-gtk3-devel marco-devel - mate-common - mate-menus-devel - libmatekbd-devel - mate-desktop-devel - mate-settings-daemon-devel + mate-common + mate-menus-devel + libmatekbd-devel + mate-desktop-devel + mate-settings-daemon-devel @@ -67,6 +68,7 @@ libcanberra mate-desktop libXScrnSaver + libappindicator accountsservice libcanberra-gtk3 startup-notification @@ -101,8 +103,8 @@ gtk3-devel glib2-devel librsvg-devel - mate-menus-devel - mate-desktop-devel + mate-menus-devel + mate-desktop-devel mate-control-center @@ -112,6 +114,13 @@ + + 2021-09-07 + 1.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-02-17 1.25.1 diff --git a/desktop/mate/mate-desktop/pspec.xml b/desktop/mate/mate-desktop/pspec.xml index 21859f105e..79cb33a053 100644 --- a/desktop/mate/mate-desktop/pspec.xml +++ b/desktop/mate/mate-desktop/pspec.xml @@ -15,7 +15,7 @@ app:gui Basic Mate libraries and dialogs mate-desktop contains basic Mate libraries and information applications. - http://pub.mate-desktop.org/releases/1.25/mate-desktop-1.25.0.tar.xz + http://pub.mate-desktop.org/releases/1.26/mate-desktop-1.26.0.tar.xz gtk-doc intltool @@ -23,7 +23,7 @@ python-six gtk3-devel dconf-devel - mate-common + mate-common libX11-devel librsvg-devel iso-codes-devel @@ -96,6 +96,13 @@ + + 2021-09-07 + 1.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2020-08-14 1.25.0 diff --git a/desktop/mate/mate-icon-theme/pspec.xml b/desktop/mate/mate-icon-theme/pspec.xml index 8fbbbad7aa..947cf5d734 100644 --- a/desktop/mate/mate-icon-theme/pspec.xml +++ b/desktop/mate/mate-icon-theme/pspec.xml @@ -13,10 +13,10 @@ data Mate icon theme mate-icon-theme package contains the default icon theme used by the Mate desktop. - http://pub.mate-desktop.org/releases/1.24/mate-icon-theme-1.24.0.tar.xz + https://pub.mate-desktop.org/releases/1.26/mate-icon-theme-1.26.0.tar.xz intltool - mate-common + mate-common icon-naming-utils-devel @@ -24,7 +24,7 @@ mate-icon-theme - mate-common + mate-common icon-naming-utils @@ -48,6 +48,13 @@ + + 2021-09-07 + 1.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2020-06-29 1.24.0 diff --git a/desktop/mate/mate-indicator-applet/pspec.xml b/desktop/mate/mate-indicator-applet/pspec.xml index 6b88029ca8..5250b1c880 100644 --- a/desktop/mate/mate-indicator-applet/pspec.xml +++ b/desktop/mate/mate-indicator-applet/pspec.xml @@ -13,12 +13,12 @@ library Mate Configuration System A small applet to display information from various applications consistently in the panel. The indicator applet exposes Ayatana Indicators in the MATE Panel.. - http://pub.mate-desktop.org/releases/1.25/mate-indicator-applet-1.25.0.tar.xz + http://pub.mate-desktop.org/releases/1.26/mate-indicator-applet-1.26.0.tar.xz intltool gtk3-devel - mate-common - mate-panel-devel + mate-common + mate-panel-devel libindicator-devel @@ -44,6 +44,13 @@ + + 2021-09-07 + 1.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2020-08-23 1.25.0 diff --git a/desktop/mate/mate-media/pspec.xml b/desktop/mate/mate-media/pspec.xml index e6a1ad8d7b..c9991c7beb 100755 --- a/desktop/mate/mate-media/pspec.xml +++ b/desktop/mate/mate-media/pspec.xml @@ -13,16 +13,16 @@ app:gui MATE media programs This package contains a few media utilities for the MATE desktop, including a volume control. - http://pub.mate-desktop.org/releases/1.25/mate-media-1.25.0.tar.xz + http://pub.mate-desktop.org/releases/1.26/mate-media-1.26.0.tar.xz gtk3-devel libxml2-devel libcanberra-devel libcanberra-gtk3-devel - mate-common - mate-panel-devel - libmatemixer-devel - mate-desktop-devel + mate-common + mate-panel-devel + libmatemixer-devel + mate-desktop-devel intltool @@ -64,6 +64,13 @@ + + 2021-09-07 + 1.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2020-08-23 1.25.0 diff --git a/desktop/mate/mate-menus/pspec.xml b/desktop/mate/mate-menus/pspec.xml index 31c1aa70cc..5f240bf99d 100644 --- a/desktop/mate/mate-menus/pspec.xml +++ b/desktop/mate/mate-menus/pspec.xml @@ -12,10 +12,10 @@ app:gui Mate Menus mate-menus has got desktop-directories, Mate menus library and its python bindings. - http://pub.mate-desktop.org/releases/1.25/mate-menus-1.25.1.tar.xz + http://pub.mate-desktop.org/releases/1.26/mate-menus-1.26.0.tar.xz intltool - mate-common + mate-common python3-devel gobject-introspection-devel @@ -51,6 +51,13 @@ + + 2021-09-07 + 1.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-06-26 1.25.1 diff --git a/desktop/mate/mate-netbook/pspec.xml b/desktop/mate/mate-netbook/pspec.xml index 83f77ea53b..ddee0b64f5 100644 --- a/desktop/mate/mate-netbook/pspec.xml +++ b/desktop/mate/mate-netbook/pspec.xml @@ -21,7 +21,7 @@ libwnck3-devel libXtst-devel libfakekey-devel - mate-panel-devel + mate-panel-devel diff --git a/desktop/mate/mate-notification-daemon/pspec.xml b/desktop/mate/mate-notification-daemon/pspec.xml index fe3ed0d721..e452518bc1 100644 --- a/desktop/mate/mate-notification-daemon/pspec.xml +++ b/desktop/mate/mate-notification-daemon/pspec.xml @@ -13,7 +13,7 @@ app:gui Mate notification daemon mate-notification-daemon is the server implementation of the Mate desktop notification specification. - http://pub.mate-desktop.org/releases/1.25/mate-notification-daemon-1.25.0.tar.xz + http://pub.mate-desktop.org/releases/1.26/mate-notification-daemon-1.26.0.tar.xz intltool python3-devel @@ -21,9 +21,8 @@ libnotify-devel libcanberra-devel libcanberra-gtk3-devel - mate-common - mate-desktop-devel - + mate-common + mate-desktop-devel libxml2-devel @@ -41,7 +40,7 @@ libnotify gdk-pixbuf libcanberra-gtk3 - + mate-desktop libxml2 @@ -54,11 +53,19 @@ /usr/share/glib-2.0 /usr/share/locale /usr/share/applications + /usr/share/mate-panel /usr/share/mate-notification-daemon + + 2021-09-07 + 1.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2020-08-23 1.25.0 diff --git a/desktop/mate/mate-panel/pspec.xml b/desktop/mate/mate-panel/pspec.xml index cde6d9a4cf..765a7a39a8 100644 --- a/desktop/mate/mate-panel/pspec.xml +++ b/desktop/mate/mate-panel/pspec.xml @@ -13,17 +13,17 @@ app:gui GNOME panel GNOME panel is located in the edge of screen that provides contains widgets such as application launcher, cpu monitor and workspace switcher. - http://pub.mate-desktop.org/releases/1.25/mate-panel-1.25.3.tar.xz + http://pub.mate-desktop.org/releases/1.26/mate-panel-1.26.0.tar.xz gtk3-devel libSM-devel - mate-common + mate-common librsvg-devel libwnck3-devel - mate-menus-devel + mate-menus-devel libcanberra-devel - mate-desktop-devel - libmateweather-devel + mate-desktop-devel + libmateweather-devel gobject-introspection-devel yelp-tools intltool @@ -99,6 +99,13 @@ + + 2021-09-07 + 1.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-07-02 1.25.3 diff --git a/desktop/mate/mate-polkit/pspec.xml b/desktop/mate/mate-polkit/pspec.xml index 7bcb24cc6b..3d7912c121 100644 --- a/desktop/mate/mate-polkit/pspec.xml +++ b/desktop/mate/mate-polkit/pspec.xml @@ -18,9 +18,10 @@ intltool gtk3-devel - mate-common + mate-common pango-devel polkit-devel + libappindicator-devel @@ -31,6 +32,7 @@ glib2 polkit gdk-pixbuf + libappindicator /usr/lib diff --git a/desktop/mate/mate-power-manager/pspec.xml b/desktop/mate/mate-power-manager/pspec.xml index 43f3fd7b53..d83302f39f 100644 --- a/desktop/mate/mate-power-manager/pspec.xml +++ b/desktop/mate/mate-power-manager/pspec.xml @@ -13,16 +13,16 @@ app:gui Mate için güç yöneticisi Power management tool for the MATE desktop. - http://pub.mate-desktop.org/releases/1.25/mate-power-manager-1.25.0.tar.xz + http://pub.mate-desktop.org/releases/1.26/mate-power-manager-1.26.0.tar.xz gtk3-devel dbus-glib-devel cairo-devel glib2-devel - mate-common + mate-common upower-devel libnotify-devel - mate-panel-devel + mate-panel-devel mesa-devel popt-devel polkit-devel @@ -30,6 +30,7 @@ libcanberra-gtk3-devel intltool itstool + libsecret-devel @@ -44,6 +45,7 @@ libX11 upower libXext + libsecret dbus-glib libnotify libXrandr @@ -71,6 +73,13 @@ + + 2021-09-07 + 1.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2020-06-29 1.25.0 diff --git a/desktop/mate/mate-screensaver/pspec.xml b/desktop/mate/mate-screensaver/pspec.xml index d1c84bd720..3d2eaee213 100644 --- a/desktop/mate/mate-screensaver/pspec.xml +++ b/desktop/mate/mate-screensaver/pspec.xml @@ -13,7 +13,7 @@ app:gui Replaces xscreensaver, integrating with the MATE desktop. mate-screensaver, Mate masaüstü için ekrankoruyucu uygulamasıdır. - http://pub.mate-desktop.org/releases/1.25/mate-screensaver-1.25.0.tar.xz + http://pub.mate-desktop.org/releases/1.26/mate-screensaver-1.26.0.tar.xz dbus-glib-devel gtk3-devel @@ -89,6 +89,13 @@ + + 2021-09-07 + 1.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2020-08-23 1.25.0 diff --git a/desktop/mate/mate-sensors-applet/pspec.xml b/desktop/mate/mate-sensors-applet/pspec.xml index 96ed1b085f..61941806ec 100755 --- a/desktop/mate/mate-sensors-applet/pspec.xml +++ b/desktop/mate/mate-sensors-applet/pspec.xml @@ -12,12 +12,12 @@ library Display readings from hardware sensors in your MATE panel. MATE Sensors Applet is an applet for the MATE Panel to display readings from hardware sensors, including CPU temperature, fan speeds and voltage readings under Linux.on. - http://pub.mate-desktop.org/releases/1.25/mate-sensors-applet-1.25.0.tar.xz + http://pub.mate-desktop.org/releases/1.26/mate-sensors-applet-1.26.0.tar.xz gtk3-devel - mate-common + mate-common libnotify-devel - mate-panel-devel + mate-panel-devel lm_sensors-devel libxslt-devel intltool @@ -64,6 +64,13 @@ + + 2021-09-07 + 1.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2020-06-29 1.25.0 diff --git a/desktop/mate/mate-session-manager/pspec.xml b/desktop/mate/mate-session-manager/pspec.xml index 906ad9b731..592a640400 100644 --- a/desktop/mate/mate-session-manager/pspec.xml +++ b/desktop/mate/mate-session-manager/pspec.xml @@ -13,7 +13,7 @@ app:gui MATE Session Manager This package contains a session that can be started from a display manager such as MDM. It will load all necessary applications for a full-featured user session. - https://pub.mate-desktop.org/releases/1.25/mate-session-manager-1.25.0.tar.xz + https://pub.mate-desktop.org/releases/1.26/mate-session-manager-1.26.0.tar.xz xmlto xtrans @@ -21,7 +21,7 @@ mesa-devel gtk3-devel libSM-devel - mate-common + mate-common python3-devel libglvnd-devel libepoxy-devel @@ -71,6 +71,13 @@ + + 2021-09-07 + 1.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2020-07-09 1.25.0 diff --git a/desktop/mate/mate-settings-daemon/pspec.xml b/desktop/mate/mate-settings-daemon/pspec.xml index 8d1e1b19f4..4edc41cd40 100644 --- a/desktop/mate/mate-settings-daemon/pspec.xml +++ b/desktop/mate/mate-settings-daemon/pspec.xml @@ -12,7 +12,7 @@ service System settings daemon for MATE desktop gnome-settings-daemon shares MATE specific settings with other applications via DBus connection. - http://pub.mate-desktop.org/releases/1.25/mate-settings-daemon-1.25.0.tar.xz + http://pub.mate-desktop.org/releases/1.26/mate-settings-daemon-1.26.0.tar.xz intltool nss-devel @@ -27,10 +27,10 @@ libcanberra-devel pulseaudio-libs-devel libcanberra-gtk3-devel - mate-common - libmatekbd-devel - libmatemixer-devel - mate-desktop-devel + mate-common + libmatekbd-devel + libmatemixer-devel + mate-desktop-devel @@ -90,6 +90,13 @@ + + 2021-09-07 + 1.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-08-17 1.25.0 diff --git a/desktop/mate/mate-system-monitor/pspec.xml b/desktop/mate/mate-system-monitor/pspec.xml index 37733a19b9..e556135ffb 100644 --- a/desktop/mate/mate-system-monitor/pspec.xml +++ b/desktop/mate/mate-system-monitor/pspec.xml @@ -13,7 +13,7 @@ app:gui Process and resource monitor Process viewer and system resource monitor for MATE - http://pub.mate-desktop.org/releases/1.25/mate-system-monitor-1.25.0.tar.xz + http://pub.mate-desktop.org/releases/1.26/mate-system-monitor-1.26.0.tar.xz dbus-glib-devel gtk3-devel @@ -24,7 +24,7 @@ libwnck3-devel libxml2-devel polkit-devel - mate-common + mate-common intltool itstool python3-devel @@ -69,6 +69,13 @@ + + 2021-09-07 + 1.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2020-08-23 1.25.0 diff --git a/desktop/mate/mate-terminal/pspec.xml b/desktop/mate/mate-terminal/pspec.xml index 4696bf18d2..c9b9b9805e 100644 --- a/desktop/mate/mate-terminal/pspec.xml +++ b/desktop/mate/mate-terminal/pspec.xml @@ -13,7 +13,7 @@ app:gui MATE terminal emulator application mate-terminal, masaüstü için terminal uygulaması. - http://pub.mate-desktop.org/releases/1.25/mate-terminal-1.25.0.tar.xz + http://pub.mate-desktop.org/releases/1.26/mate-terminal-1.26.0.tar.xz intltool itstool @@ -25,7 +25,7 @@ gtk3-devel dconf-devel libSM-devel - mate-common + mate-common @@ -60,6 +60,13 @@ + + 2021-09-07 + 1.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2020-06-29 1.25.0 diff --git a/desktop/mate/mate-themes/pspec.xml b/desktop/mate/mate-themes/pspec.xml index 5838c4f799..332703583e 100644 --- a/desktop/mate/mate-themes/pspec.xml +++ b/desktop/mate/mate-themes/pspec.xml @@ -13,11 +13,11 @@ data MATE Desktop themes mate-themes, mate masaüstü temalarını barındırır. - https://pub.mate-desktop.org/releases/themes/3.22/mate-themes-3.22.21.tar.xz + https://pub.mate-desktop.org/releases/themes/3.22/mate-themes-3.22.22.tar.xz - mate-common + mate-common gtk2-devel - mate-icon-theme + mate-icon-theme gdk-pixbuf-devel @@ -25,8 +25,8 @@ mate-themes - mate-common - mate-icon-theme + mate-common + mate-icon-theme icon-naming-utils @@ -46,6 +46,13 @@ + + 2021-09-07 + 3.22.22 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2020-06-29 3.22.21 diff --git a/desktop/mate/mate-tweak/pspec.xml b/desktop/mate/mate-tweak/pspec.xml index 6bb80a3813..f70e25fd88 100644 --- a/desktop/mate/mate-tweak/pspec.xml +++ b/desktop/mate/mate-tweak/pspec.xml @@ -12,7 +12,7 @@ app:gui Tweak tool for MATE (fork of MintDesktop) Tweak tool for MATE (fork of MintDesktop) - https://github.com/ubuntu-mate/mate-tweak/archive/20.04.0.tar.gz + https://github.com/ubuntu-mate/mate-tweak/archive/21.04.3.tar.gz python3-devel python3-setuptools @@ -42,6 +42,13 @@ + + 2021-09-07 + 21.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2020-06-29 20.04.0 @@ -58,4 +65,3 @@ - diff --git a/desktop/mate/mate-user-share/pspec.xml b/desktop/mate/mate-user-share/pspec.xml index 8804dc7fae..c014460d2a 100755 --- a/desktop/mate/mate-user-share/pspec.xml +++ b/desktop/mate/mate-user-share/pspec.xml @@ -13,7 +13,7 @@ library User level public file sharing via WebDAV or ObexFTP mate-user-share is a small package that binds together various free software projects to bring easy to use user-level file sharing to the masses. - http://pub.mate-desktop.org/releases/1.24/mate-user-share-1.24.0.tar.xz + http://pub.mate-desktop.org/releases/1.26/mate-user-share-1.26.0.tar.xz gtk3-devel caja-devel @@ -52,6 +52,13 @@ + + 2021-09-07 + 1.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2020-06-29 1.24.0 diff --git a/desktop/mate/mate-utils/pspec.xml b/desktop/mate/mate-utils/pspec.xml index 0c7e9c0b5e..7be0b786d8 100644 --- a/desktop/mate/mate-utils/pspec.xml +++ b/desktop/mate/mate-utils/pspec.xml @@ -13,7 +13,7 @@ app:gui MATE utility programs The mate-utils package contains a set of small "desk accessory" utility applications for MATE, such as a dictionary, a disk usage analyzer, a screenshot tool and others. - http://pub.mate-desktop.org/releases/1.25/mate-utils-1.25.1.tar.xz + http://pub.mate-desktop.org/releases/1.26/mate-utils-1.26.0.tar.xz itstool intltool @@ -27,8 +27,8 @@ e2fsprogs-devel libcanberra-devel libcanberra-gtk3-devel - mate-common - mate-panel-devel + mate-common + mate-panel-devel @@ -95,6 +95,13 @@ + + 2021-09-07 + 1.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-06-26 1.25.1 diff --git a/desktop/mate/mozo/pspec.xml b/desktop/mate/mozo/pspec.xml index e53b6d3778..0aa9ed6f9b 100755 --- a/desktop/mate/mozo/pspec.xml +++ b/desktop/mate/mozo/pspec.xml @@ -13,10 +13,10 @@ library Mozo menu editor for MATE Easy MATE menu editing tool. - http://pub.mate-desktop.org/releases/1.25/mozo-1.25.0.tar.xz + http://pub.mate-desktop.org/releases/1.26/mozo-1.26.0.tar.xz - mate-common - mate-menus-devel + mate-common + mate-menus-devel python-pygobject3-devel python3-devel intltool @@ -41,6 +41,13 @@ + + 2021-09-07 + 1.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-02-14 1.25.0 diff --git a/desktop/mate/pluma/pspec.xml b/desktop/mate/pluma/pspec.xml index 5de52abc18..e7dde51ab0 100644 --- a/desktop/mate/pluma/pspec.xml +++ b/desktop/mate/pluma/pspec.xml @@ -13,7 +13,7 @@ app:gui Mate metin editörü mate masaüstü için metin editörü. - http://pub.mate-desktop.org/releases/1.25/pluma-1.25.3.tar.xz + http://pub.mate-desktop.org/releases/1.26/pluma-1.26.0.tar.xz intltool itstool @@ -21,7 +21,7 @@ gtk3-devel enchant2-devel libSM-devel - mate-common + mate-common iso-codes-devel libpeas-devel python3-devel @@ -91,6 +91,13 @@ + + 2021-09-07 + 1.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-04-05 1.25.3 diff --git a/desktop/mate/python-caja/pspec.xml b/desktop/mate/python-caja/pspec.xml index b8383cb1fb..c019ee0dd2 100755 --- a/desktop/mate/python-caja/pspec.xml +++ b/desktop/mate/python-caja/pspec.xml @@ -12,10 +12,10 @@ library Python binding for Mate CAJA These are unstable bindings for the caja extension library. - https://pub.mate-desktop.org/releases/1.25/python-caja-1.25.0.tar.xz + https://pub.mate-desktop.org/releases/1.26/python-caja-1.26.0.tar.xz python3-devel - mate-common + mate-common python-pygobject3-devel caja-devel intltool @@ -39,6 +39,13 @@ + + 2021-09-07 + 1.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-02-17 1.25.0