Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] mate: update to 1.26.0.
@ 2021-08-27 13:19 skmpz
  2021-09-14 18:28 ` mobinmob
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: skmpz @ 2021-08-27 13:19 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1787 bytes --]

There is a new pull request by skmpz against master on the void-packages repository

https://github.com/skmpz/void-packages mate-1.26.0
https://github.com/void-linux/void-packages/pull/32704

mate: update to 1.26.0.
<!-- Mark items with [x] where applicable -->

#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [ ] I built this PR locally for my native architecture, (ARCH-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->

Packages built for
- x86_64
- i686
- aarch64 [cross x86_64]
- armv7l [cross x86_64]
- x86_64-musl
- aarch64-musl [cross x86_64-musl]
- armv6l-musl [cross x86_64-musl]

Tested on x86_64 glibc.

A patch file from https://github.com/void-linux/void-packages/pull/32704.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-mate-1.26.0-32704.patch --]
[-- Type: text/x-diff, Size: 78763 bytes --]

From 18c14b04118922cc83a0f8fb36e37b75c37aee5d Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:21:35 +0400
Subject: [PATCH 01/38] atril: update to 1.26.0.

---
 srcpkgs/atril/patches/disable-synctex.patch | 242 --------------------
 srcpkgs/atril/template                      |  18 +-
 2 files changed, 7 insertions(+), 253 deletions(-)
 delete mode 100644 srcpkgs/atril/patches/disable-synctex.patch

diff --git a/srcpkgs/atril/patches/disable-synctex.patch b/srcpkgs/atril/patches/disable-synctex.patch
deleted file mode 100644
index 2f6d4b7ea476..000000000000
--- a/srcpkgs/atril/patches/disable-synctex.patch
+++ /dev/null
@@ -1,242 +0,0 @@
-From c246af6b85bfb326d10eb56e0d2563138495dfa2 Mon Sep 17 00:00:00 2001
-From: Oz Tiram <oz.tiram@noris.de>
-Date: Fri, 7 Feb 2020 21:57:10 +0100
-Subject: [PATCH] Make synctex optional
-
-Not everyone who reads PDF's is necessarily a LaTeX user.
-These changes allow users to install atril without the huge bagage
-of tex-live on systems where synctex isn't provided as a stand alone
-library.
----
- configure.ac              | 25 +++++++++++++++++--------
- libdocument/ev-document.c | 16 ++++++++++++----
- libview/ev-view.c         |  9 ++++++++-
- shell/ev-window.c         |  5 +++++
- 4 files changed, 42 insertions(+), 13 deletions(-)
-
-diff --git a/configure.ac b/configure.ac
-index 529ef2a0..543808f8 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -361,15 +361,25 @@ AC_SUBST([GIRTYPELIBDIR])
- AM_CONDITIONAL([ENABLE_INTROSPECTION],[test "$enable_introspection" = "yes"])
- 
- dnl ================== libsynctex ===========================================
-+AC_ARG_ENABLE([synctex],
-+  [AS_HELP_STRING([--disable-synctex], [Disable support for synctex])],
-+  [],
-+  [enable_synctex=yes])
- 
--PKG_CHECK_MODULES(SYNCTEX, [synctex >= $SYNCTEX_REQUIRED], has_synctex=yes, has_synctex=no)
- 
--dnl not found? use internal code copy.
--if test "x$has_synctex" = "xno"; then
--        AC_MSG_ERROR("SyncTeX support is disabled since library version $SYNCTEX_REQUIRED or newer not found")
-+if test "$enable_synctex" = "yes"; then
-+  AC_DEFINE([ENABLE_SYNCTEX],[1],[Define if synctex support is enabled])
-+  PKG_CHECK_MODULES(SYNCTEX, [synctex >= $SYNCTEX_REQUIRED], has_synctex=yes, has_synctex=no)
-+  dnl not found? use internal code copy.
-+  if test "x$has_synctex" = "xno"; then
-+          AC_MSG_ERROR("SyncTeX support is disabled since library version $SYNCTEX_REQUIRED or newer not found")
-+  fi
-+  AC_SUBST(SYNCTEX_LIBS)
-+  AC_SUBST(SYNCTEX_CFLAGS)
- fi
--AC_SUBST(SYNCTEX_LIBS)
--AC_SUBST(SYNCTEX_CFLAGS)
-+
-+AM_CONDITIONAL([ENABLE_SYNCTEX], [test "$enable_synctex" = "yes"])
-+
- 
- dnl ================== portability checks ===========================================
- 
-@@ -770,6 +780,7 @@ Configure summary:
-     Tests...............:    $enable_tests
- 
-     PDF Backend.........:    $enable_pdf
-+    Synctex enabled.....:    $enable_synctex
-     PostScript Backend..:    $enable_ps
-     TIFF Backend........:    $enable_tiff
-     DJVU Backend........:    $enable_djvu
-@@ -778,6 +789,4 @@ Configure summary:
-     Comics Backend......:    $enable_comics
-     XPS Backend.........:    $enable_xps
-     ePub Backend........:    $have_webkit
--
--    SyncTeX.............:    $has_synctex
- "
-diff --git a/libdocument/ev-document.c b/libdocument/ev-document.c
-index b713a671..be082aeb 100644
---- a/libdocument/ev-document.c
-+++ b/libdocument/ev-document.c
-@@ -25,7 +25,9 @@
- #include <string.h>
- 
- #include "ev-document.h"
-+#ifdef ENABLE_SYNCTEX
- #include "synctex_parser.h"
-+#endif
- #include "ev-file-helpers.h"
- 
- typedef struct _EvPageSize
-@@ -53,8 +55,9 @@ struct _EvDocumentPrivate
- 	gchar         **page_labels;
- 	EvPageSize     *page_sizes;
- 	EvDocumentInfo *info;
--
-+#ifdef ENABLE_SYNCTEX
- 	synctex_scanner_p synctex_scanner;
-+#endif
- };
- 
- static gint            _ev_document_get_n_pages     (EvDocument *document);
-@@ -124,12 +127,12 @@ ev_document_finalize (GObject *object)
- 		ev_document_info_free (document->priv->info);
- 		document->priv->info = NULL;
- 	}
--
-+#ifdef ENABLE_SYNCTEX
- 	if (document->priv->synctex_scanner) {
- 		synctex_scanner_free (document->priv->synctex_scanner);
- 		document->priv->synctex_scanner = NULL;
- 	}
--
-+#endif
- 	G_OBJECT_CLASS (ev_document_parent_class)->finalize (object);
- }
- 
-@@ -137,8 +140,9 @@ static void
- ev_document_init (EvDocument *document)
- {
- 	document->priv = ev_document_get_instance_private (document);
-+#ifdef ENABLE_SYNCTEX
- 	document->synctex_version = SYNCTEX_VERSION_STRING;
--
-+#endif
- 	/* Assume all pages are the same size until proven otherwise */
- 	document->priv->uniform = TRUE;
- 	/* Assume that the document is not a web document*/
-@@ -336,6 +340,7 @@ ev_document_load (EvDocument  *document,
- 		}
- 
- 		priv->info = _ev_document_get_info (document);
-+#ifdef ENABLE_SYNCTEX
- 		if (_ev_document_support_synctex (document)) {
- 			gchar *filename;
- 
-@@ -346,6 +351,7 @@ ev_document_load (EvDocument  *document,
- 				g_free (filename);
- 			}
- 		}
-+#endif
- 	}
- 
- 	return retval;
-@@ -388,6 +394,7 @@ _ev_document_support_synctex (EvDocument *document)
- 	return klass->support_synctex ? klass->support_synctex (document) : FALSE;
- }
- 
-+#ifdef ENABLE_SYNCTEX
- gboolean
- ev_document_has_synctex (EvDocument *document)
- {
-@@ -492,6 +499,7 @@ ev_document_synctex_forward_search (EvDocument   *document,
- 
-         return result;
- }
-+#endif /* ENABLE_SYNCTEX */
- 
- static gint
- _ev_document_get_n_pages (EvDocument  *document)
-diff --git a/libview/ev-view.c b/libview/ev-view.c
-index a195ba21..e98582d3 100644
---- a/libview/ev-view.c
-+++ b/libview/ev-view.c
-@@ -3210,6 +3210,7 @@ ev_view_remove_annotation (EvView       *view,
-         g_object_unref (annot);
- }
- 
-+#ifdef ENABLE_SYNCTEX
- static gboolean
- ev_view_synctex_backward_search (EvView *view,
- 				 gdouble x,
-@@ -3235,6 +3236,7 @@ ev_view_synctex_backward_search (EvView *view,
- 
- 	return FALSE;
- }
-+#endif
- 
- /* Caret navigation */
- #define CURSOR_ON_MULTIPLIER 2
-@@ -4078,8 +4080,10 @@ ev_view_draw (GtkWidget      *widget,
- 			show_annotation_windows (view, i);
- 		if (page_ready && view->focused_element)
- 			draw_focus (view, cr, i, &clip_rect);
-+#ifdef ENABLE_SYNCTEX
- 		if (page_ready && view->synctex_result)
- 			highlight_forward_search_results (view, cr, i);
-+#endif
- 	}
- 
- 	if (GTK_WIDGET_CLASS (ev_view_parent_class)->draw)
-@@ -4472,9 +4476,10 @@ ev_view_button_press_event (GtkWidget      *widget,
- 			EvFormField *field;
- 			EvMapping *link;
- 			gint page;
--
-+#ifdef ENABLE_SYNCTEX
- 			if (event->state & GDK_CONTROL_MASK)
- 				return ev_view_synctex_backward_search (view, event->x , event->y);
-+#endif
- 
- 			if (EV_IS_SELECTION (view->document) && view->selection_info.selections) {
- 				if (event->type == GDK_3BUTTON_PRESS) {
-@@ -7522,6 +7527,7 @@ ev_view_find_cancel (EvView *view)
- 	view->find_pages = NULL;
- }
- 
-+#ifdef ENABLE_SYNCTEX
- /*** Synctex ***/
- void
- ev_view_highlight_forward_search (EvView       *view,
-@@ -7549,6 +7555,7 @@ ev_view_highlight_forward_search (EvView       *view,
- 	ensure_rectangle_is_visible (view, &view_rect);
- 	gtk_widget_queue_draw (GTK_WIDGET (view));
- }
-+#endif /* ENABLE_SYNCTEX */
- 
- /*** Selections ***/
- static gboolean
-diff --git a/shell/ev-window.c b/shell/ev-window.c
-index e4cbce93..a2da929d 100644
---- a/shell/ev-window.c
-+++ b/shell/ev-window.c
-@@ -7751,6 +7751,8 @@ ev_window_emit_doc_loaded (EvWindow *window)
-         ev_atril_window_emit_document_loaded (window->priv->skeleton, window->priv->uri);
- }
- 
-+
-+#ifdef ENABLE_SYNCTEX
- static gboolean
- handle_sync_view_cb (EvAtrilWindow        *object,
-                      GDBusMethodInvocation *invocation,
-@@ -7771,6 +7773,7 @@ handle_sync_view_cb (EvAtrilWindow        *object,
- 
- 	return TRUE;
- }
-+#endif
- #endif /* ENABLE_DBUS */
- 
- static gboolean
-@@ -7831,9 +7834,11 @@ ev_window_init (EvWindow *ev_window)
-                                                       ev_window->priv->dbus_object_path,
-                                                       &error)) {
-                         ev_window->priv->skeleton = skeleton;
-+#ifdef ENABLE_SYNCTEX
-                         g_signal_connect (skeleton, "handle-sync-view",
-                                           G_CALLBACK (handle_sync_view_cb),
-                                           ev_window);
-+#endif
-                 } else {
-                         g_printerr ("Failed to register bus object %s: %s\n",
- 			            ev_window->priv->dbus_object_path, error->message);
diff --git a/srcpkgs/atril/template b/srcpkgs/atril/template
index 97602c4b1b0b..e3beb69b9e04 100644
--- a/srcpkgs/atril/template
+++ b/srcpkgs/atril/template
@@ -1,33 +1,29 @@
 # Template file for 'atril'
 pkgname=atril
-version=1.24.1
+version=1.26.0
 revision=1
 build_style=gnu-configure
 build_helper="gir"
-configure_args="--disable-schemas-compile --enable-djvu --disable-synctex
+configure_args="--disable-schemas-compile --enable-djvu --enable-synctex=no
  --enable-dvi --enable-t1lib --enable-pixbuf --enable-comics --enable-xps
  --disable-static $(vopt_enable gir introspection)"
-hostmakedepends="glib-devel intltool itstool pkg-config automake libtool
- gettext-devel perl-XML-Parser yelp-tools mate-common autoconf-archive
- $(vopt_if gir 'gobject-introspection')"
+hostmakedepends="glib-devel intltool itstool pkg-config
+ perl-XML-Parser yelp-tools mate-common $(vopt_if gir 'gobject-introspection')"
 makedepends="djvulibre-devel libSM-devel libcaja-devel libgxps-devel
  libnotify-devel libsecret-devel libspectre-devel libunique-devel
  mate-desktop-devel mate-icon-theme poppler-glib-devel webkit2gtk-devel"
 depends="dbus mate-desktop mate-icon-theme"
 short_desc="Simply a document viewer for MATE"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="skmpz <dem.procopiou@gmail.com>"
 license="GPL-2.0-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/atril/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=b48372a89813f31d2635de02d9e92ba38e794daddf625f06d80c3793248bde1a
+checksum=715e766eaede3fa5d8ca300fa3319fb2b63055dfdc6e971d8750c2aec624e45f
 
 build_options="gir"
 build_options_default="gir"
 
-pre_configure() {
-	autoreconf -fi
-}
-
 do_check() {
 	: dogtail does NOT support Void Linux
 }

From 34e4e1a5c86ffeb3febcd15ec65ad9643eb3e8a1 Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:23:40 +0400
Subject: [PATCH 02/38] caja-dropbox: update to 1.26.0.

---
 srcpkgs/caja-dropbox/template | 14 ++++++++++----
 1 file changed, 10 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/caja-dropbox/template b/srcpkgs/caja-dropbox/template
index 952cccbd43a5..0beb6967905f 100644
--- a/srcpkgs/caja-dropbox/template
+++ b/srcpkgs/caja-dropbox/template
@@ -1,18 +1,24 @@
 # Template file for 'caja-dropbox'
 pkgname=caja-dropbox
-version=1.24.0
+version=1.26.0
 revision=1
 build_style=gnu-configure
-configure_args="--disable-gksu --disable-static"
-hostmakedepends="pkg-config python3-docutils python3-gobject gdk-pixbuf-devel"
+configure_args="--disable-static"
+hostmakedepends="autoconf-archive gettext-devel libtool pkg-config
+ python3-docutils python3-gobject gdk-pixbuf-devel which mate-common"
 makedepends="libcaja-devel glib-devel gtk+3-devel python3-gobject-devel"
 depends="caja"
 short_desc="Dropbox extension for Caja file manager"
 maintainer="skmpz <dem.procopiou@gmail.com>"
 license="CC-BY-ND-3.0, GPL-3.0-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/caja-dropbox/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=224a6ad0b9cc994384192469fbcd745f077e85577f57d58b85695754b04096e5
+checksum=9693d0c3426822d5b549e2241cd2b8a0ed552d4eebf2c87fa522e82b3fc8849b
+
+pre_configure() {
+	NOCONFIGURE=1 ./autogen.sh
+}
 
 post_install() {
 	vlicense COPYING

From 940c4137987e4a9d5e2bd494c22ed2208572899c Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:24:06 +0400
Subject: [PATCH 03/38] caja-extensions: update to 1.26.0.

---
 srcpkgs/caja-extensions/template | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/caja-extensions/template b/srcpkgs/caja-extensions/template
index 171720780a86..a258f63ada12 100644
--- a/srcpkgs/caja-extensions/template
+++ b/srcpkgs/caja-extensions/template
@@ -1,9 +1,9 @@
 # Template file for 'caja-extensions'
 pkgname=caja-extensions
-version=1.24.1
+version=1.26.0
 revision=1
 build_style=gnu-configure
-configure_args="--disable-gksu"
+configure_args="--disable-gksu --disable-static"
 hostmakedepends="pkg-config intltool glib-devel libxml2"
 makedepends="libcaja-devel mate-desktop-devel dbus-glib-devel gupnp-devel"
 depends="caja"
@@ -11,8 +11,9 @@ short_desc="Extensions for the MATE Caja file manager"
 maintainer="skmpz <dem.procopiou@gmail.com>"
 license="GPL-2.0-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/caja-extensions/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=8533c3e0d3b0984eac284168744ecd12f8d0bdd914b908b4b71a496c95f5538e
+checksum=f01539530840f8bd32ad119fab346cac214149dec74a69ae65a39442fdd8fc0f
 
 post_install() {
 	rm -rf ${DESTDIR}/usr/include
@@ -25,8 +26,6 @@ caja-image-converter_package() {
 	depends="caja-extensions ImageMagick"
 	pkg_install() {
 		vmove usr/lib/caja/extensions-2.0/libcaja-image-converter.so
-		vmove usr/share/caja-extensions/caja-image-resize.ui
-		vmove usr/share/caja-extensions/caja-image-rotate.ui
 	}
 }
 

From a9652e6ef93255392f04ac309631ed915d605d42 Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:24:27 +0400
Subject: [PATCH 04/38] caja: update to 1.26.0.

---
 srcpkgs/caja/template | 12 ++++--------
 1 file changed, 4 insertions(+), 8 deletions(-)

diff --git a/srcpkgs/caja/template b/srcpkgs/caja/template
index ef7f481d9502..95167200cdb6 100644
--- a/srcpkgs/caja/template
+++ b/srcpkgs/caja/template
@@ -1,6 +1,6 @@
 # Template file for 'caja'
 pkgname=caja
-version=1.24.1
+version=1.26.0
 revision=1
 build_style=gnu-configure
 build_helper="gir"
@@ -8,8 +8,7 @@ build_helper="gir"
 configure_args="--disable-static --disable-packagekit --disable-schemas-compile
  --disable-update-mimedb --disable-self-check $(vopt_enable gir introspection)
  ac_cv_lib_selinux_is_selinux_enabled=no ac_cv_strftime_extensions=yes"
-hostmakedepends="automake gettext-devel glib-devel gobject-introspection
- intltool itstool libtool pkg-config"
+hostmakedepends="glib-devel gobject-introspection intltool itstool pkg-config"
 makedepends="exempi-devel gvfs-devel libXt-devel libexif-devel libnotify-devel
  mate-desktop-devel"
 depends="dbus gvfs mate-desktop mate-icon-theme"
@@ -17,16 +16,13 @@ short_desc="MATE shell and file manager"
 maintainer="skmpz <dem.procopiou@gmail.com>"
 license="GPL-2.0-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/caja/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=e50b0147ce4c43107d4dadddafd2fa3928f7522515663b6bc58fef3016598f7a
+checksum=a200a6fad3a5fbc70d10f8626788e2f4f31bde363649bc50a6bb8a85b2880ad4
 
 build_options="gir"
 build_options_default="gir"
 
-pre_configure() {
-	autoreconf -fi
-}
-
 libcaja_package() {
 	short_desc+=" - runtime library"
 	pkg_install() {

From f15e4c642604d0819af83cd541f8c8d4977fd23d Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:24:53 +0400
Subject: [PATCH 05/38] engrampa: update to 1.26.0.

---
 srcpkgs/engrampa/patches/zstd-mime-type.patch | 31 +++++++++++--------
 srcpkgs/engrampa/template                     |  8 +++--
 2 files changed, 23 insertions(+), 16 deletions(-)

diff --git a/srcpkgs/engrampa/patches/zstd-mime-type.patch b/srcpkgs/engrampa/patches/zstd-mime-type.patch
index cf56c55509a6..75e2f5a1629d 100644
--- a/srcpkgs/engrampa/patches/zstd-mime-type.patch
+++ b/srcpkgs/engrampa/patches/zstd-mime-type.patch
@@ -1,7 +1,8 @@
-diff --git caja/caja-engrampa.c caja/caja-engrampa.c
+diff --git a/caja/caja-engrampa.c b/caja/caja-engrampa.c
+index ad89608..d4019ec 100644
 --- a/caja/caja-engrampa.c
 +++ b/caja/caja-engrampa.c
-@@ -191,7 +191,8 @@ static struct {
+@@ -195,7 +195,8 @@ static struct {
  		{ "application/x-zip", TRUE },
  		{ "application/x-zip-compressed", TRUE },
  		{ "application/x-zoo", TRUE },
@@ -11,10 +12,11 @@ diff --git caja/caja-engrampa.c caja/caja-engrampa.c
  		{ "application/x-zstd-compressed-tar", TRUE },
  		{ "application/zip", TRUE },
  		{ "multipart/x-zip", TRUE },
-diff --git configure.ac configure.ac
+diff --git a/configure.ac b/configure.ac
+index 5d03e6b..6305854 100644
 --- a/configure.ac
 +++ b/configure.ac
-@@ -141,7 +141,6 @@ AC_ARG_ENABLE([magic],
+@@ -148,7 +148,6 @@ AC_ARG_ENABLE([magic],
                AS_HELP_STRING([--enable-magic], [use libmagic to detect file type]),,
                [enable_magic=no])
  
@@ -22,7 +24,7 @@ diff --git configure.ac configure.ac
  if test x"$enable_magic" = x"yes" ; then
  	save_LIBS="$LIBS"
  	LIBS="$LIBS -lmagic"
-@@ -154,47 +153,6 @@ int main () { magic_t m = magic_open(MAGIC_NONE); }
+@@ -161,47 +160,6 @@ int main () { magic_t m = magic_open(MAGIC_NONE); }
  		       [AC_MSG_RESULT([no])
  		        AC_MSG_ERROR([libmagic is needed for magic])])
  
@@ -70,7 +72,7 @@ diff --git configure.ac configure.ac
  	LIBS="$save_LIBS"
  
  	MAGIC_CFLAGS=
-@@ -207,9 +165,6 @@ int main () { magic_t m = magic_open(MAGIC_NONE); }
+@@ -214,9 +172,6 @@ int main () { magic_t m = magic_open(MAGIC_NONE); }
  fi
  
  AM_CONDITIONAL(ENABLE_MAGIC, test x"$enable_magic" != x"no")
@@ -80,19 +82,21 @@ diff --git configure.ac configure.ac
  
  AC_ARG_VAR([CPIO], [Path to the `cpio` command])
  AC_PATH_PROGS(CPIO, gcpio cpio, cpio)
-diff --git data/engrampa.desktop.in.in data/engrampa.desktop.in.in
+diff --git a/data/engrampa.desktop.in.in b/data/engrampa.desktop.in.in
+index c23c8ab..6d8c511 100644
 --- a/data/engrampa.desktop.in.in
 +++ b/data/engrampa.desktop.in.in
 @@ -11,7 +11,7 @@ Type=Application
  Icon=engrampa
  # Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon!
  Categories=GTK;Utility;Archiving;Compression;
--MimeType=application/x-7z-compressed;application/x-7z-compressed-tar;application/x-ace;application/x-alz;application/x-arj;application/x-brotli;application/x-brotli-compressed-tar;application/x-bzip;application/x-bzip-compressed-tar;application/x-bzip1;application/x-bzip1-compressed-tar;application/x-cabinet;application/x-cbr;application/x-cbz;application/x-cd-image;application/x-compress;application/x-compressed-tar;application/x-cpio;application/vnd.debian.binary-package;application/x-ear;application/x-ms-dos-executable;application/x-gtar;application/x-gzip;application/x-gzpostscript;application/x-java-archive;application/x-lha;application/x-lzh-compressed;application/x-lrzip;application/x-lrzip-compressed-tar;application/x-lzip;application/x-lzip-compressed-tar;application/x-lzma;application/x-lzma-compressed-tar;application/x-lzop;application/x-lzop-compressed-tar;application/x-ms-wim;application/x-rar;application/x-rar-compressed;application/x-rpm;application/x-source-rpm;application/x-rzip;application/x-tar;application/x-tarz;application/x-stuffit;application/x-war;application/x-xz;application/x-xz-compressed-tar;application/x-zip;application/x-zip-compressed;application/x-zoo;@ZSTD_MIME_TYPE@;application/x-zstd-compressed-tar;application/zip;application/x-archive;application/vnd.ms-cab-compressed;
-+MimeType=application/x-7z-compressed;application/x-7z-compressed-tar;application/x-ace;application/x-alz;application/x-arj;application/x-brotli;application/x-brotli-compressed-tar;application/x-bzip;application/x-bzip-compressed-tar;application/x-bzip1;application/x-bzip1-compressed-tar;application/x-cabinet;application/x-cbr;application/x-cbz;application/x-cd-image;application/x-compress;application/x-compressed-tar;application/x-cpio;application/vnd.debian.binary-package;application/x-ear;application/x-ms-dos-executable;application/x-gtar;application/x-gzip;application/x-gzpostscript;application/x-java-archive;application/x-lha;application/x-lzh-compressed;application/x-lrzip;application/x-lrzip-compressed-tar;application/x-lzip;application/x-lzip-compressed-tar;application/x-lzma;application/x-lzma-compressed-tar;application/x-lzop;application/x-lzop-compressed-tar;application/x-ms-wim;application/x-rar;application/x-rar-compressed;application/x-rpm;application/x-source-rpm;application/x-rzip;application/x-tar;application/x-tarz;application/x-stuffit;application/x-war;application/x-xz;application/x-xz-compressed-tar;application/x-zip;application/x-zip-compressed;application/x-zoo;application/zstd;application/x-zstd;application/x-zstd-compressed-tar;application/zip;application/x-archive;application/vnd.ms-cab-compressed;
+-MimeType=application/epub+zip;application/x-7z-compressed;application/x-7z-compressed-tar;application/x-ace;application/x-alz;application/x-arc;application/x-arj;application/x-brotli;application/x-brotli-compressed-tar;application/x-bzip;application/x-bzip-compressed-tar;application/x-bzip1;application/x-bzip1-compressed-tar;application/x-cabinet;application/x-cbr;application/x-cbz;application/x-cd-image;application/x-compress;application/x-compressed-tar;application/x-cpio;application/vnd.debian.binary-package;application/x-ear;application/x-ms-dos-executable;application/x-gtar;application/x-gzip;application/x-gzpostscript;application/x-java-archive;application/x-lha;application/x-lzh-compressed;application/x-lrzip;application/x-lrzip-compressed-tar;application/x-lzip;application/x-lzip-compressed-tar;application/x-lzma;application/x-lzma-compressed-tar;application/x-lzop;application/x-lzop-compressed-tar;application/x-ms-wim;application/x-rar;application/x-rar-compressed;application/x-rpm;application/x-source-rpm;application/x-rzip;application/x-tar;application/x-tarz;application/x-stuffit;application/x-war;application/x-xz;application/x-xz-compressed-tar;application/x-zip;application/x-zip-compressed;application/x-zoo;@ZSTD_MIME_TYPE@;application/x-zstd-compressed-tar;application/zip;application/x-archive;application/vnd.ms-cab-compressed;
++MimeType=application/epub+zip;application/x-7z-compressed;application/x-7z-compressed-tar;application/x-ace;application/x-alz;application/x-arc;application/x-arj;application/x-brotli;application/x-brotli-compressed-tar;application/x-bzip;application/x-bzip-compressed-tar;application/x-bzip1;application/x-bzip1-compressed-tar;application/x-cabinet;application/x-cbr;application/x-cbz;application/x-cd-image;application/x-compress;application/x-compressed-tar;application/x-cpio;application/vnd.debian.binary-package;application/x-ear;application/x-ms-dos-executable;application/x-gtar;application/x-gzip;application/x-gzpostscript;application/x-java-archive;application/x-lha;application/x-lzh-compressed;application/x-lrzip;application/x-lrzip-compressed-tar;application/x-lzip;application/x-lzip-compressed-tar;application/x-lzma;application/x-lzma-compressed-tar;application/x-lzop;application/x-lzop-compressed-tar;application/x-ms-wim;application/x-rar;application/x-rar-compressed;application/x-rpm;application/x-source-rpm;application/x-rzip;application/x-tar;application/x-tarz;application/x-stuffit;application/x-war;application/x-xz;application/x-xz-compressed-tar;application/x-zip;application/x-zip-compressed;application/x-zoo;application/zstd;application/x-zstd;application/x-zstd-compressed-tar;application/zip;application/x-archive;application/vnd.ms-cab-compressed;
  # Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon!
  Keywords=MATE;archive;manager;compression;
  X-MATE-DocPath=engrampa/engrampa.xml
-diff --git src/fr-command-cfile.c src/fr-command-cfile.c
+diff --git a/src/fr-command-cfile.c b/src/fr-command-cfile.c
+index a914abe..93f641f 100644
 --- a/src/fr-command-cfile.c
 +++ b/src/fr-command-cfile.c
 @@ -301,7 +301,8 @@ fr_command_cfile_add (FrCommand     *comm,
@@ -155,10 +159,11 @@ diff --git src/fr-command-cfile.c src/fr-command-cfile.c
  		return PACKAGES ("zstd");
  
  	return NULL;
-diff --git src/fr-init.c src/fr-init.c
+diff --git a/src/fr-init.c b/src/fr-init.c
+index 7d7b313..57dfc40 100644
 --- a/src/fr-init.c
 +++ b/src/fr-init.c
-@@ -108,7 +108,8 @@ FrMimeTypeDescription mime_type_desc[] = {
+@@ -110,7 +110,8 @@ FrMimeTypeDescription mime_type_desc[] = {
  	{ "application/x-xz",                                         ".xz",       N_("Xz compressed file"), 0 },
  	{ "application/x-xz-compressed-tar",                          ".tar.xz",   N_("Tar compressed with xz"), 0 },
  	{ "application/x-zoo",                                        ".zoo",      N_("Zoo"), 0 },
@@ -168,7 +173,7 @@ diff --git src/fr-init.c src/fr-init.c
  	{ "application/x-zstd-compressed-tar",                        ".tar.zst",  N_("Tar compressed with zstd"), 0 },
  	{ "application/zip",                                          ".zip",      N_("Zip"), 0 },
  	{ NULL, NULL, NULL, 0 }
-@@ -181,7 +182,7 @@ FrExtensionType file_ext_type[] = {
+@@ -185,7 +186,7 @@ FrExtensionType file_ext_type[] = {
  	{ ".Z", "application/x-compress" },
  	{ ".zip", "application/zip" },
  	{ ".zoo", "application/x-zoo" },
diff --git a/srcpkgs/engrampa/template b/srcpkgs/engrampa/template
index ac402d6fb4a9..14d98489c715 100644
--- a/srcpkgs/engrampa/template
+++ b/srcpkgs/engrampa/template
@@ -1,9 +1,10 @@
 # Template file for 'engrampa'
 pkgname=engrampa
-version=1.24.2
+version=1.26.0
 revision=1
 build_style=gnu-configure
-configure_args="--enable-magic --disable-schemas-compile --disable-packagekit"
+configure_args="--enable-magic --disable-schemas-compile --disable-packagekit
+ --disable-static"
 hostmakedepends="glib-devel intltool itstool pkg-config cpio automake
  gettext-devel tar libtool mate-common autoconf-archive"
 makedepends="file-devel gtk+3-devel json-glib-devel libSM-devel libarchive-devel
@@ -13,8 +14,9 @@ short_desc="Archive manipulator for MATE"
 maintainer="skmpz <dem.procopiou@gmail.com>"
 license="GPL-2.0-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/engrampa/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=ee280d288c974732ec7bc2d1c3e18fa563b33a30f3e4cb3e976ebc71be6c4674
+checksum=97cdb2c22c32315a38803d4147dfad9de7309e30ce8f37ac9f600709ad075ee3
 
 pre_configure() {
 	autoreconf -fi

From 71129c994855472d3d49901613a91e46612d51cb Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:25:16 +0400
Subject: [PATCH 06/38] eom: update to 1.26.0.

---
 srcpkgs/eom/template | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/eom/template b/srcpkgs/eom/template
index 6ed175f3a443..37241c0b9b4e 100644
--- a/srcpkgs/eom/template
+++ b/srcpkgs/eom/template
@@ -1,6 +1,6 @@
 # Template file for 'eom'
 pkgname=eom
-version=1.24.1
+version=1.26.0
 revision=1
 build_style=gnu-configure
 build_helper="gir"
@@ -10,11 +10,12 @@ makedepends="dbus-glib-devel exempi-devel libexif-devel libpeas-devel
  librsvg-devel mate-desktop-devel mate-icon-theme"
 depends="dbus mate-icon-theme"
 short_desc="MATE image viewer"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="skmpz <dem.procopiou@gmail.com>"
 license="GPL-2.0-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/eom/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=2eb9d106f658565399f83d3d13315a144715a7e9b069cfd0a040ef0698a62a37
+checksum=27f169aa396ddbc75740bf802bef1c0251771ca0747b5a727ff985c03dc067db
 
 eom-devel_package() {
 	short_desc+=" - development files"

From 8f7fdbd9a41f2149279e0db8e10f80bc13ce8549 Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:25:47 +0400
Subject: [PATCH 07/38] libmatekbd: update to 1.26.0.

---
 srcpkgs/libmatekbd/template | 14 +++++---------
 1 file changed, 5 insertions(+), 9 deletions(-)

diff --git a/srcpkgs/libmatekbd/template b/srcpkgs/libmatekbd/template
index 577e6b919899..dd4ca77315a0 100644
--- a/srcpkgs/libmatekbd/template
+++ b/srcpkgs/libmatekbd/template
@@ -1,28 +1,24 @@
 # Template file for 'libmatekbd'
 pkgname=libmatekbd
-version=1.24.1
+version=1.26.0
 revision=1
 build_style=gnu-configure
 build_helper="gir"
 configure_args="--disable-static $(vopt_enable gir introspection)"
-hostmakedepends="mate-common autoconf-archive pkg-config intltool itstool
- glib-devel gobject-introspection"
+hostmakedepends="pkg-config intltool itstool glib-devel gobject-introspection"
 makedepends="libICE-devel gtk+3-devel libxklavier-devel iso-codes"
 depends="dconf iso-codes"
 short_desc="MATE keyboard library"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="skmpz <dem.procopiou@gmail.com>"
 license="LGPL-2.1-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/libmatekbd/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=a87f6369e3f35428bc8fccafca1103004b2e2f5cb3d8d122019704baa7ebac9e
+checksum=220ee8cab0cbc5f42ca6b621bcd009b0b736507945a2aedbffe2235fa1d811ad
 
 build_options="gir"
 build_options_default="gir"
 
-pre_configure() {
-	autoreconf -fi
-}
-
 libmatekbd-devel_package() {
 	short_desc+=" - development files"
 	depends="gtk+3-devel libxklavier-devel ${sourcepkg}>=${version}_${revision}"

From b127da62d3ec567b5c012404cc63e80a8ccc2ee4 Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:26:03 +0400
Subject: [PATCH 08/38] libmatemixer: update to 1.26.0.

---
 srcpkgs/libmatemixer/template | 11 ++++-------
 1 file changed, 4 insertions(+), 7 deletions(-)

diff --git a/srcpkgs/libmatemixer/template b/srcpkgs/libmatemixer/template
index 2028de955a83..36ec5c3322fe 100644
--- a/srcpkgs/libmatemixer/template
+++ b/srcpkgs/libmatemixer/template
@@ -1,21 +1,18 @@
 # Template file for 'libmatemixer'
 pkgname=libmatemixer
-version=1.24.1
+version=1.26.0
 revision=1
 build_style=gnu-configure
 configure_args="--disable-static"
-hostmakedepends="mate-common pkg-config intltool itstool autoconf-archive"
+hostmakedepends="mate-common pkg-config intltool itstool"
 makedepends="libglib-devel alsa-lib-devel pulseaudio-devel"
 short_desc="MATE mixer library"
 maintainer="skmpz <dem.procopiou@gmail.com>"
 license="LGPL-2.1-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/libmatemixer/master/NEWS"
 distfiles="http://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=1d2f2f0c3b6b31f96b689e28a73d4c3c080061ec22c1b3b4696e7f63e6c1d9d8
-
-pre_configure() {
-	autoreconf -fi
-}
+checksum=9a9bcc605b27e9c5c91a28eb7cb79831e6d6fbf6339f5e5c18d524f3ee259ff1
 
 libmatemixer-devel_package() {
 	short_desc+=" - development files"

From 643c90a9595d378a36ad1d1e4581e3df822c59e8 Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:26:22 +0400
Subject: [PATCH 09/38] libmateweather: update to 1.26.0.

---
 srcpkgs/libmateweather/template | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/libmateweather/template b/srcpkgs/libmateweather/template
index b7180e39aff1..6ac1a9208910 100644
--- a/srcpkgs/libmateweather/template
+++ b/srcpkgs/libmateweather/template
@@ -1,10 +1,10 @@
 # Template file for 'libmateweather'
 pkgname=libmateweather
-version=1.24.1
+version=1.26.0
 revision=1
 build_style=gnu-configure
-configure_args="--disable-static --disable-python
- --enable-locations-compression --with-zoneinfo-dir=/usr/share/zoneinfo"
+configure_args="--disable-static --enable-locations-compression
+ --with-zoneinfo-dir=/usr/share/zoneinfo"
 hostmakedepends="pkg-config intltool itstool glib-devel"
 makedepends="gtk+3-devel libsoup-devel"
 depends="dconf"
@@ -12,8 +12,9 @@ short_desc="Provides access to weather information from the Internet for MATE"
 maintainer="skmpz <dem.procopiou@gmail.com>"
 license="GPL-2.0-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/libmateweather/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=9b4cfdefcd368137b9300e19fd6ed31b26a56336b78ef3fa772156755361a709
+checksum=a7fd9713099c88826fb67249771cd0cdb92ee9d4784068b1a165840b84607b15
 
 libmateweather-devel_package() {
 	short_desc+=" - development files"

From a2e93b5181ea82a53159bdf92bc03a2fcdfafe67 Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:26:47 +0400
Subject: [PATCH 10/38] marco: update to 1.26.0.

---
 srcpkgs/marco/template | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/srcpkgs/marco/template b/srcpkgs/marco/template
index 5abb62b91fec..047eb7fd3f3a 100644
--- a/srcpkgs/marco/template
+++ b/srcpkgs/marco/template
@@ -1,10 +1,10 @@
 # Template file for 'marco'
 pkgname=marco
-version=1.24.2
+version=1.26.0
 revision=1
 build_style=gnu-configure
 configure_args="--disable-static --enable-startup-notification --disable-schemas-compile"
-hostmakedepends="gdk-pixbuf-devel mate-common which zenity autoconf-archive"
+hostmakedepends="gdk-pixbuf-devel zenity pkg-config itstool intltool"
 makedepends="libXt-devel libcanberra-devel libgtop-devel
  libnotify-devel mate-desktop-devel libXpresent-devel"
 depends="zenity"
@@ -12,12 +12,13 @@ short_desc="Window manager for MATE"
 maintainer="skmpz <dem.procopiou@gmail.com>"
 license="GPL-2.0-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/marco/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=498350cb12fc4d9c7c4a0355102c17b50043fbab258d11ad41b7d698b4f042a7
+checksum=f63c08cd8b07450ab3e33a04605c4f9e69522358884273b3cbcf30275eee5b05
 
-pre_configure() {
-	NOCONFIGURE=1 ./autogen.sh
-}
+# pre_configure() {
+# 	NOCONFIGURE=1 ./autogen.sh
+# }
 
 libmarco_package() {
 	short_desc+=" - runtime library"

From 8b1fe4cc5e2b4d88bbdbfd2c4c85743b04faf7aa Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:27:03 +0400
Subject: [PATCH 11/38] mate-applets: update to 1.26.0.

---
 srcpkgs/mate-applets/template | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/mate-applets/template b/srcpkgs/mate-applets/template
index 8a530aafa043..9a124f551487 100644
--- a/srcpkgs/mate-applets/template
+++ b/srcpkgs/mate-applets/template
@@ -1,6 +1,6 @@
 # Template file for 'mate-applets'
 pkgname=mate-applets
-version=1.24.1
+version=1.26.0
 revision=1
 build_style=gnu-configure
 configure_args="--disable-static --enable-ipv6"
@@ -8,14 +8,15 @@ hostmakedepends="glib-devel intltool itstool libxslt pkg-config polkit"
 makedepends="NetworkManager-devel gtksourceview-devel libSM-devel libgtop-devel
  libmate-panel-devel libmateweather-devel libnotify-devel libwnck-devel
  mate-desktop-devel mate-icon-theme mate-settings-daemon-devel polkit-devel
- upower-devel wireless_tools-devel"
+ upower-devel wireless_tools-devel libnl3-devel"
 depends="mate-icon-theme"
 short_desc="Applets for MATE panel"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="skmpz <dem.procopiou@gmail.com>"
 license="GPL-2.0-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/mate-applets/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=d76f6be9aa19451b52b4f354d9f846a572810c40c27eb2df3d01cc353a89e040
+checksum=b7e0439b4e0c754233c2988644faa3f6ab6270970061b7a0c635d68d236fc977
 replaces="mate-applets-data>=0"
 
 case "$XBPS_TARGET_MACHINE" in

From c93237ce8a5ea450401ccf0e86aeeb9f4c0cbfdc Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:27:22 +0400
Subject: [PATCH 12/38] mate-backgrounds: update to 1.26.0.

---
 srcpkgs/mate-backgrounds/template | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/mate-backgrounds/template b/srcpkgs/mate-backgrounds/template
index d2bb23c7a30d..c33b9cb4db5c 100644
--- a/srcpkgs/mate-backgrounds/template
+++ b/srcpkgs/mate-backgrounds/template
@@ -1,6 +1,6 @@
 # Template file for 'mate-backgrounds'
 pkgname=mate-backgrounds
-version=1.24.2
+version=1.26.0
 revision=1
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool itstool"
@@ -8,5 +8,6 @@ short_desc="Background images and data for MATE"
 maintainer="skmpz <dem.procopiou@gmail.com>"
 license="GPL-2.0-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/mate-backgrounds/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=e5bea10c346bf527508fe4c94e4b34785434dc5cf93d72571425b751e916abc7
+checksum=0dc9127224ae1573301cfa0aaa6c6262827072d2bf6e5c67c9e1aae19f85e90c

From 0ef62d45af5e9a0cd24694e3859f05843dd96eb2 Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:28:00 +0400
Subject: [PATCH 13/38] mate-calc: update to 1.26.0.

---
 srcpkgs/mate-calc/template | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/mate-calc/template b/srcpkgs/mate-calc/template
index 9088f46c01d5..e45ee7e9c338 100644
--- a/srcpkgs/mate-calc/template
+++ b/srcpkgs/mate-calc/template
@@ -1,13 +1,14 @@
 # Template file for 'mate-calc'
 pkgname=mate-calc
-version=1.24.1
+version=1.26.0
 revision=1
 build_style=gnu-configure
 hostmakedepends="glib-devel intltool itstool pkg-config"
-makedepends="gtk+3-devel"
+makedepends="gtk+3-devel mpfr-devel libmpc-devel"
 short_desc="MATE Calculator"
 maintainer="Álvaro Castillo <midgoon@gmail.com>"
 license="GPL-2.0-or-later"
 homepage="https://mate-desktop.org/"
+changelog="https://raw.githubusercontent.com/mate-desktop/mate-calc/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=5c2d1b0101c087c3fdae143058994a76093590693a33392bc2329756708dad46
+checksum=7eb826801dda5d7b070e41d9e831df2ad24459be6c96fe9c0506c21e1374ad55

From 95a6dedfc854dbc14a099c4777e440cb9430c7a1 Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:28:16 +0400
Subject: [PATCH 14/38] mate-common: update to 1.26.0.

---
 srcpkgs/mate-common/template | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/mate-common/template b/srcpkgs/mate-common/template
index 7afe80ba44a2..1f85f1f47f7b 100644
--- a/srcpkgs/mate-common/template
+++ b/srcpkgs/mate-common/template
@@ -1,13 +1,14 @@
 # Template file for 'mate-common'
 pkgname=mate-common
-version=1.24.2
+version=1.26.0
 revision=1
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool itstool"
 depends="automake libtool intltool pkg-config gtk-doc gettext-devel glib-devel yelp-tools"
 short_desc="Common development macros for MATE"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="skmpz <dem.procopiou@gmail.com>"
 license="GPL-3.0-or-later, LGPL-2.1-or-later"
 homepage="http://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/mate-common/master/NEWS"
 distfiles="http://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=71d2013f5743c71e10e04f3c2205d3bb8db1ddb26954a4197801cb5b3c152b6b
+checksum=4ec9e308ef7ea87435769976b5bd7e41d612be2357a91bd0fed3557cb1bb9c04

From d9b9230b86180622847ec24dee3d5027d2e227f7 Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:28:30 +0400
Subject: [PATCH 15/38] mate-control-center: update to 1.26.0.

---
 srcpkgs/mate-control-center/template | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/mate-control-center/template b/srcpkgs/mate-control-center/template
index 513812986a2b..4f83fd8e1a84 100644
--- a/srcpkgs/mate-control-center/template
+++ b/srcpkgs/mate-control-center/template
@@ -1,6 +1,6 @@
 # Template file for 'mate-control-center'
 pkgname=mate-control-center
-version=1.24.2
+version=1.26.0
 revision=1
 build_style=gnu-configure
 configure_args="--disable-static --disable-schemas-compile --disable-update-mimedb"
@@ -14,8 +14,9 @@ short_desc="Control Center for MATE"
 maintainer="skmpz <dem.procopiou@gmail.com>"
 license="GPL-2.0-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/mate-control-center/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=69d8c633a73a4f503501a6bd03f81f230c26835110bb02942a735842d9c47aa3
+checksum=286714ea778f6540fe74ef00aaf504c47141518d26ab224994f4a1af36b0134a
 
 post_install() {
 	rm -f ${DESTDIR}/usr/share/applications/mimeinfo.cache

From 2041131f19fd2700ad666d517861c881e2f5f556 Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:28:42 +0400
Subject: [PATCH 16/38] mate-desktop: update to 1.26.0.

---
 srcpkgs/mate-desktop/template | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/mate-desktop/template b/srcpkgs/mate-desktop/template
index 42224e430206..730707b276c0 100644
--- a/srcpkgs/mate-desktop/template
+++ b/srcpkgs/mate-desktop/template
@@ -1,11 +1,10 @@
 # Template file for 'mate-desktop'
 pkgname=mate-desktop
-version=1.24.1
+version=1.26.0
 revision=1
 build_style=gnu-configure
 build_helper="gir"
-configure_args="--disable-static --enable-mpaste
- --disable-schemas-compile $(vopt_enable gir introspection)"
+configure_args="--disable-static --disable-schemas-compile $(vopt_enable gir introspection)"
 hostmakedepends="pkg-config intltool itstool glib-devel librsvg-utils"
 makedepends="gtk+3-devel dconf-devel libXrandr-devel startup-notification-devel"
 depends="dconf hicolor-icon-theme dejavu-fonts-ttf"
@@ -13,8 +12,9 @@ short_desc="Library with common API for various MATE modules"
 maintainer="skmpz <dem.procopiou@gmail.com>"
 license="GPL-2.0-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/mate-desktop/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=d1e8cfae3828d8f083d624b1bfaa332a68ff37c145286432e9e6875a916da1d9
+checksum=5f7c6b9b88886cb3393b3ffd57f9e9ec29f03a3c23ce8d4b45292de0aa4652a3
 
 # Package build options
 build_options="gir"

From a0420d3b529b26d18cf4ec22e6591e7a7a1900bc Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:28:58 +0400
Subject: [PATCH 17/38] mate-icon-theme: update to 1.26.0.

---
 srcpkgs/mate-icon-theme/template | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/mate-icon-theme/template b/srcpkgs/mate-icon-theme/template
index 9d1892344e4a..42973b71275c 100644
--- a/srcpkgs/mate-icon-theme/template
+++ b/srcpkgs/mate-icon-theme/template
@@ -1,17 +1,18 @@
 # Template file for 'mate-icon-theme'
 pkgname=mate-icon-theme
-version=1.24.0
-revision=2
+version=1.26.0
+revision=1
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool itstool icon-naming-utils"
 makedepends="icon-naming-utils"
 depends="gtk-update-icon-cache hicolor-icon-theme"
 short_desc="MATE icon theme"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="skmpz <dem.procopiou@gmail.com>"
 license="CC-BY-SA-3.0"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/mate-icon-theme/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=ca9e5387439fcf7eed53eb33f10a6d3ae51b4d96af525eed6f8cf31d83f95428
+checksum=41f50436d57f425e54fd9557541be77fb291e03aacd55f7991c042e84a290a5a
 
 post_install() {
 	rm -f ${DESTDIR}/usr/share/icons/mate/icon-theme.cache

From b06bbf3345ee6c49c0ff20b5a0b8eee2906bf2e6 Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:29:14 +0400
Subject: [PATCH 18/38] mate-indicator-applet: update to 1.26.0.

---
 srcpkgs/mate-indicator-applet/template | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/mate-indicator-applet/template b/srcpkgs/mate-indicator-applet/template
index 676c2ee2440f..cd2f426086fe 100644
--- a/srcpkgs/mate-indicator-applet/template
+++ b/srcpkgs/mate-indicator-applet/template
@@ -1,13 +1,15 @@
 # Template file for 'mate-indicator-applet'
 pkgname=mate-indicator-applet
-version=1.24.0
+version=1.26.0
 revision=1
 build_style=gnu-configure
+configure_args="--disable-static"
 hostmakedepends="pkg-config gettext intltool"
 makedepends="gtk+3-devel libX11-devel libmate-panel-devel libindicator-devel"
 short_desc="MATE applet to display information from various applications"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="skmpz <dem.procopiou@gmail.com>"
 license="GPL-3.0-or-later, LGPL-2.1-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/mate-indicator-applet/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=8eab3f66a027c971d8c7a92b69e595fe0edec0e568610e0071c54358f4daf754
+checksum=e4fbfbede0e58ff7503ead66a3e044ca0f3411a4fd9b552d66e2293a5c828e90

From d847cfa29b58609b7fa2f96b62367010e68efacc Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:29:27 +0400
Subject: [PATCH 19/38] mate-media: update to 1.26.0.

---
 srcpkgs/mate-media/template | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/mate-media/template b/srcpkgs/mate-media/template
index 53e1641a8556..289bddd0dc4f 100644
--- a/srcpkgs/mate-media/template
+++ b/srcpkgs/mate-media/template
@@ -1,6 +1,6 @@
 # Template file for 'mate-media'
 pkgname=mate-media
-version=1.24.1
+version=1.26.0
 revision=1
 build_style=gnu-configure
 configure_args="--disable-static"
@@ -8,8 +8,9 @@ hostmakedepends="pkg-config intltool glib-devel"
 makedepends="libcanberra-devel mate-desktop-devel libmatemixer-devel libmate-panel-devel"
 depends="sound-theme-freedesktop"
 short_desc="MATE Media Tools"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="skmpz <dem.procopiou@gmail.com>"
 license="GPL-2.0-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/mate-media/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=222d75d6105a2665f7f0f5e44480917223eca6fc120eebd673703c1105271185
+checksum=8b731b203fd8219ccc2f2ced40e4301823a17f7940acf3cec72b4494a3fe3c3a

From 532eb4d18f864edc4bf56b83642615d7ddffdc40 Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:29:39 +0400
Subject: [PATCH 20/38] mate-menus: update to 1.26.0.

---
 srcpkgs/mate-menus/template | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/mate-menus/template b/srcpkgs/mate-menus/template
index f68aa451db93..dd84f983c95c 100644
--- a/srcpkgs/mate-menus/template
+++ b/srcpkgs/mate-menus/template
@@ -1,6 +1,6 @@
 # Template file for 'mate-menus'
 pkgname=mate-menus
-version=1.24.1
+version=1.26.0
 revision=1
 build_style=gnu-configure
 build_helper="gir"
@@ -8,11 +8,12 @@ configure_args="--disable-static"
 hostmakedepends="pkg-config intltool itstool $(vopt_if gir gobject-introspection)"
 makedepends="libglib-devel"
 short_desc="MATE menu specifications"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="skmpz <dem.procopiou@gmail.com>"
 license="GPL-2.0-or-later, LGPL-2.0-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/mate-menus/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=5a295f5403136f9cfbe0fcf567e48e624c8e01a73ca20f8685d34b12ac4bec9f
+checksum=0309964abd813053368ac4fc446898d27cdb019e894e78cea75751a68871ffe4
 
 build_options="gir"
 build_options_default="gir"

From 31eaf7411d5810f25e23d05af5fef5d31fd21baf Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:30:03 +0400
Subject: [PATCH 21/38] mate-netbook: update to 1.26.0.

---
 srcpkgs/mate-netbook/template | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/mate-netbook/template b/srcpkgs/mate-netbook/template
index 75366db27060..dc18118ed9d5 100644
--- a/srcpkgs/mate-netbook/template
+++ b/srcpkgs/mate-netbook/template
@@ -1,13 +1,14 @@
 # Template file for 'mate-netbook'
 pkgname=mate-netbook
-version=1.24.0
+version=1.26.0
 revision=1
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool glib-devel"
 makedepends="libmate-panel-devel libXtst-devel libwnck-devel libfakekey-devel"
 short_desc="MATE netbook extension"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="skmpz <dem.procopiou@gmail.com>"
 license="GPL-3.0-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/mate-netbook/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=48a1d4b88be09da420d10905dd07934a23781d86211e75afdb13b357f04bb3ae
+checksum=e3bf1b6d9fb266600db408fd9ce97d4a4d3b29586853d4ea46547b6793f1ed89

From 3202a150eb030eb5528eca8e4f2d8ca664ffc172 Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:30:19 +0400
Subject: [PATCH 22/38] mate-notification-daemon: update to 1.26.0.

---
 srcpkgs/mate-notification-daemon/template | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/mate-notification-daemon/template b/srcpkgs/mate-notification-daemon/template
index da41832c1153..983a03ccf396 100644
--- a/srcpkgs/mate-notification-daemon/template
+++ b/srcpkgs/mate-notification-daemon/template
@@ -1,15 +1,17 @@
 # Template file for 'mate-notification-daemon'
 pkgname=mate-notification-daemon
-version=1.24.2
+version=1.26.0
 revision=1
 build_style=gnu-configure
-configure_args="--disable-static"
+configure_args="--disable-static --disable-schemas-compile --enable-wayland"
 hostmakedepends="pkg-config intltool glib-devel dbus-glib-devel libxml2"
-makedepends="libnotify-devel dbus-glib-devel libwnck-devel libcanberra-devel"
+makedepends="libnotify-devel dbus-glib-devel libwnck-devel libcanberra-devel
+ mate-desktop-devel libmate-panel-devel gtk-layer-shell-devel"
 depends="dconf hicolor-icon-theme desktop-file-utils"
 short_desc="Notification daemon for MATE"
 maintainer="skmpz <dem.procopiou@gmail.com>"
 license="GPL-2.0-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=58a4193ef8b36024ec0035c3e48e2a08d87c569260317ffef6f12f665048ae0a
+checksum=b23c6581f8f5916d6a16584edd91c2e4b6d0db7dd8e1eec5dd360acf2834b9ba

From a30e2f01a85ca5cc17a54fd7cb8f1d2d4af11a91 Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:30:29 +0400
Subject: [PATCH 23/38] mate-panel: update to 1.26.0.

---
 srcpkgs/mate-panel/template | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/mate-panel/template b/srcpkgs/mate-panel/template
index 8241e191d40c..c11e37f27ad5 100644
--- a/srcpkgs/mate-panel/template
+++ b/srcpkgs/mate-panel/template
@@ -1,23 +1,24 @@
 # Template file for 'mate-panel'
 pkgname=mate-panel
-version=1.24.2
+version=1.26.0
 revision=1
 build_style=gnu-configure
 build_helper="gir"
-configure_args="--disable-static --disable-schemas-compile
+configure_args="--disable-static --disable-schemas-compile --enable-wayland
  $(vopt_enable gir introspection)"
 hostmakedepends="glib-devel intltool itstool pkg-config
  $(vopt_if gir 'gobject-introspection')"
 makedepends="dbus-glib-devel libSM-devel libcaja-devel libcanberra-devel
  libmarco-devel libmateweather-devel librsvg-devel libwnck-devel
- mate-desktop-devel mate-menus-devel"
+ mate-desktop-devel mate-menus-devel wayland-devel gtk-layer-shell-devel"
 depends="caja marco mate-session-manager"
 short_desc="MATE Panel"
 maintainer="skmpz <dem.procopiou@gmail.com>"
 license="GPL-2.0-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/mate-panel/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=30c5ba0392ec76b110220ee6d10bbdba76af36586592a6b3d604db70602848ea
+checksum=092e1ed2177b3a13cfb7df19667b06083009210e48294c18c8a68b9b3c47ea64
 
 build_options="gir"
 build_options_default="gir"

From 0f2e2e388793b72f9e12100714e2f6e90d9603e8 Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:30:43 +0400
Subject: [PATCH 24/38] mate-polkit: update to 1.26.0.

---
 srcpkgs/mate-polkit/template | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/mate-polkit/template b/srcpkgs/mate-polkit/template
index fef702b7d618..1c132efd9a42 100644
--- a/srcpkgs/mate-polkit/template
+++ b/srcpkgs/mate-polkit/template
@@ -1,14 +1,15 @@
 # Template file for 'mate-polkit'
 pkgname=mate-polkit
-version=1.24.0
+version=1.26.0
 revision=1
 build_style=gnu-configure
 configure_args="--disable-static"
 hostmakedepends="pkg-config intltool"
 makedepends="gtk+3-devel polkit-devel"
 short_desc="PolicyKit integration for the MATE desktop"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="skmpz <dem.procopiou@gmail.com>"
 license="LGPL-2.0-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/mate-polkit/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=76bf1133a22d0772bff02c34d6178ef73826a400415294541f9e6f4b3f5ea090
+checksum=ada57812add0dff4b03ed03adb467c3a9e59e179c1cf52451988065a04d8724e

From 2ec3ec52a6d07802e403d2093f97aebdab4a7711 Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:31:01 +0400
Subject: [PATCH 25/38] mate-power-manager: update to 1.26.0.

---
 srcpkgs/mate-power-manager/patches/musl.patch | 84 -------------------
 srcpkgs/mate-power-manager/template           | 12 +--
 2 files changed, 6 insertions(+), 90 deletions(-)
 delete mode 100644 srcpkgs/mate-power-manager/patches/musl.patch

diff --git a/srcpkgs/mate-power-manager/patches/musl.patch b/srcpkgs/mate-power-manager/patches/musl.patch
deleted file mode 100644
index 827698b4c9fb..000000000000
--- a/srcpkgs/mate-power-manager/patches/musl.patch
+++ /dev/null
@@ -1,84 +0,0 @@
---- a/src/egg-debug.c	2015-11-07 07:50:36.623167156 +0100
-+++ b/src/egg-debug.c	2015-11-07 07:51:46.719072134 +0100
-@@ -39,7 +39,9 @@
- #include <sys/stat.h>
- #include <fcntl.h>
- #include <time.h>
-+#ifdef __GLIBC__
- #include <execinfo.h>
-+#endif
- 
- #include "egg-debug.h"
- 
-@@ -78,6 +80,7 @@ pk_set_console_mode (guint console_code)
- void
- egg_debug_backtrace (void)
- {
-+#ifdef __GLIBC__
- 	void *call_stack[512];
- 	int  call_stack_size;
- 	char **symbols;
-@@ -95,6 +98,7 @@ egg_debug_backtrace (void)
- 		pk_set_console_mode (CONSOLE_RESET);
- 		free (symbols);
- 	}
-+#endif
- }
- 
- /**
---- a/applets/brightness/egg-debug.c	2015-11-07 07:52:33.320008962 +0100
-+++ b/applets/brightness/egg-debug.c	2015-11-07 07:53:09.302960183 +0100
-@@ -39,7 +39,9 @@
- #include <sys/stat.h>
- #include <fcntl.h>
- #include <time.h>
-+#ifdef __GLIBC__
- #include <execinfo.h>
-+#endif
- 
- #include "egg-debug.h"
- 
-@@ -78,6 +80,7 @@ pk_set_console_mode (guint console_code)
- void
- egg_debug_backtrace (void)
- {
-+#ifdef __GLIBC__
- 	void *call_stack[512];
- 	int  call_stack_size;
- 	char **symbols;
-@@ -95,6 +98,7 @@ egg_debug_backtrace (void)
- 		pk_set_console_mode (CONSOLE_RESET);
- 		free (symbols);
- 	}
-+#endif
- }
- 
- /**
---- a/applets/inhibit/egg-debug.c	2015-11-07 07:53:32.815928309 +0100
-+++ b/applets/inhibit/egg-debug.c	2015-11-07 07:53:55.503897553 +0100
-@@ -39,7 +39,9 @@
- #include <sys/stat.h>
- #include <fcntl.h>
- #include <time.h>
-+#ifdef __GLIBC__
- #include <execinfo.h>
-+#endif
- 
- #include "egg-debug.h"
- 
-@@ -78,6 +80,7 @@ pk_set_console_mode (guint console_code)
- void
- egg_debug_backtrace (void)
- {
-+#ifdef __GLIBC__
- 	void *call_stack[512];
- 	int  call_stack_size;
- 	char **symbols;
-@@ -95,6 +98,7 @@ egg_debug_backtrace (void)
- 		pk_set_console_mode (CONSOLE_RESET);
- 		free (symbols);
- 	}
-+#endif
- }
- 
- /**
diff --git a/srcpkgs/mate-power-manager/template b/srcpkgs/mate-power-manager/template
index 4f2f7d77c8f1..50448859e863 100644
--- a/srcpkgs/mate-power-manager/template
+++ b/srcpkgs/mate-power-manager/template
@@ -1,17 +1,17 @@
 # Template file for 'mate-power-manager'
 pkgname=mate-power-manager
-version=1.24.2
+version=1.26.0
 revision=1
 build_style=gnu-configure
 configure_args="--disable-schemas-compile"
-hostmakedepends="pkg-config intltool itstool libtool glib-devel dbus-glib-devel
- polkit"
+hostmakedepends="pkg-config intltool itstool libtool glib-devel dbus-glib-devel polkit"
 makedepends="libcanberra-devel libgnome-keyring-devel libmate-panel-devel
- libnotify-devel upower-devel"
+ libnotify-devel upower-devel libsecret-devel"
 depends="dconf upower"
 short_desc="Power management tool for the MATE desktop"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="skmpz <dem.procopiou@gmail.com>"
 license="GPL-2.0-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/mate-power-manager/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=d24b9fce23b086817d5494f7e65e58f18367af6eb5d0d4ade45de5396e20d13a
+checksum=26b603ccf077366414a41e91ca6aa4c4c227a8e9fb6925a8ec5ca147c4e67b79

From 99a59c3562c8d41476ed6ece06479c62381f706d Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:31:25 +0400
Subject: [PATCH 26/38] mate-screensaver: update to 1.26.0.

---
 srcpkgs/mate-screensaver/template | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/mate-screensaver/template b/srcpkgs/mate-screensaver/template
index 46d34246fa35..252934fdf1d1 100644
--- a/srcpkgs/mate-screensaver/template
+++ b/srcpkgs/mate-screensaver/template
@@ -1,20 +1,21 @@
 # Template file for 'mate-screensaver'
 pkgname=mate-screensaver
-version=1.24.1
+version=1.26.0
 revision=1
 build_style=gnu-configure
-configure_args="--without-console-kit"
+configure_args="--without-console-kit --without-systemd --with-elogind"
 hostmakedepends="pkg-config intltool itstool glib-devel"
 makedepends="dbus-glib-devel libnotify-devel libXScrnSaver-devel
  libmatekbd-devel mate-menus-devel mate-desktop-devel pam-devel
 elogind-devel"
 depends="mate-desktop mate-session-manager"
 short_desc="Screensaver for MATE"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="skmpz <dem.procopiou@gmail.com>"
 license="GPL-2.0-or-later, LGPL-2.0-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/mate-screensaver/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=bc0925002fccb2de3b36cc37b16ad2becf994c61260dfc5b4930fcedc50fab46
+checksum=41514032206da2a62105ead90fdce95639d5ea234d1e67d533fd4c5b56feaf76
 
 post_install() {
 	vinstall ${FILESDIR}/${pkgname}.pam 644 etc/pam.d ${pkgname}

From e7151a09ed7562508a3d507a0df454aaa6219c93 Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:31:40 +0400
Subject: [PATCH 27/38] mate-sensors-applet: update to 1.26.0.

---
 srcpkgs/mate-sensors-applet/template | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/mate-sensors-applet/template b/srcpkgs/mate-sensors-applet/template
index ba0971aeffd4..3ddf97ba9b23 100644
--- a/srcpkgs/mate-sensors-applet/template
+++ b/srcpkgs/mate-sensors-applet/template
@@ -1,6 +1,6 @@
 # Template file for 'mate-sensors-applet'
 pkgname=mate-sensors-applet
-version=1.24.1
+version=1.26.0
 revision=1
 build_style=gnu-configure
 configure_args="--disable-schemas-compile --disable-static"
@@ -9,8 +9,9 @@ makedepends="dbus-glib-devel libatasmart-devel libmate-panel-devel
  libnotify-devel libsensors-devel"
 depends="dconf"
 short_desc="Sensors applet for MATE"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="skmpz <dem.procopiou@gmail.com>"
 license="GPL-2.0-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/mate-sensors-applet/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=262c494b207e615656d8d8723946d11beb705fbf9f0166eb3dbb7a56877764d9
+checksum=4c437c3ff04488543e2cf0c4627fe265c48b4ad8f4946fd9de9845edc0c82968

From 969b5e047f4e46706bb12ddae7be45a2190868a2 Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:31:56 +0400
Subject: [PATCH 28/38] mate-session-manager: update to 1.26.0.

---
 srcpkgs/mate-session-manager/template | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/mate-session-manager/template b/srcpkgs/mate-session-manager/template
index 7be98f824528..ad76047358f1 100644
--- a/srcpkgs/mate-session-manager/template
+++ b/srcpkgs/mate-session-manager/template
@@ -1,14 +1,15 @@
 # Template file for 'mate-session-manager'
 pkgname=mate-session-manager
-version=1.24.3
+version=1.26.0
 revision=1
 build_style=gnu-configure
-configure_args="--disable-static --with-elogind"
+configure_args="--disable-static --with-elogind --without-systemd"
 hostmakedepends="pkg-config intltool glib-devel dbus-glib-devel elogind-devel"
 makedepends="gtk+3-devel dbus-glib-devel libSM-devel libXtst-devel"
 short_desc="MATE Session Manager"
 maintainer="skmpz <dem.procopiou@gmail.com>"
 license="GPL-2.0-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/mate-session-manager/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=90a0aec5b59b6287b4d2c4d452b0b6410f9d12490ca1f890e81ba2801bdab0a2
+checksum=5915a2f6583c0e5e58afb3abae3f4adbbe6a003c174a5b6e3d204b4e398a1816

From ccd1f28773479e4e99b21a76873715318979c47c Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:32:14 +0400
Subject: [PATCH 29/38] mate-settings-daemon: update to 1.26.0.

---
 srcpkgs/mate-settings-daemon/template | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/mate-settings-daemon/template b/srcpkgs/mate-settings-daemon/template
index 010361166854..b5db461e136b 100644
--- a/srcpkgs/mate-settings-daemon/template
+++ b/srcpkgs/mate-settings-daemon/template
@@ -1,6 +1,6 @@
 # Template file for 'mate-settings-daemon'
 pkgname=mate-settings-daemon
-version=1.24.2
+version=1.26.0
 revision=1
 build_style=gnu-configure
 configure_args="--disable-static --disable-schemas-compile --enable-polkit --enable-pulse"
@@ -13,8 +13,9 @@ short_desc="MATE Settings daemon (pulseaudio)"
 maintainer="skmpz <dem.procopiou@gmail.com>"
 license="GPL-2.0-or-later, LGPL-2.1-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/mate-settings-daemon/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=8c25b4f8aba69b9a0597e8759f9ef23f12ac0d3153f3f5b5a6d4afd0733f3914
+checksum=b77aa017ff811a6fcae40bd45f18d8606eec87be21e3e6fa6d35c0fe14e66d41
 
 mate-settings-daemon-devel_package() {
 	depends="${sourcepkg}-${version}_${revision} dbus-glib-devel"

From 52b46014903c14a024da0bc606fdb4eed761069a Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:32:29 +0400
Subject: [PATCH 30/38] mate-system-monitor: update to 1.26.0.

---
 srcpkgs/mate-system-monitor/template | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/mate-system-monitor/template b/srcpkgs/mate-system-monitor/template
index ceada7658151..54c77a5e3914 100644
--- a/srcpkgs/mate-system-monitor/template
+++ b/srcpkgs/mate-system-monitor/template
@@ -1,15 +1,16 @@
 # Template file for 'mate-system-monitor'
 pkgname=mate-system-monitor
-version=1.24.1
+version=1.26.0
 revision=1
 build_style=gnu-configure
+configure_args="--disable-static --disable-schemas-compile"
 hostmakedepends="glib-devel intltool itstool pkg-config polkit"
-makedepends="dbus-glib-devel gtkmm-devel libgtop-devel librsvg-devel
- libwnck-devel"
+makedepends="dbus-glib-devel gtkmm-devel libgtop-devel librsvg-devel libwnck-devel"
 depends="dbus mate-icon-theme"
 short_desc="MATE system monitor"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="skmpz <dem.procopiou@gmail.com>"
 license="GPL-2.0-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/mate-system-monitor/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=1fa384fae8be0384dbfa7bb32acdbda977745185e59570bd3869ea6e382559c4
+checksum=83472c3add79e52b2fb3c1bc55f33f968c71a2b90e2b62027ad688c1cecc338f

From d621474ee367fd6b06476c7def1765b4fcafb028 Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:32:44 +0400
Subject: [PATCH 31/38] mate-terminal: update to 1.26.0.

---
 srcpkgs/mate-terminal/template | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/mate-terminal/template b/srcpkgs/mate-terminal/template
index c8bf685d82aa..5809ac48d0b9 100644
--- a/srcpkgs/mate-terminal/template
+++ b/srcpkgs/mate-terminal/template
@@ -1,6 +1,6 @@
 # Template file for 'mate-terminal'
 pkgname=mate-terminal
-version=1.24.1
+version=1.26.0
 revision=1
 build_style=gnu-configure
 hostmakedepends="glib-devel intltool itstool pkg-config"
@@ -10,5 +10,6 @@ short_desc="MATE Terminal Emulator"
 maintainer="skmpz <dem.procopiou@gmail.com>"
 license="GPL-3.0-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/mate-terminal/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=550d38f223d21ab12d39b00af6cd75f083d3790c38d53051537df2ac6a87be62
+checksum=7727e714c191c3c55e535e30931974e229ca5128e052b62ce74dcc18f7eaaf22

From 45e28e3d187162a3df847384f8dabfa4ef0d80a5 Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:33:20 +0400
Subject: [PATCH 32/38] mate-themes: update to 3.22.22.

---
 srcpkgs/mate-themes/template | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/mate-themes/template b/srcpkgs/mate-themes/template
index fc9edc93ff0b..145b272be28e 100644
--- a/srcpkgs/mate-themes/template
+++ b/srcpkgs/mate-themes/template
@@ -1,15 +1,15 @@
 # Template file for 'mate-themes'
 pkgname=mate-themes
-version=3.22.21
-revision=2
+version=3.22.22
+revision=1
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool itstool icon-naming-utils"
 makedepends="gtk+-devel gtk+3-devel"
 depends="gtk2-engines gtk-engine-murrine librsvg mate-icon-theme"
 short_desc="Default themes for the MATE desktop"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="skmpz <dem.procopiou@gmail.com>"
 license="LGPL-2.1-or-later"
 homepage="https://mate-desktop.org"
 changelog="https://raw.githubusercontent.com/mate-desktop/mate-themes/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/themes/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=d668c578fd10d6e2a46932df1cb8852f77923193f0b88fb327e89d80f0162f14
+checksum=bd00affe5aec217656c0af21496a4c66fd5f6f3e9e93b42fc96b54771d6f99a1

From e1f65672b269ed5d92cdc575aa8d6a022b7614d5 Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:33:39 +0400
Subject: [PATCH 33/38] mate-user-guide: update to 1.26.0.

---
 srcpkgs/mate-user-guide/template | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/mate-user-guide/template b/srcpkgs/mate-user-guide/template
index a4b5664333b6..a0b4994c783f 100644
--- a/srcpkgs/mate-user-guide/template
+++ b/srcpkgs/mate-user-guide/template
@@ -1,12 +1,13 @@
 # Template file for 'mate-user-guide'
 pkgname=mate-user-guide
-version=1.24.0
-revision=2
+version=1.26.0
+revision=1
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool itstool"
 short_desc="MATE User Guide"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="skmpz <dem.procopiou@gmail.com>"
 license="GFDL-1.1-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/mate-user-guide/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=ee344d5e8170cd4c366c3a8f98f941f066f12b079ae2d50af2bbf94890f2bd35
+checksum=0581d45053e9a1c16925c3154341b5b21140905a22b1bd3caa84619f9f05c2c0

From 8c7381a580e63f24f7134e7334e8fa5c400bf6e3 Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:33:52 +0400
Subject: [PATCH 34/38] mate-utils: update to 1.26.0.

---
 .../mate-utils/patches/cross-strftime.patch   | 47 -------------------
 srcpkgs/mate-utils/template                   | 15 ++----
 2 files changed, 5 insertions(+), 57 deletions(-)
 delete mode 100644 srcpkgs/mate-utils/patches/cross-strftime.patch

diff --git a/srcpkgs/mate-utils/patches/cross-strftime.patch b/srcpkgs/mate-utils/patches/cross-strftime.patch
deleted file mode 100644
index 971af91c61ef..000000000000
--- a/srcpkgs/mate-utils/patches/cross-strftime.patch
+++ /dev/null
@@ -1,47 +0,0 @@
---- a/configure.ac	2015-09-01 15:56:57.000000000 +0200
-+++ b/configure.ac	2015-10-23 15:09:25.486599085 +0200
-@@ -277,24 +277,32 @@ AS_IF([test "x$have_ipv6" = "xyes"],
-       ]
- )
- 
--
--dnl strftime extension checks
--AC_TRY_RUN([
-+dnl ***************************************
-+dnl *** Check for strftime() extensions ***
-+dnl ***************************************
-+AC_CACHE_CHECK([Define if strftime supports %E and %O modifiers], ac_cv_strftime_extensions,
-+  [AC_TRY_RUN([
-+    #include <string.h>
-   #include <time.h>
--  int main (void) {
--    char buf[100];
--    struct tm tm = {0};
--    tm.tm_year = 99;
--    if (strftime(buf, 100, "%EY", &tm) == 4 && strcmp (buf, "1999")==0)
-+    int
-+    main (int argc, char **argv)
-+    {
-+      struct tm tm;
-+      char      buffer[16];
-+      tm.tm_year = 81;
-+      if (strftime (buffer, 16, "%EY", &tm) == 4 && strcmp (buffer, "1981") == 0)
-       return 0;
-     return 1;
-   }
-   ],
--  [
--    AC_DEFINE([HAVE_STRFTIME_EXTENSION], [1],
--              [Define if strftime supports %E and %O modifiers.])
--  ]
-+  ac_cv_strftime_extensions=yes,
-+  ac_cv_strftime_extensions=no,
-+  [AC_MSG_ERROR([cross-compiling, preset ac_cv_strftime_extensions=yes/no])]
-+  )]
- )
-+if test x"$ac_cv_strftime_extensions" = x"yes"; then
-+  AC_DEFINE([HAVE_STRFTIME_EXTENSION], 1, [Define if strftime supports %E and %O modifiers.])
-+fi
- 
- dnl mate-search-tool checks
- withval=""
diff --git a/srcpkgs/mate-utils/template b/srcpkgs/mate-utils/template
index 855db8054d4d..dcddebe79e33 100644
--- a/srcpkgs/mate-utils/template
+++ b/srcpkgs/mate-utils/template
@@ -1,25 +1,20 @@
 # Template file for 'mate-utils'
 pkgname=mate-utils
-version=1.24.0
+version=1.26.0
 revision=1
 build_style=gnu-configure
 configure_args="--disable-static --disable-schemas-compile"
-hostmakedepends="automake libtool gettext-devel pkg-config which
- intltool itstool glib-devel mate-common librsvg-utils inkscape
- autoconf-archive"
+hostmakedepends="pkg-config intltool itstool glib-devel librsvg-utils inkscape"
 makedepends="gtk+3-devel libSM-devel zlib-devel libcanberra-devel
  libgtop-devel libmate-panel-devel udisks2-devel"
 depends="desktop-file-utils"
 short_desc="Common utilities for the MATE desktop"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="skmpz <dem.procopiou@gmail.com>"
 license="GPL-2.0-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/mate-utils/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=219673047fe2a14eb9c8bc23a5fb7c99d45e7acad4c05b4bf59a3d244cb026ac
-
-pre_configure() {
-	NOCONFIGURE=1 ./autogen.sh
-}
+checksum=7ca56ab242e8efaa64f93ffb84f6e4bf8d4d0df01e20b3b6ef8956ce3192782e
 
 post_install() {
 	rm -r ${DESTDIR}/usr/include

From a18bb2c1d1645852b031136c5ee2cb20d35787e5 Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:34:01 +0400
Subject: [PATCH 35/38] mozo: update to 1.26.0.

---
 srcpkgs/mozo/template | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/mozo/template b/srcpkgs/mozo/template
index 3f6ab9cb745a..1c578504c085 100644
--- a/srcpkgs/mozo/template
+++ b/srcpkgs/mozo/template
@@ -1,14 +1,15 @@
 # Template file for 'mozo'
 pkgname=mozo
-version=1.24.0
-revision=2
+version=1.26.0
+revision=1
 build_style=gnu-configure
 hostmakedepends="intltool itstool pkg-config"
 makedepends="glib-devel mate-menus-devel python3-gobject-devel"
 depends="desktop-file-utils gtk+3 mate-menus python3-gobject"
 short_desc="MATE menu editing tool"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="skmpz <dem.procopiou@gmail.com>"
 license="LGPL-2.1-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/mozo/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/mozo-${version}.tar.xz"
-checksum=23ff04f98338f8aa35512666dab898daebb21faeceee55fc02b313a00e899e06
+checksum=4642cbf985fa0d72e205ad7f6abfb7d008e3117e2c5e331340f2bc6466c3ddc2

From 19af1626514c79b599b36bf7106e782127bd4379 Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:34:18 +0400
Subject: [PATCH 36/38] pluma: update to 1.26.0.

---
 srcpkgs/pluma/template | 21 +++++++++------------
 1 file changed, 9 insertions(+), 12 deletions(-)

diff --git a/srcpkgs/pluma/template b/srcpkgs/pluma/template
index 4a689f727b18..78c3a67494b6 100644
--- a/srcpkgs/pluma/template
+++ b/srcpkgs/pluma/template
@@ -1,29 +1,26 @@
 # Template file for 'pluma'
 pkgname=pluma
-version=1.24.1
+version=1.26.0
 revision=1
 build_style=gnu-configure
 build_helper=gir
 pycompile_dirs="usr/lib/pluma/plugins"
-hostmakedepends="autoconf-archive gobject-introspection mate-common
- automake libtool"
-makedepends="enchant2-devel gtksourceview-devel iso-codes libSM-devel
+hostmakedepends="gobject-introspection mate-common automake libtool"
+makedepends="enchant2-devel gtksourceview4-devel iso-codes libSM-devel
  libpeas-devel mate-desktop-devel"
 depends="desktop-file-utils iso-codes zenity mate-desktop"
 short_desc="Powerful text editor for MATE"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="skmpz <dem.procopiou@gmail.com>"
 license="GPL-2.0-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/pluma/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=2e251113afa1af63fb98f28f2b49aea874c5f654a33da3ad12994580882bece9
-python_version=2 #unverified
-
-pre_configure() {
-	autoreconf -fi
-}
+checksum=310644dae7393cf5d47928fd4fab5d120da4e683ecf4fc248fcf778145f08a53
+python_version=3
+make_check=no # needs gsettings-schemas and gvfs-mount
 
 pluma-devel_package() {
-	depends="${sourcepkg}-${version}_${revision} gtksourceview-devel libpeas-devel"
+	depends="${sourcepkg}-${version}_${revision} gtksourceview4-devel libpeas-devel"
 	short_desc+=" - development files"
 	pkg_install() {
 		vmove usr/include

From eae3245dcacf0ac946875e0bf0ef337a50e0f063 Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 15:46:33 +0400
Subject: [PATCH 37/38] mate: update to 1.26.0.

---
 srcpkgs/mate/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/mate/template b/srcpkgs/mate/template
index 791511d8e351..0b661ce6f8d7 100644
--- a/srcpkgs/mate/template
+++ b/srcpkgs/mate/template
@@ -1,6 +1,6 @@
 # Template file for 'mate'
 pkgname=mate
-version=1.24.0
+version=1.26.0
 revision=1
 build_style=meta
 depends="
@@ -22,6 +22,6 @@ depends="
 	elogind
 	zenity"
 short_desc="MATE meta-package for Void Linux"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="skmpz <dem.procopiou@gmail.com>"
 license="GPL-2.0-or-later, LGPL-2.1-or-later"
 homepage="http://www.mate-desktop.org"

From 55bd02516fae4c42623f9d4288bfa4b9eff43c2d Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 15:46:49 +0400
Subject: [PATCH 38/38] mate-extra: update to 1.26.0.

---
 srcpkgs/mate-extra/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/mate-extra/template b/srcpkgs/mate-extra/template
index 1fa661577181..e4466d38f57d 100644
--- a/srcpkgs/mate-extra/template
+++ b/srcpkgs/mate-extra/template
@@ -1,6 +1,6 @@
 # Template file for 'mate-extra'
 pkgname=mate-extra
-version=1.24.0
+version=1.26.0
 revision=1
 build_style=meta
 depends="
@@ -22,6 +22,6 @@ depends="
 	caja-extensions>=${version}
 	yelp"
 short_desc="MATE extras meta-package for Void Linux"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="skmpz <dem.procopiou@gmail.com>"
 license="GPL-2.0-or-later, LGPL-2.1-or-later"
 homepage="http://www.mate-desktop.org"

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: mate: update to 1.26.0.
  2021-08-27 13:19 [PR PATCH] mate: update to 1.26.0 skmpz
@ 2021-09-14 18:28 ` mobinmob
  2021-09-14 19:28 ` mobinmob
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: mobinmob @ 2021-09-14 18:28 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 472 bytes --]

New comment by mobinmob on void-packages repository

https://github.com/void-linux/void-packages/pull/32704#issuecomment-919409431

Comment:
Thank you for the update, I am building the packages rn :)

Some comments:

1. The mate template should probably use the same version for mate-backgrounds (>=${version) that is uses for the other packages.
2. I am pretty sure (I 'll test) that mate-menu and brisk menu need a rebuild when the panel/menu packages are updated.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: mate: update to 1.26.0.
  2021-08-27 13:19 [PR PATCH] mate: update to 1.26.0 skmpz
  2021-09-14 18:28 ` mobinmob
@ 2021-09-14 19:28 ` mobinmob
  2021-10-28  4:31 ` [PR PATCH] [Updated] " skmpz
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: mobinmob @ 2021-09-14 19:28 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 407 bytes --]

New comment by mobinmob on void-packages repository

https://github.com/void-linux/void-packages/pull/32704#issuecomment-919451064

Comment:
> 2. I am pretty sure (I 'll test) that mate-menu and brisk menu need a rebuild when the panel/menu packages are updated.

They actually work without a rebuild :)

`mate-tweak` also has an update (21.10.0), but it breaks the panels when changing layouts here.


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PR PATCH] [Updated] mate: update to 1.26.0.
  2021-08-27 13:19 [PR PATCH] mate: update to 1.26.0 skmpz
  2021-09-14 18:28 ` mobinmob
  2021-09-14 19:28 ` mobinmob
@ 2021-10-28  4:31 ` skmpz
  2021-10-28  4:35 ` abenson
  2021-10-28  4:35 ` [PR PATCH] [Closed]: " abenson
  4 siblings, 0 replies; 6+ messages in thread
From: skmpz @ 2021-10-28  4:31 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1792 bytes --]

There is an updated pull request by skmpz against master on the void-packages repository

https://github.com/skmpz/void-packages mate-1.26.0
https://github.com/void-linux/void-packages/pull/32704

mate: update to 1.26.0.
<!-- Mark items with [x] where applicable -->

#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [ ] I built this PR locally for my native architecture, (ARCH-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->

Packages built for
- x86_64
- i686
- aarch64 [cross x86_64]
- armv7l [cross x86_64]
- x86_64-musl
- aarch64-musl [cross x86_64-musl]
- armv6l-musl [cross x86_64-musl]

Tested on x86_64 glibc.

A patch file from https://github.com/void-linux/void-packages/pull/32704.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-mate-1.26.0-32704.patch --]
[-- Type: text/x-diff, Size: 78763 bytes --]

From 46c13e78002446202a7edf709ef1480ffebeca55 Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:21:35 +0400
Subject: [PATCH 01/38] atril: update to 1.26.0.

---
 srcpkgs/atril/patches/disable-synctex.patch | 242 --------------------
 srcpkgs/atril/template                      |  18 +-
 2 files changed, 7 insertions(+), 253 deletions(-)
 delete mode 100644 srcpkgs/atril/patches/disable-synctex.patch

diff --git a/srcpkgs/atril/patches/disable-synctex.patch b/srcpkgs/atril/patches/disable-synctex.patch
deleted file mode 100644
index 2f6d4b7ea476..000000000000
--- a/srcpkgs/atril/patches/disable-synctex.patch
+++ /dev/null
@@ -1,242 +0,0 @@
-From c246af6b85bfb326d10eb56e0d2563138495dfa2 Mon Sep 17 00:00:00 2001
-From: Oz Tiram <oz.tiram@noris.de>
-Date: Fri, 7 Feb 2020 21:57:10 +0100
-Subject: [PATCH] Make synctex optional
-
-Not everyone who reads PDF's is necessarily a LaTeX user.
-These changes allow users to install atril without the huge bagage
-of tex-live on systems where synctex isn't provided as a stand alone
-library.
----
- configure.ac              | 25 +++++++++++++++++--------
- libdocument/ev-document.c | 16 ++++++++++++----
- libview/ev-view.c         |  9 ++++++++-
- shell/ev-window.c         |  5 +++++
- 4 files changed, 42 insertions(+), 13 deletions(-)
-
-diff --git a/configure.ac b/configure.ac
-index 529ef2a0..543808f8 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -361,15 +361,25 @@ AC_SUBST([GIRTYPELIBDIR])
- AM_CONDITIONAL([ENABLE_INTROSPECTION],[test "$enable_introspection" = "yes"])
- 
- dnl ================== libsynctex ===========================================
-+AC_ARG_ENABLE([synctex],
-+  [AS_HELP_STRING([--disable-synctex], [Disable support for synctex])],
-+  [],
-+  [enable_synctex=yes])
- 
--PKG_CHECK_MODULES(SYNCTEX, [synctex >= $SYNCTEX_REQUIRED], has_synctex=yes, has_synctex=no)
- 
--dnl not found? use internal code copy.
--if test "x$has_synctex" = "xno"; then
--        AC_MSG_ERROR("SyncTeX support is disabled since library version $SYNCTEX_REQUIRED or newer not found")
-+if test "$enable_synctex" = "yes"; then
-+  AC_DEFINE([ENABLE_SYNCTEX],[1],[Define if synctex support is enabled])
-+  PKG_CHECK_MODULES(SYNCTEX, [synctex >= $SYNCTEX_REQUIRED], has_synctex=yes, has_synctex=no)
-+  dnl not found? use internal code copy.
-+  if test "x$has_synctex" = "xno"; then
-+          AC_MSG_ERROR("SyncTeX support is disabled since library version $SYNCTEX_REQUIRED or newer not found")
-+  fi
-+  AC_SUBST(SYNCTEX_LIBS)
-+  AC_SUBST(SYNCTEX_CFLAGS)
- fi
--AC_SUBST(SYNCTEX_LIBS)
--AC_SUBST(SYNCTEX_CFLAGS)
-+
-+AM_CONDITIONAL([ENABLE_SYNCTEX], [test "$enable_synctex" = "yes"])
-+
- 
- dnl ================== portability checks ===========================================
- 
-@@ -770,6 +780,7 @@ Configure summary:
-     Tests...............:    $enable_tests
- 
-     PDF Backend.........:    $enable_pdf
-+    Synctex enabled.....:    $enable_synctex
-     PostScript Backend..:    $enable_ps
-     TIFF Backend........:    $enable_tiff
-     DJVU Backend........:    $enable_djvu
-@@ -778,6 +789,4 @@ Configure summary:
-     Comics Backend......:    $enable_comics
-     XPS Backend.........:    $enable_xps
-     ePub Backend........:    $have_webkit
--
--    SyncTeX.............:    $has_synctex
- "
-diff --git a/libdocument/ev-document.c b/libdocument/ev-document.c
-index b713a671..be082aeb 100644
---- a/libdocument/ev-document.c
-+++ b/libdocument/ev-document.c
-@@ -25,7 +25,9 @@
- #include <string.h>
- 
- #include "ev-document.h"
-+#ifdef ENABLE_SYNCTEX
- #include "synctex_parser.h"
-+#endif
- #include "ev-file-helpers.h"
- 
- typedef struct _EvPageSize
-@@ -53,8 +55,9 @@ struct _EvDocumentPrivate
- 	gchar         **page_labels;
- 	EvPageSize     *page_sizes;
- 	EvDocumentInfo *info;
--
-+#ifdef ENABLE_SYNCTEX
- 	synctex_scanner_p synctex_scanner;
-+#endif
- };
- 
- static gint            _ev_document_get_n_pages     (EvDocument *document);
-@@ -124,12 +127,12 @@ ev_document_finalize (GObject *object)
- 		ev_document_info_free (document->priv->info);
- 		document->priv->info = NULL;
- 	}
--
-+#ifdef ENABLE_SYNCTEX
- 	if (document->priv->synctex_scanner) {
- 		synctex_scanner_free (document->priv->synctex_scanner);
- 		document->priv->synctex_scanner = NULL;
- 	}
--
-+#endif
- 	G_OBJECT_CLASS (ev_document_parent_class)->finalize (object);
- }
- 
-@@ -137,8 +140,9 @@ static void
- ev_document_init (EvDocument *document)
- {
- 	document->priv = ev_document_get_instance_private (document);
-+#ifdef ENABLE_SYNCTEX
- 	document->synctex_version = SYNCTEX_VERSION_STRING;
--
-+#endif
- 	/* Assume all pages are the same size until proven otherwise */
- 	document->priv->uniform = TRUE;
- 	/* Assume that the document is not a web document*/
-@@ -336,6 +340,7 @@ ev_document_load (EvDocument  *document,
- 		}
- 
- 		priv->info = _ev_document_get_info (document);
-+#ifdef ENABLE_SYNCTEX
- 		if (_ev_document_support_synctex (document)) {
- 			gchar *filename;
- 
-@@ -346,6 +351,7 @@ ev_document_load (EvDocument  *document,
- 				g_free (filename);
- 			}
- 		}
-+#endif
- 	}
- 
- 	return retval;
-@@ -388,6 +394,7 @@ _ev_document_support_synctex (EvDocument *document)
- 	return klass->support_synctex ? klass->support_synctex (document) : FALSE;
- }
- 
-+#ifdef ENABLE_SYNCTEX
- gboolean
- ev_document_has_synctex (EvDocument *document)
- {
-@@ -492,6 +499,7 @@ ev_document_synctex_forward_search (EvDocument   *document,
- 
-         return result;
- }
-+#endif /* ENABLE_SYNCTEX */
- 
- static gint
- _ev_document_get_n_pages (EvDocument  *document)
-diff --git a/libview/ev-view.c b/libview/ev-view.c
-index a195ba21..e98582d3 100644
---- a/libview/ev-view.c
-+++ b/libview/ev-view.c
-@@ -3210,6 +3210,7 @@ ev_view_remove_annotation (EvView       *view,
-         g_object_unref (annot);
- }
- 
-+#ifdef ENABLE_SYNCTEX
- static gboolean
- ev_view_synctex_backward_search (EvView *view,
- 				 gdouble x,
-@@ -3235,6 +3236,7 @@ ev_view_synctex_backward_search (EvView *view,
- 
- 	return FALSE;
- }
-+#endif
- 
- /* Caret navigation */
- #define CURSOR_ON_MULTIPLIER 2
-@@ -4078,8 +4080,10 @@ ev_view_draw (GtkWidget      *widget,
- 			show_annotation_windows (view, i);
- 		if (page_ready && view->focused_element)
- 			draw_focus (view, cr, i, &clip_rect);
-+#ifdef ENABLE_SYNCTEX
- 		if (page_ready && view->synctex_result)
- 			highlight_forward_search_results (view, cr, i);
-+#endif
- 	}
- 
- 	if (GTK_WIDGET_CLASS (ev_view_parent_class)->draw)
-@@ -4472,9 +4476,10 @@ ev_view_button_press_event (GtkWidget      *widget,
- 			EvFormField *field;
- 			EvMapping *link;
- 			gint page;
--
-+#ifdef ENABLE_SYNCTEX
- 			if (event->state & GDK_CONTROL_MASK)
- 				return ev_view_synctex_backward_search (view, event->x , event->y);
-+#endif
- 
- 			if (EV_IS_SELECTION (view->document) && view->selection_info.selections) {
- 				if (event->type == GDK_3BUTTON_PRESS) {
-@@ -7522,6 +7527,7 @@ ev_view_find_cancel (EvView *view)
- 	view->find_pages = NULL;
- }
- 
-+#ifdef ENABLE_SYNCTEX
- /*** Synctex ***/
- void
- ev_view_highlight_forward_search (EvView       *view,
-@@ -7549,6 +7555,7 @@ ev_view_highlight_forward_search (EvView       *view,
- 	ensure_rectangle_is_visible (view, &view_rect);
- 	gtk_widget_queue_draw (GTK_WIDGET (view));
- }
-+#endif /* ENABLE_SYNCTEX */
- 
- /*** Selections ***/
- static gboolean
-diff --git a/shell/ev-window.c b/shell/ev-window.c
-index e4cbce93..a2da929d 100644
---- a/shell/ev-window.c
-+++ b/shell/ev-window.c
-@@ -7751,6 +7751,8 @@ ev_window_emit_doc_loaded (EvWindow *window)
-         ev_atril_window_emit_document_loaded (window->priv->skeleton, window->priv->uri);
- }
- 
-+
-+#ifdef ENABLE_SYNCTEX
- static gboolean
- handle_sync_view_cb (EvAtrilWindow        *object,
-                      GDBusMethodInvocation *invocation,
-@@ -7771,6 +7773,7 @@ handle_sync_view_cb (EvAtrilWindow        *object,
- 
- 	return TRUE;
- }
-+#endif
- #endif /* ENABLE_DBUS */
- 
- static gboolean
-@@ -7831,9 +7834,11 @@ ev_window_init (EvWindow *ev_window)
-                                                       ev_window->priv->dbus_object_path,
-                                                       &error)) {
-                         ev_window->priv->skeleton = skeleton;
-+#ifdef ENABLE_SYNCTEX
-                         g_signal_connect (skeleton, "handle-sync-view",
-                                           G_CALLBACK (handle_sync_view_cb),
-                                           ev_window);
-+#endif
-                 } else {
-                         g_printerr ("Failed to register bus object %s: %s\n",
- 			            ev_window->priv->dbus_object_path, error->message);
diff --git a/srcpkgs/atril/template b/srcpkgs/atril/template
index 97602c4b1b0b..e3beb69b9e04 100644
--- a/srcpkgs/atril/template
+++ b/srcpkgs/atril/template
@@ -1,33 +1,29 @@
 # Template file for 'atril'
 pkgname=atril
-version=1.24.1
+version=1.26.0
 revision=1
 build_style=gnu-configure
 build_helper="gir"
-configure_args="--disable-schemas-compile --enable-djvu --disable-synctex
+configure_args="--disable-schemas-compile --enable-djvu --enable-synctex=no
  --enable-dvi --enable-t1lib --enable-pixbuf --enable-comics --enable-xps
  --disable-static $(vopt_enable gir introspection)"
-hostmakedepends="glib-devel intltool itstool pkg-config automake libtool
- gettext-devel perl-XML-Parser yelp-tools mate-common autoconf-archive
- $(vopt_if gir 'gobject-introspection')"
+hostmakedepends="glib-devel intltool itstool pkg-config
+ perl-XML-Parser yelp-tools mate-common $(vopt_if gir 'gobject-introspection')"
 makedepends="djvulibre-devel libSM-devel libcaja-devel libgxps-devel
  libnotify-devel libsecret-devel libspectre-devel libunique-devel
  mate-desktop-devel mate-icon-theme poppler-glib-devel webkit2gtk-devel"
 depends="dbus mate-desktop mate-icon-theme"
 short_desc="Simply a document viewer for MATE"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="skmpz <dem.procopiou@gmail.com>"
 license="GPL-2.0-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/atril/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=b48372a89813f31d2635de02d9e92ba38e794daddf625f06d80c3793248bde1a
+checksum=715e766eaede3fa5d8ca300fa3319fb2b63055dfdc6e971d8750c2aec624e45f
 
 build_options="gir"
 build_options_default="gir"
 
-pre_configure() {
-	autoreconf -fi
-}
-
 do_check() {
 	: dogtail does NOT support Void Linux
 }

From 84037aac4bc756604385a5d56b9ed611a8e00373 Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:23:40 +0400
Subject: [PATCH 02/38] caja-dropbox: update to 1.26.0.

---
 srcpkgs/caja-dropbox/template | 14 ++++++++++----
 1 file changed, 10 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/caja-dropbox/template b/srcpkgs/caja-dropbox/template
index 952cccbd43a5..0beb6967905f 100644
--- a/srcpkgs/caja-dropbox/template
+++ b/srcpkgs/caja-dropbox/template
@@ -1,18 +1,24 @@
 # Template file for 'caja-dropbox'
 pkgname=caja-dropbox
-version=1.24.0
+version=1.26.0
 revision=1
 build_style=gnu-configure
-configure_args="--disable-gksu --disable-static"
-hostmakedepends="pkg-config python3-docutils python3-gobject gdk-pixbuf-devel"
+configure_args="--disable-static"
+hostmakedepends="autoconf-archive gettext-devel libtool pkg-config
+ python3-docutils python3-gobject gdk-pixbuf-devel which mate-common"
 makedepends="libcaja-devel glib-devel gtk+3-devel python3-gobject-devel"
 depends="caja"
 short_desc="Dropbox extension for Caja file manager"
 maintainer="skmpz <dem.procopiou@gmail.com>"
 license="CC-BY-ND-3.0, GPL-3.0-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/caja-dropbox/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=224a6ad0b9cc994384192469fbcd745f077e85577f57d58b85695754b04096e5
+checksum=9693d0c3426822d5b549e2241cd2b8a0ed552d4eebf2c87fa522e82b3fc8849b
+
+pre_configure() {
+	NOCONFIGURE=1 ./autogen.sh
+}
 
 post_install() {
 	vlicense COPYING

From bb574ee736394e8fa0802b7602854e6ed958fed1 Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:24:06 +0400
Subject: [PATCH 03/38] caja-extensions: update to 1.26.0.

---
 srcpkgs/caja-extensions/template | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/caja-extensions/template b/srcpkgs/caja-extensions/template
index 171720780a86..a258f63ada12 100644
--- a/srcpkgs/caja-extensions/template
+++ b/srcpkgs/caja-extensions/template
@@ -1,9 +1,9 @@
 # Template file for 'caja-extensions'
 pkgname=caja-extensions
-version=1.24.1
+version=1.26.0
 revision=1
 build_style=gnu-configure
-configure_args="--disable-gksu"
+configure_args="--disable-gksu --disable-static"
 hostmakedepends="pkg-config intltool glib-devel libxml2"
 makedepends="libcaja-devel mate-desktop-devel dbus-glib-devel gupnp-devel"
 depends="caja"
@@ -11,8 +11,9 @@ short_desc="Extensions for the MATE Caja file manager"
 maintainer="skmpz <dem.procopiou@gmail.com>"
 license="GPL-2.0-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/caja-extensions/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=8533c3e0d3b0984eac284168744ecd12f8d0bdd914b908b4b71a496c95f5538e
+checksum=f01539530840f8bd32ad119fab346cac214149dec74a69ae65a39442fdd8fc0f
 
 post_install() {
 	rm -rf ${DESTDIR}/usr/include
@@ -25,8 +26,6 @@ caja-image-converter_package() {
 	depends="caja-extensions ImageMagick"
 	pkg_install() {
 		vmove usr/lib/caja/extensions-2.0/libcaja-image-converter.so
-		vmove usr/share/caja-extensions/caja-image-resize.ui
-		vmove usr/share/caja-extensions/caja-image-rotate.ui
 	}
 }
 

From 662dc52e7659acbc3d24a3844d41c47c2e7de3f4 Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:24:27 +0400
Subject: [PATCH 04/38] caja: update to 1.26.0.

---
 srcpkgs/caja/template | 12 ++++--------
 1 file changed, 4 insertions(+), 8 deletions(-)

diff --git a/srcpkgs/caja/template b/srcpkgs/caja/template
index ef7f481d9502..95167200cdb6 100644
--- a/srcpkgs/caja/template
+++ b/srcpkgs/caja/template
@@ -1,6 +1,6 @@
 # Template file for 'caja'
 pkgname=caja
-version=1.24.1
+version=1.26.0
 revision=1
 build_style=gnu-configure
 build_helper="gir"
@@ -8,8 +8,7 @@ build_helper="gir"
 configure_args="--disable-static --disable-packagekit --disable-schemas-compile
  --disable-update-mimedb --disable-self-check $(vopt_enable gir introspection)
  ac_cv_lib_selinux_is_selinux_enabled=no ac_cv_strftime_extensions=yes"
-hostmakedepends="automake gettext-devel glib-devel gobject-introspection
- intltool itstool libtool pkg-config"
+hostmakedepends="glib-devel gobject-introspection intltool itstool pkg-config"
 makedepends="exempi-devel gvfs-devel libXt-devel libexif-devel libnotify-devel
  mate-desktop-devel"
 depends="dbus gvfs mate-desktop mate-icon-theme"
@@ -17,16 +16,13 @@ short_desc="MATE shell and file manager"
 maintainer="skmpz <dem.procopiou@gmail.com>"
 license="GPL-2.0-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/caja/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=e50b0147ce4c43107d4dadddafd2fa3928f7522515663b6bc58fef3016598f7a
+checksum=a200a6fad3a5fbc70d10f8626788e2f4f31bde363649bc50a6bb8a85b2880ad4
 
 build_options="gir"
 build_options_default="gir"
 
-pre_configure() {
-	autoreconf -fi
-}
-
 libcaja_package() {
 	short_desc+=" - runtime library"
 	pkg_install() {

From 09382d087c0b564d67404659b41e810ddab348d5 Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:24:53 +0400
Subject: [PATCH 05/38] engrampa: update to 1.26.0.

---
 srcpkgs/engrampa/patches/zstd-mime-type.patch | 31 +++++++++++--------
 srcpkgs/engrampa/template                     |  8 +++--
 2 files changed, 23 insertions(+), 16 deletions(-)

diff --git a/srcpkgs/engrampa/patches/zstd-mime-type.patch b/srcpkgs/engrampa/patches/zstd-mime-type.patch
index cf56c55509a6..75e2f5a1629d 100644
--- a/srcpkgs/engrampa/patches/zstd-mime-type.patch
+++ b/srcpkgs/engrampa/patches/zstd-mime-type.patch
@@ -1,7 +1,8 @@
-diff --git caja/caja-engrampa.c caja/caja-engrampa.c
+diff --git a/caja/caja-engrampa.c b/caja/caja-engrampa.c
+index ad89608..d4019ec 100644
 --- a/caja/caja-engrampa.c
 +++ b/caja/caja-engrampa.c
-@@ -191,7 +191,8 @@ static struct {
+@@ -195,7 +195,8 @@ static struct {
  		{ "application/x-zip", TRUE },
  		{ "application/x-zip-compressed", TRUE },
  		{ "application/x-zoo", TRUE },
@@ -11,10 +12,11 @@ diff --git caja/caja-engrampa.c caja/caja-engrampa.c
  		{ "application/x-zstd-compressed-tar", TRUE },
  		{ "application/zip", TRUE },
  		{ "multipart/x-zip", TRUE },
-diff --git configure.ac configure.ac
+diff --git a/configure.ac b/configure.ac
+index 5d03e6b..6305854 100644
 --- a/configure.ac
 +++ b/configure.ac
-@@ -141,7 +141,6 @@ AC_ARG_ENABLE([magic],
+@@ -148,7 +148,6 @@ AC_ARG_ENABLE([magic],
                AS_HELP_STRING([--enable-magic], [use libmagic to detect file type]),,
                [enable_magic=no])
  
@@ -22,7 +24,7 @@ diff --git configure.ac configure.ac
  if test x"$enable_magic" = x"yes" ; then
  	save_LIBS="$LIBS"
  	LIBS="$LIBS -lmagic"
-@@ -154,47 +153,6 @@ int main () { magic_t m = magic_open(MAGIC_NONE); }
+@@ -161,47 +160,6 @@ int main () { magic_t m = magic_open(MAGIC_NONE); }
  		       [AC_MSG_RESULT([no])
  		        AC_MSG_ERROR([libmagic is needed for magic])])
  
@@ -70,7 +72,7 @@ diff --git configure.ac configure.ac
  	LIBS="$save_LIBS"
  
  	MAGIC_CFLAGS=
-@@ -207,9 +165,6 @@ int main () { magic_t m = magic_open(MAGIC_NONE); }
+@@ -214,9 +172,6 @@ int main () { magic_t m = magic_open(MAGIC_NONE); }
  fi
  
  AM_CONDITIONAL(ENABLE_MAGIC, test x"$enable_magic" != x"no")
@@ -80,19 +82,21 @@ diff --git configure.ac configure.ac
  
  AC_ARG_VAR([CPIO], [Path to the `cpio` command])
  AC_PATH_PROGS(CPIO, gcpio cpio, cpio)
-diff --git data/engrampa.desktop.in.in data/engrampa.desktop.in.in
+diff --git a/data/engrampa.desktop.in.in b/data/engrampa.desktop.in.in
+index c23c8ab..6d8c511 100644
 --- a/data/engrampa.desktop.in.in
 +++ b/data/engrampa.desktop.in.in
 @@ -11,7 +11,7 @@ Type=Application
  Icon=engrampa
  # Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon!
  Categories=GTK;Utility;Archiving;Compression;
--MimeType=application/x-7z-compressed;application/x-7z-compressed-tar;application/x-ace;application/x-alz;application/x-arj;application/x-brotli;application/x-brotli-compressed-tar;application/x-bzip;application/x-bzip-compressed-tar;application/x-bzip1;application/x-bzip1-compressed-tar;application/x-cabinet;application/x-cbr;application/x-cbz;application/x-cd-image;application/x-compress;application/x-compressed-tar;application/x-cpio;application/vnd.debian.binary-package;application/x-ear;application/x-ms-dos-executable;application/x-gtar;application/x-gzip;application/x-gzpostscript;application/x-java-archive;application/x-lha;application/x-lzh-compressed;application/x-lrzip;application/x-lrzip-compressed-tar;application/x-lzip;application/x-lzip-compressed-tar;application/x-lzma;application/x-lzma-compressed-tar;application/x-lzop;application/x-lzop-compressed-tar;application/x-ms-wim;application/x-rar;application/x-rar-compressed;application/x-rpm;application/x-source-rpm;application/x-rzip;application/x-tar;application/x-tarz;application/x-stuffit;application/x-war;application/x-xz;application/x-xz-compressed-tar;application/x-zip;application/x-zip-compressed;application/x-zoo;@ZSTD_MIME_TYPE@;application/x-zstd-compressed-tar;application/zip;application/x-archive;application/vnd.ms-cab-compressed;
-+MimeType=application/x-7z-compressed;application/x-7z-compressed-tar;application/x-ace;application/x-alz;application/x-arj;application/x-brotli;application/x-brotli-compressed-tar;application/x-bzip;application/x-bzip-compressed-tar;application/x-bzip1;application/x-bzip1-compressed-tar;application/x-cabinet;application/x-cbr;application/x-cbz;application/x-cd-image;application/x-compress;application/x-compressed-tar;application/x-cpio;application/vnd.debian.binary-package;application/x-ear;application/x-ms-dos-executable;application/x-gtar;application/x-gzip;application/x-gzpostscript;application/x-java-archive;application/x-lha;application/x-lzh-compressed;application/x-lrzip;application/x-lrzip-compressed-tar;application/x-lzip;application/x-lzip-compressed-tar;application/x-lzma;application/x-lzma-compressed-tar;application/x-lzop;application/x-lzop-compressed-tar;application/x-ms-wim;application/x-rar;application/x-rar-compressed;application/x-rpm;application/x-source-rpm;application/x-rzip;application/x-tar;application/x-tarz;application/x-stuffit;application/x-war;application/x-xz;application/x-xz-compressed-tar;application/x-zip;application/x-zip-compressed;application/x-zoo;application/zstd;application/x-zstd;application/x-zstd-compressed-tar;application/zip;application/x-archive;application/vnd.ms-cab-compressed;
+-MimeType=application/epub+zip;application/x-7z-compressed;application/x-7z-compressed-tar;application/x-ace;application/x-alz;application/x-arc;application/x-arj;application/x-brotli;application/x-brotli-compressed-tar;application/x-bzip;application/x-bzip-compressed-tar;application/x-bzip1;application/x-bzip1-compressed-tar;application/x-cabinet;application/x-cbr;application/x-cbz;application/x-cd-image;application/x-compress;application/x-compressed-tar;application/x-cpio;application/vnd.debian.binary-package;application/x-ear;application/x-ms-dos-executable;application/x-gtar;application/x-gzip;application/x-gzpostscript;application/x-java-archive;application/x-lha;application/x-lzh-compressed;application/x-lrzip;application/x-lrzip-compressed-tar;application/x-lzip;application/x-lzip-compressed-tar;application/x-lzma;application/x-lzma-compressed-tar;application/x-lzop;application/x-lzop-compressed-tar;application/x-ms-wim;application/x-rar;application/x-rar-compressed;application/x-rpm;application/x-source-rpm;application/x-rzip;application/x-tar;application/x-tarz;application/x-stuffit;application/x-war;application/x-xz;application/x-xz-compressed-tar;application/x-zip;application/x-zip-compressed;application/x-zoo;@ZSTD_MIME_TYPE@;application/x-zstd-compressed-tar;application/zip;application/x-archive;application/vnd.ms-cab-compressed;
++MimeType=application/epub+zip;application/x-7z-compressed;application/x-7z-compressed-tar;application/x-ace;application/x-alz;application/x-arc;application/x-arj;application/x-brotli;application/x-brotli-compressed-tar;application/x-bzip;application/x-bzip-compressed-tar;application/x-bzip1;application/x-bzip1-compressed-tar;application/x-cabinet;application/x-cbr;application/x-cbz;application/x-cd-image;application/x-compress;application/x-compressed-tar;application/x-cpio;application/vnd.debian.binary-package;application/x-ear;application/x-ms-dos-executable;application/x-gtar;application/x-gzip;application/x-gzpostscript;application/x-java-archive;application/x-lha;application/x-lzh-compressed;application/x-lrzip;application/x-lrzip-compressed-tar;application/x-lzip;application/x-lzip-compressed-tar;application/x-lzma;application/x-lzma-compressed-tar;application/x-lzop;application/x-lzop-compressed-tar;application/x-ms-wim;application/x-rar;application/x-rar-compressed;application/x-rpm;application/x-source-rpm;application/x-rzip;application/x-tar;application/x-tarz;application/x-stuffit;application/x-war;application/x-xz;application/x-xz-compressed-tar;application/x-zip;application/x-zip-compressed;application/x-zoo;application/zstd;application/x-zstd;application/x-zstd-compressed-tar;application/zip;application/x-archive;application/vnd.ms-cab-compressed;
  # Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon!
  Keywords=MATE;archive;manager;compression;
  X-MATE-DocPath=engrampa/engrampa.xml
-diff --git src/fr-command-cfile.c src/fr-command-cfile.c
+diff --git a/src/fr-command-cfile.c b/src/fr-command-cfile.c
+index a914abe..93f641f 100644
 --- a/src/fr-command-cfile.c
 +++ b/src/fr-command-cfile.c
 @@ -301,7 +301,8 @@ fr_command_cfile_add (FrCommand     *comm,
@@ -155,10 +159,11 @@ diff --git src/fr-command-cfile.c src/fr-command-cfile.c
  		return PACKAGES ("zstd");
  
  	return NULL;
-diff --git src/fr-init.c src/fr-init.c
+diff --git a/src/fr-init.c b/src/fr-init.c
+index 7d7b313..57dfc40 100644
 --- a/src/fr-init.c
 +++ b/src/fr-init.c
-@@ -108,7 +108,8 @@ FrMimeTypeDescription mime_type_desc[] = {
+@@ -110,7 +110,8 @@ FrMimeTypeDescription mime_type_desc[] = {
  	{ "application/x-xz",                                         ".xz",       N_("Xz compressed file"), 0 },
  	{ "application/x-xz-compressed-tar",                          ".tar.xz",   N_("Tar compressed with xz"), 0 },
  	{ "application/x-zoo",                                        ".zoo",      N_("Zoo"), 0 },
@@ -168,7 +173,7 @@ diff --git src/fr-init.c src/fr-init.c
  	{ "application/x-zstd-compressed-tar",                        ".tar.zst",  N_("Tar compressed with zstd"), 0 },
  	{ "application/zip",                                          ".zip",      N_("Zip"), 0 },
  	{ NULL, NULL, NULL, 0 }
-@@ -181,7 +182,7 @@ FrExtensionType file_ext_type[] = {
+@@ -185,7 +186,7 @@ FrExtensionType file_ext_type[] = {
  	{ ".Z", "application/x-compress" },
  	{ ".zip", "application/zip" },
  	{ ".zoo", "application/x-zoo" },
diff --git a/srcpkgs/engrampa/template b/srcpkgs/engrampa/template
index ac402d6fb4a9..14d98489c715 100644
--- a/srcpkgs/engrampa/template
+++ b/srcpkgs/engrampa/template
@@ -1,9 +1,10 @@
 # Template file for 'engrampa'
 pkgname=engrampa
-version=1.24.2
+version=1.26.0
 revision=1
 build_style=gnu-configure
-configure_args="--enable-magic --disable-schemas-compile --disable-packagekit"
+configure_args="--enable-magic --disable-schemas-compile --disable-packagekit
+ --disable-static"
 hostmakedepends="glib-devel intltool itstool pkg-config cpio automake
  gettext-devel tar libtool mate-common autoconf-archive"
 makedepends="file-devel gtk+3-devel json-glib-devel libSM-devel libarchive-devel
@@ -13,8 +14,9 @@ short_desc="Archive manipulator for MATE"
 maintainer="skmpz <dem.procopiou@gmail.com>"
 license="GPL-2.0-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/engrampa/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=ee280d288c974732ec7bc2d1c3e18fa563b33a30f3e4cb3e976ebc71be6c4674
+checksum=97cdb2c22c32315a38803d4147dfad9de7309e30ce8f37ac9f600709ad075ee3
 
 pre_configure() {
 	autoreconf -fi

From afcf6a6df07732a4b367447d073d2b4a4a3899b5 Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:25:16 +0400
Subject: [PATCH 06/38] eom: update to 1.26.0.

---
 srcpkgs/eom/template | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/eom/template b/srcpkgs/eom/template
index 6ed175f3a443..37241c0b9b4e 100644
--- a/srcpkgs/eom/template
+++ b/srcpkgs/eom/template
@@ -1,6 +1,6 @@
 # Template file for 'eom'
 pkgname=eom
-version=1.24.1
+version=1.26.0
 revision=1
 build_style=gnu-configure
 build_helper="gir"
@@ -10,11 +10,12 @@ makedepends="dbus-glib-devel exempi-devel libexif-devel libpeas-devel
  librsvg-devel mate-desktop-devel mate-icon-theme"
 depends="dbus mate-icon-theme"
 short_desc="MATE image viewer"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="skmpz <dem.procopiou@gmail.com>"
 license="GPL-2.0-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/eom/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=2eb9d106f658565399f83d3d13315a144715a7e9b069cfd0a040ef0698a62a37
+checksum=27f169aa396ddbc75740bf802bef1c0251771ca0747b5a727ff985c03dc067db
 
 eom-devel_package() {
 	short_desc+=" - development files"

From fea852fdda3c76a2eb1b142b017a6f0ac0db7d38 Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:25:47 +0400
Subject: [PATCH 07/38] libmatekbd: update to 1.26.0.

---
 srcpkgs/libmatekbd/template | 14 +++++---------
 1 file changed, 5 insertions(+), 9 deletions(-)

diff --git a/srcpkgs/libmatekbd/template b/srcpkgs/libmatekbd/template
index 577e6b919899..dd4ca77315a0 100644
--- a/srcpkgs/libmatekbd/template
+++ b/srcpkgs/libmatekbd/template
@@ -1,28 +1,24 @@
 # Template file for 'libmatekbd'
 pkgname=libmatekbd
-version=1.24.1
+version=1.26.0
 revision=1
 build_style=gnu-configure
 build_helper="gir"
 configure_args="--disable-static $(vopt_enable gir introspection)"
-hostmakedepends="mate-common autoconf-archive pkg-config intltool itstool
- glib-devel gobject-introspection"
+hostmakedepends="pkg-config intltool itstool glib-devel gobject-introspection"
 makedepends="libICE-devel gtk+3-devel libxklavier-devel iso-codes"
 depends="dconf iso-codes"
 short_desc="MATE keyboard library"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="skmpz <dem.procopiou@gmail.com>"
 license="LGPL-2.1-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/libmatekbd/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=a87f6369e3f35428bc8fccafca1103004b2e2f5cb3d8d122019704baa7ebac9e
+checksum=220ee8cab0cbc5f42ca6b621bcd009b0b736507945a2aedbffe2235fa1d811ad
 
 build_options="gir"
 build_options_default="gir"
 
-pre_configure() {
-	autoreconf -fi
-}
-
 libmatekbd-devel_package() {
 	short_desc+=" - development files"
 	depends="gtk+3-devel libxklavier-devel ${sourcepkg}>=${version}_${revision}"

From 7cfbe919dbcc415ac757218df4624d1dc91eef4f Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:26:03 +0400
Subject: [PATCH 08/38] libmatemixer: update to 1.26.0.

---
 srcpkgs/libmatemixer/template | 11 ++++-------
 1 file changed, 4 insertions(+), 7 deletions(-)

diff --git a/srcpkgs/libmatemixer/template b/srcpkgs/libmatemixer/template
index 2028de955a83..36ec5c3322fe 100644
--- a/srcpkgs/libmatemixer/template
+++ b/srcpkgs/libmatemixer/template
@@ -1,21 +1,18 @@
 # Template file for 'libmatemixer'
 pkgname=libmatemixer
-version=1.24.1
+version=1.26.0
 revision=1
 build_style=gnu-configure
 configure_args="--disable-static"
-hostmakedepends="mate-common pkg-config intltool itstool autoconf-archive"
+hostmakedepends="mate-common pkg-config intltool itstool"
 makedepends="libglib-devel alsa-lib-devel pulseaudio-devel"
 short_desc="MATE mixer library"
 maintainer="skmpz <dem.procopiou@gmail.com>"
 license="LGPL-2.1-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/libmatemixer/master/NEWS"
 distfiles="http://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=1d2f2f0c3b6b31f96b689e28a73d4c3c080061ec22c1b3b4696e7f63e6c1d9d8
-
-pre_configure() {
-	autoreconf -fi
-}
+checksum=9a9bcc605b27e9c5c91a28eb7cb79831e6d6fbf6339f5e5c18d524f3ee259ff1
 
 libmatemixer-devel_package() {
 	short_desc+=" - development files"

From 0d1ce3f7764c022cca74e73f73a49db4a66720cb Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:26:22 +0400
Subject: [PATCH 09/38] libmateweather: update to 1.26.0.

---
 srcpkgs/libmateweather/template | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/libmateweather/template b/srcpkgs/libmateweather/template
index b7180e39aff1..6ac1a9208910 100644
--- a/srcpkgs/libmateweather/template
+++ b/srcpkgs/libmateweather/template
@@ -1,10 +1,10 @@
 # Template file for 'libmateweather'
 pkgname=libmateweather
-version=1.24.1
+version=1.26.0
 revision=1
 build_style=gnu-configure
-configure_args="--disable-static --disable-python
- --enable-locations-compression --with-zoneinfo-dir=/usr/share/zoneinfo"
+configure_args="--disable-static --enable-locations-compression
+ --with-zoneinfo-dir=/usr/share/zoneinfo"
 hostmakedepends="pkg-config intltool itstool glib-devel"
 makedepends="gtk+3-devel libsoup-devel"
 depends="dconf"
@@ -12,8 +12,9 @@ short_desc="Provides access to weather information from the Internet for MATE"
 maintainer="skmpz <dem.procopiou@gmail.com>"
 license="GPL-2.0-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/libmateweather/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=9b4cfdefcd368137b9300e19fd6ed31b26a56336b78ef3fa772156755361a709
+checksum=a7fd9713099c88826fb67249771cd0cdb92ee9d4784068b1a165840b84607b15
 
 libmateweather-devel_package() {
 	short_desc+=" - development files"

From 6dec55894fbe85681990e6abbfd6eecb38885148 Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:26:47 +0400
Subject: [PATCH 10/38] marco: update to 1.26.0.

---
 srcpkgs/marco/template | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/srcpkgs/marco/template b/srcpkgs/marco/template
index 5abb62b91fec..047eb7fd3f3a 100644
--- a/srcpkgs/marco/template
+++ b/srcpkgs/marco/template
@@ -1,10 +1,10 @@
 # Template file for 'marco'
 pkgname=marco
-version=1.24.2
+version=1.26.0
 revision=1
 build_style=gnu-configure
 configure_args="--disable-static --enable-startup-notification --disable-schemas-compile"
-hostmakedepends="gdk-pixbuf-devel mate-common which zenity autoconf-archive"
+hostmakedepends="gdk-pixbuf-devel zenity pkg-config itstool intltool"
 makedepends="libXt-devel libcanberra-devel libgtop-devel
  libnotify-devel mate-desktop-devel libXpresent-devel"
 depends="zenity"
@@ -12,12 +12,13 @@ short_desc="Window manager for MATE"
 maintainer="skmpz <dem.procopiou@gmail.com>"
 license="GPL-2.0-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/marco/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=498350cb12fc4d9c7c4a0355102c17b50043fbab258d11ad41b7d698b4f042a7
+checksum=f63c08cd8b07450ab3e33a04605c4f9e69522358884273b3cbcf30275eee5b05
 
-pre_configure() {
-	NOCONFIGURE=1 ./autogen.sh
-}
+# pre_configure() {
+# 	NOCONFIGURE=1 ./autogen.sh
+# }
 
 libmarco_package() {
 	short_desc+=" - runtime library"

From 8959a4690f37fd88e7b223dd26d482120696d68d Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:27:03 +0400
Subject: [PATCH 11/38] mate-applets: update to 1.26.0.

---
 srcpkgs/mate-applets/template | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/mate-applets/template b/srcpkgs/mate-applets/template
index 8a530aafa043..9a124f551487 100644
--- a/srcpkgs/mate-applets/template
+++ b/srcpkgs/mate-applets/template
@@ -1,6 +1,6 @@
 # Template file for 'mate-applets'
 pkgname=mate-applets
-version=1.24.1
+version=1.26.0
 revision=1
 build_style=gnu-configure
 configure_args="--disable-static --enable-ipv6"
@@ -8,14 +8,15 @@ hostmakedepends="glib-devel intltool itstool libxslt pkg-config polkit"
 makedepends="NetworkManager-devel gtksourceview-devel libSM-devel libgtop-devel
  libmate-panel-devel libmateweather-devel libnotify-devel libwnck-devel
  mate-desktop-devel mate-icon-theme mate-settings-daemon-devel polkit-devel
- upower-devel wireless_tools-devel"
+ upower-devel wireless_tools-devel libnl3-devel"
 depends="mate-icon-theme"
 short_desc="Applets for MATE panel"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="skmpz <dem.procopiou@gmail.com>"
 license="GPL-2.0-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/mate-applets/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=d76f6be9aa19451b52b4f354d9f846a572810c40c27eb2df3d01cc353a89e040
+checksum=b7e0439b4e0c754233c2988644faa3f6ab6270970061b7a0c635d68d236fc977
 replaces="mate-applets-data>=0"
 
 case "$XBPS_TARGET_MACHINE" in

From 89c67b5bedcb6ff327364ff9d6d4a6252b1f6267 Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:27:22 +0400
Subject: [PATCH 12/38] mate-backgrounds: update to 1.26.0.

---
 srcpkgs/mate-backgrounds/template | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/mate-backgrounds/template b/srcpkgs/mate-backgrounds/template
index d2bb23c7a30d..c33b9cb4db5c 100644
--- a/srcpkgs/mate-backgrounds/template
+++ b/srcpkgs/mate-backgrounds/template
@@ -1,6 +1,6 @@
 # Template file for 'mate-backgrounds'
 pkgname=mate-backgrounds
-version=1.24.2
+version=1.26.0
 revision=1
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool itstool"
@@ -8,5 +8,6 @@ short_desc="Background images and data for MATE"
 maintainer="skmpz <dem.procopiou@gmail.com>"
 license="GPL-2.0-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/mate-backgrounds/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=e5bea10c346bf527508fe4c94e4b34785434dc5cf93d72571425b751e916abc7
+checksum=0dc9127224ae1573301cfa0aaa6c6262827072d2bf6e5c67c9e1aae19f85e90c

From 87cbab2bf52071cb9e2d9abd8f7d3799d068ee51 Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:28:00 +0400
Subject: [PATCH 13/38] mate-calc: update to 1.26.0.

---
 srcpkgs/mate-calc/template | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/mate-calc/template b/srcpkgs/mate-calc/template
index 9088f46c01d5..e45ee7e9c338 100644
--- a/srcpkgs/mate-calc/template
+++ b/srcpkgs/mate-calc/template
@@ -1,13 +1,14 @@
 # Template file for 'mate-calc'
 pkgname=mate-calc
-version=1.24.1
+version=1.26.0
 revision=1
 build_style=gnu-configure
 hostmakedepends="glib-devel intltool itstool pkg-config"
-makedepends="gtk+3-devel"
+makedepends="gtk+3-devel mpfr-devel libmpc-devel"
 short_desc="MATE Calculator"
 maintainer="Álvaro Castillo <midgoon@gmail.com>"
 license="GPL-2.0-or-later"
 homepage="https://mate-desktop.org/"
+changelog="https://raw.githubusercontent.com/mate-desktop/mate-calc/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=5c2d1b0101c087c3fdae143058994a76093590693a33392bc2329756708dad46
+checksum=7eb826801dda5d7b070e41d9e831df2ad24459be6c96fe9c0506c21e1374ad55

From e068dd23b697ae8c978fb5505a32230caa009312 Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:28:16 +0400
Subject: [PATCH 14/38] mate-common: update to 1.26.0.

---
 srcpkgs/mate-common/template | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/mate-common/template b/srcpkgs/mate-common/template
index 7afe80ba44a2..1f85f1f47f7b 100644
--- a/srcpkgs/mate-common/template
+++ b/srcpkgs/mate-common/template
@@ -1,13 +1,14 @@
 # Template file for 'mate-common'
 pkgname=mate-common
-version=1.24.2
+version=1.26.0
 revision=1
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool itstool"
 depends="automake libtool intltool pkg-config gtk-doc gettext-devel glib-devel yelp-tools"
 short_desc="Common development macros for MATE"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="skmpz <dem.procopiou@gmail.com>"
 license="GPL-3.0-or-later, LGPL-2.1-or-later"
 homepage="http://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/mate-common/master/NEWS"
 distfiles="http://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=71d2013f5743c71e10e04f3c2205d3bb8db1ddb26954a4197801cb5b3c152b6b
+checksum=4ec9e308ef7ea87435769976b5bd7e41d612be2357a91bd0fed3557cb1bb9c04

From 720c4a32ce9ffc0fb04f99528e98aaebd201678d Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:28:30 +0400
Subject: [PATCH 15/38] mate-control-center: update to 1.26.0.

---
 srcpkgs/mate-control-center/template | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/mate-control-center/template b/srcpkgs/mate-control-center/template
index 513812986a2b..4f83fd8e1a84 100644
--- a/srcpkgs/mate-control-center/template
+++ b/srcpkgs/mate-control-center/template
@@ -1,6 +1,6 @@
 # Template file for 'mate-control-center'
 pkgname=mate-control-center
-version=1.24.2
+version=1.26.0
 revision=1
 build_style=gnu-configure
 configure_args="--disable-static --disable-schemas-compile --disable-update-mimedb"
@@ -14,8 +14,9 @@ short_desc="Control Center for MATE"
 maintainer="skmpz <dem.procopiou@gmail.com>"
 license="GPL-2.0-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/mate-control-center/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=69d8c633a73a4f503501a6bd03f81f230c26835110bb02942a735842d9c47aa3
+checksum=286714ea778f6540fe74ef00aaf504c47141518d26ab224994f4a1af36b0134a
 
 post_install() {
 	rm -f ${DESTDIR}/usr/share/applications/mimeinfo.cache

From 641876ea376b9520fbc93f7b7ac91210e285df0e Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:28:42 +0400
Subject: [PATCH 16/38] mate-desktop: update to 1.26.0.

---
 srcpkgs/mate-desktop/template | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/mate-desktop/template b/srcpkgs/mate-desktop/template
index 42224e430206..730707b276c0 100644
--- a/srcpkgs/mate-desktop/template
+++ b/srcpkgs/mate-desktop/template
@@ -1,11 +1,10 @@
 # Template file for 'mate-desktop'
 pkgname=mate-desktop
-version=1.24.1
+version=1.26.0
 revision=1
 build_style=gnu-configure
 build_helper="gir"
-configure_args="--disable-static --enable-mpaste
- --disable-schemas-compile $(vopt_enable gir introspection)"
+configure_args="--disable-static --disable-schemas-compile $(vopt_enable gir introspection)"
 hostmakedepends="pkg-config intltool itstool glib-devel librsvg-utils"
 makedepends="gtk+3-devel dconf-devel libXrandr-devel startup-notification-devel"
 depends="dconf hicolor-icon-theme dejavu-fonts-ttf"
@@ -13,8 +12,9 @@ short_desc="Library with common API for various MATE modules"
 maintainer="skmpz <dem.procopiou@gmail.com>"
 license="GPL-2.0-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/mate-desktop/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=d1e8cfae3828d8f083d624b1bfaa332a68ff37c145286432e9e6875a916da1d9
+checksum=5f7c6b9b88886cb3393b3ffd57f9e9ec29f03a3c23ce8d4b45292de0aa4652a3
 
 # Package build options
 build_options="gir"

From 9734d32c3bee063f1f6d34bb65be3e74b4c62e3f Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:28:58 +0400
Subject: [PATCH 17/38] mate-icon-theme: update to 1.26.0.

---
 srcpkgs/mate-icon-theme/template | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/mate-icon-theme/template b/srcpkgs/mate-icon-theme/template
index 9d1892344e4a..42973b71275c 100644
--- a/srcpkgs/mate-icon-theme/template
+++ b/srcpkgs/mate-icon-theme/template
@@ -1,17 +1,18 @@
 # Template file for 'mate-icon-theme'
 pkgname=mate-icon-theme
-version=1.24.0
-revision=2
+version=1.26.0
+revision=1
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool itstool icon-naming-utils"
 makedepends="icon-naming-utils"
 depends="gtk-update-icon-cache hicolor-icon-theme"
 short_desc="MATE icon theme"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="skmpz <dem.procopiou@gmail.com>"
 license="CC-BY-SA-3.0"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/mate-icon-theme/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=ca9e5387439fcf7eed53eb33f10a6d3ae51b4d96af525eed6f8cf31d83f95428
+checksum=41f50436d57f425e54fd9557541be77fb291e03aacd55f7991c042e84a290a5a
 
 post_install() {
 	rm -f ${DESTDIR}/usr/share/icons/mate/icon-theme.cache

From ec1095dd32357cdce152ad982eaca9bb8a198144 Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:29:14 +0400
Subject: [PATCH 18/38] mate-indicator-applet: update to 1.26.0.

---
 srcpkgs/mate-indicator-applet/template | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/mate-indicator-applet/template b/srcpkgs/mate-indicator-applet/template
index 676c2ee2440f..cd2f426086fe 100644
--- a/srcpkgs/mate-indicator-applet/template
+++ b/srcpkgs/mate-indicator-applet/template
@@ -1,13 +1,15 @@
 # Template file for 'mate-indicator-applet'
 pkgname=mate-indicator-applet
-version=1.24.0
+version=1.26.0
 revision=1
 build_style=gnu-configure
+configure_args="--disable-static"
 hostmakedepends="pkg-config gettext intltool"
 makedepends="gtk+3-devel libX11-devel libmate-panel-devel libindicator-devel"
 short_desc="MATE applet to display information from various applications"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="skmpz <dem.procopiou@gmail.com>"
 license="GPL-3.0-or-later, LGPL-2.1-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/mate-indicator-applet/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=8eab3f66a027c971d8c7a92b69e595fe0edec0e568610e0071c54358f4daf754
+checksum=e4fbfbede0e58ff7503ead66a3e044ca0f3411a4fd9b552d66e2293a5c828e90

From df6cf6869dd7962bf211ac315c431e3cc978f3bb Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:29:27 +0400
Subject: [PATCH 19/38] mate-media: update to 1.26.0.

---
 srcpkgs/mate-media/template | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/mate-media/template b/srcpkgs/mate-media/template
index 53e1641a8556..289bddd0dc4f 100644
--- a/srcpkgs/mate-media/template
+++ b/srcpkgs/mate-media/template
@@ -1,6 +1,6 @@
 # Template file for 'mate-media'
 pkgname=mate-media
-version=1.24.1
+version=1.26.0
 revision=1
 build_style=gnu-configure
 configure_args="--disable-static"
@@ -8,8 +8,9 @@ hostmakedepends="pkg-config intltool glib-devel"
 makedepends="libcanberra-devel mate-desktop-devel libmatemixer-devel libmate-panel-devel"
 depends="sound-theme-freedesktop"
 short_desc="MATE Media Tools"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="skmpz <dem.procopiou@gmail.com>"
 license="GPL-2.0-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/mate-media/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=222d75d6105a2665f7f0f5e44480917223eca6fc120eebd673703c1105271185
+checksum=8b731b203fd8219ccc2f2ced40e4301823a17f7940acf3cec72b4494a3fe3c3a

From 86377944b470efb17b891d61a128d9b5bb582be5 Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:29:39 +0400
Subject: [PATCH 20/38] mate-menus: update to 1.26.0.

---
 srcpkgs/mate-menus/template | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/mate-menus/template b/srcpkgs/mate-menus/template
index f68aa451db93..dd84f983c95c 100644
--- a/srcpkgs/mate-menus/template
+++ b/srcpkgs/mate-menus/template
@@ -1,6 +1,6 @@
 # Template file for 'mate-menus'
 pkgname=mate-menus
-version=1.24.1
+version=1.26.0
 revision=1
 build_style=gnu-configure
 build_helper="gir"
@@ -8,11 +8,12 @@ configure_args="--disable-static"
 hostmakedepends="pkg-config intltool itstool $(vopt_if gir gobject-introspection)"
 makedepends="libglib-devel"
 short_desc="MATE menu specifications"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="skmpz <dem.procopiou@gmail.com>"
 license="GPL-2.0-or-later, LGPL-2.0-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/mate-menus/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=5a295f5403136f9cfbe0fcf567e48e624c8e01a73ca20f8685d34b12ac4bec9f
+checksum=0309964abd813053368ac4fc446898d27cdb019e894e78cea75751a68871ffe4
 
 build_options="gir"
 build_options_default="gir"

From af451d864cab1d2bdfdc54152eea583cbb6ff678 Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:30:03 +0400
Subject: [PATCH 21/38] mate-netbook: update to 1.26.0.

---
 srcpkgs/mate-netbook/template | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/mate-netbook/template b/srcpkgs/mate-netbook/template
index 75366db27060..dc18118ed9d5 100644
--- a/srcpkgs/mate-netbook/template
+++ b/srcpkgs/mate-netbook/template
@@ -1,13 +1,14 @@
 # Template file for 'mate-netbook'
 pkgname=mate-netbook
-version=1.24.0
+version=1.26.0
 revision=1
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool glib-devel"
 makedepends="libmate-panel-devel libXtst-devel libwnck-devel libfakekey-devel"
 short_desc="MATE netbook extension"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="skmpz <dem.procopiou@gmail.com>"
 license="GPL-3.0-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/mate-netbook/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=48a1d4b88be09da420d10905dd07934a23781d86211e75afdb13b357f04bb3ae
+checksum=e3bf1b6d9fb266600db408fd9ce97d4a4d3b29586853d4ea46547b6793f1ed89

From d44f8a2eac2ca2132d6264540421dd53e28096ad Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:30:19 +0400
Subject: [PATCH 22/38] mate-notification-daemon: update to 1.26.0.

---
 srcpkgs/mate-notification-daemon/template | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/mate-notification-daemon/template b/srcpkgs/mate-notification-daemon/template
index da41832c1153..983a03ccf396 100644
--- a/srcpkgs/mate-notification-daemon/template
+++ b/srcpkgs/mate-notification-daemon/template
@@ -1,15 +1,17 @@
 # Template file for 'mate-notification-daemon'
 pkgname=mate-notification-daemon
-version=1.24.2
+version=1.26.0
 revision=1
 build_style=gnu-configure
-configure_args="--disable-static"
+configure_args="--disable-static --disable-schemas-compile --enable-wayland"
 hostmakedepends="pkg-config intltool glib-devel dbus-glib-devel libxml2"
-makedepends="libnotify-devel dbus-glib-devel libwnck-devel libcanberra-devel"
+makedepends="libnotify-devel dbus-glib-devel libwnck-devel libcanberra-devel
+ mate-desktop-devel libmate-panel-devel gtk-layer-shell-devel"
 depends="dconf hicolor-icon-theme desktop-file-utils"
 short_desc="Notification daemon for MATE"
 maintainer="skmpz <dem.procopiou@gmail.com>"
 license="GPL-2.0-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/mate-notification-daemon/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=58a4193ef8b36024ec0035c3e48e2a08d87c569260317ffef6f12f665048ae0a
+checksum=b23c6581f8f5916d6a16584edd91c2e4b6d0db7dd8e1eec5dd360acf2834b9ba

From 9e9b11fbbf82a12b39c1788470585d03756412a3 Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:30:29 +0400
Subject: [PATCH 23/38] mate-panel: update to 1.26.0.

---
 srcpkgs/mate-panel/template | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/mate-panel/template b/srcpkgs/mate-panel/template
index 8241e191d40c..c11e37f27ad5 100644
--- a/srcpkgs/mate-panel/template
+++ b/srcpkgs/mate-panel/template
@@ -1,23 +1,24 @@
 # Template file for 'mate-panel'
 pkgname=mate-panel
-version=1.24.2
+version=1.26.0
 revision=1
 build_style=gnu-configure
 build_helper="gir"
-configure_args="--disable-static --disable-schemas-compile
+configure_args="--disable-static --disable-schemas-compile --enable-wayland
  $(vopt_enable gir introspection)"
 hostmakedepends="glib-devel intltool itstool pkg-config
  $(vopt_if gir 'gobject-introspection')"
 makedepends="dbus-glib-devel libSM-devel libcaja-devel libcanberra-devel
  libmarco-devel libmateweather-devel librsvg-devel libwnck-devel
- mate-desktop-devel mate-menus-devel"
+ mate-desktop-devel mate-menus-devel wayland-devel gtk-layer-shell-devel"
 depends="caja marco mate-session-manager"
 short_desc="MATE Panel"
 maintainer="skmpz <dem.procopiou@gmail.com>"
 license="GPL-2.0-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/mate-panel/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=30c5ba0392ec76b110220ee6d10bbdba76af36586592a6b3d604db70602848ea
+checksum=092e1ed2177b3a13cfb7df19667b06083009210e48294c18c8a68b9b3c47ea64
 
 build_options="gir"
 build_options_default="gir"

From 0e4beeee1f120f490d905db71061bf21e2d28be8 Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:30:43 +0400
Subject: [PATCH 24/38] mate-polkit: update to 1.26.0.

---
 srcpkgs/mate-polkit/template | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/mate-polkit/template b/srcpkgs/mate-polkit/template
index fef702b7d618..1c132efd9a42 100644
--- a/srcpkgs/mate-polkit/template
+++ b/srcpkgs/mate-polkit/template
@@ -1,14 +1,15 @@
 # Template file for 'mate-polkit'
 pkgname=mate-polkit
-version=1.24.0
+version=1.26.0
 revision=1
 build_style=gnu-configure
 configure_args="--disable-static"
 hostmakedepends="pkg-config intltool"
 makedepends="gtk+3-devel polkit-devel"
 short_desc="PolicyKit integration for the MATE desktop"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="skmpz <dem.procopiou@gmail.com>"
 license="LGPL-2.0-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/mate-polkit/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=76bf1133a22d0772bff02c34d6178ef73826a400415294541f9e6f4b3f5ea090
+checksum=ada57812add0dff4b03ed03adb467c3a9e59e179c1cf52451988065a04d8724e

From a0dccbc5d09e9738d51b5dca991ab6c86f74ce7d Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:31:01 +0400
Subject: [PATCH 25/38] mate-power-manager: update to 1.26.0.

---
 srcpkgs/mate-power-manager/patches/musl.patch | 84 -------------------
 srcpkgs/mate-power-manager/template           | 12 +--
 2 files changed, 6 insertions(+), 90 deletions(-)
 delete mode 100644 srcpkgs/mate-power-manager/patches/musl.patch

diff --git a/srcpkgs/mate-power-manager/patches/musl.patch b/srcpkgs/mate-power-manager/patches/musl.patch
deleted file mode 100644
index 827698b4c9fb..000000000000
--- a/srcpkgs/mate-power-manager/patches/musl.patch
+++ /dev/null
@@ -1,84 +0,0 @@
---- a/src/egg-debug.c	2015-11-07 07:50:36.623167156 +0100
-+++ b/src/egg-debug.c	2015-11-07 07:51:46.719072134 +0100
-@@ -39,7 +39,9 @@
- #include <sys/stat.h>
- #include <fcntl.h>
- #include <time.h>
-+#ifdef __GLIBC__
- #include <execinfo.h>
-+#endif
- 
- #include "egg-debug.h"
- 
-@@ -78,6 +80,7 @@ pk_set_console_mode (guint console_code)
- void
- egg_debug_backtrace (void)
- {
-+#ifdef __GLIBC__
- 	void *call_stack[512];
- 	int  call_stack_size;
- 	char **symbols;
-@@ -95,6 +98,7 @@ egg_debug_backtrace (void)
- 		pk_set_console_mode (CONSOLE_RESET);
- 		free (symbols);
- 	}
-+#endif
- }
- 
- /**
---- a/applets/brightness/egg-debug.c	2015-11-07 07:52:33.320008962 +0100
-+++ b/applets/brightness/egg-debug.c	2015-11-07 07:53:09.302960183 +0100
-@@ -39,7 +39,9 @@
- #include <sys/stat.h>
- #include <fcntl.h>
- #include <time.h>
-+#ifdef __GLIBC__
- #include <execinfo.h>
-+#endif
- 
- #include "egg-debug.h"
- 
-@@ -78,6 +80,7 @@ pk_set_console_mode (guint console_code)
- void
- egg_debug_backtrace (void)
- {
-+#ifdef __GLIBC__
- 	void *call_stack[512];
- 	int  call_stack_size;
- 	char **symbols;
-@@ -95,6 +98,7 @@ egg_debug_backtrace (void)
- 		pk_set_console_mode (CONSOLE_RESET);
- 		free (symbols);
- 	}
-+#endif
- }
- 
- /**
---- a/applets/inhibit/egg-debug.c	2015-11-07 07:53:32.815928309 +0100
-+++ b/applets/inhibit/egg-debug.c	2015-11-07 07:53:55.503897553 +0100
-@@ -39,7 +39,9 @@
- #include <sys/stat.h>
- #include <fcntl.h>
- #include <time.h>
-+#ifdef __GLIBC__
- #include <execinfo.h>
-+#endif
- 
- #include "egg-debug.h"
- 
-@@ -78,6 +80,7 @@ pk_set_console_mode (guint console_code)
- void
- egg_debug_backtrace (void)
- {
-+#ifdef __GLIBC__
- 	void *call_stack[512];
- 	int  call_stack_size;
- 	char **symbols;
-@@ -95,6 +98,7 @@ egg_debug_backtrace (void)
- 		pk_set_console_mode (CONSOLE_RESET);
- 		free (symbols);
- 	}
-+#endif
- }
- 
- /**
diff --git a/srcpkgs/mate-power-manager/template b/srcpkgs/mate-power-manager/template
index 4f2f7d77c8f1..50448859e863 100644
--- a/srcpkgs/mate-power-manager/template
+++ b/srcpkgs/mate-power-manager/template
@@ -1,17 +1,17 @@
 # Template file for 'mate-power-manager'
 pkgname=mate-power-manager
-version=1.24.2
+version=1.26.0
 revision=1
 build_style=gnu-configure
 configure_args="--disable-schemas-compile"
-hostmakedepends="pkg-config intltool itstool libtool glib-devel dbus-glib-devel
- polkit"
+hostmakedepends="pkg-config intltool itstool libtool glib-devel dbus-glib-devel polkit"
 makedepends="libcanberra-devel libgnome-keyring-devel libmate-panel-devel
- libnotify-devel upower-devel"
+ libnotify-devel upower-devel libsecret-devel"
 depends="dconf upower"
 short_desc="Power management tool for the MATE desktop"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="skmpz <dem.procopiou@gmail.com>"
 license="GPL-2.0-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/mate-power-manager/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=d24b9fce23b086817d5494f7e65e58f18367af6eb5d0d4ade45de5396e20d13a
+checksum=26b603ccf077366414a41e91ca6aa4c4c227a8e9fb6925a8ec5ca147c4e67b79

From 12e77693a1040c23957b9c8b8c9989e432178e8e Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:31:25 +0400
Subject: [PATCH 26/38] mate-screensaver: update to 1.26.0.

---
 srcpkgs/mate-screensaver/template | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/mate-screensaver/template b/srcpkgs/mate-screensaver/template
index 46d34246fa35..252934fdf1d1 100644
--- a/srcpkgs/mate-screensaver/template
+++ b/srcpkgs/mate-screensaver/template
@@ -1,20 +1,21 @@
 # Template file for 'mate-screensaver'
 pkgname=mate-screensaver
-version=1.24.1
+version=1.26.0
 revision=1
 build_style=gnu-configure
-configure_args="--without-console-kit"
+configure_args="--without-console-kit --without-systemd --with-elogind"
 hostmakedepends="pkg-config intltool itstool glib-devel"
 makedepends="dbus-glib-devel libnotify-devel libXScrnSaver-devel
  libmatekbd-devel mate-menus-devel mate-desktop-devel pam-devel
 elogind-devel"
 depends="mate-desktop mate-session-manager"
 short_desc="Screensaver for MATE"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="skmpz <dem.procopiou@gmail.com>"
 license="GPL-2.0-or-later, LGPL-2.0-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/mate-screensaver/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=bc0925002fccb2de3b36cc37b16ad2becf994c61260dfc5b4930fcedc50fab46
+checksum=41514032206da2a62105ead90fdce95639d5ea234d1e67d533fd4c5b56feaf76
 
 post_install() {
 	vinstall ${FILESDIR}/${pkgname}.pam 644 etc/pam.d ${pkgname}

From b3adea4a98d99293225bc80c9c5c0f55d40f77bd Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:31:40 +0400
Subject: [PATCH 27/38] mate-sensors-applet: update to 1.26.0.

---
 srcpkgs/mate-sensors-applet/template | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/mate-sensors-applet/template b/srcpkgs/mate-sensors-applet/template
index ba0971aeffd4..3ddf97ba9b23 100644
--- a/srcpkgs/mate-sensors-applet/template
+++ b/srcpkgs/mate-sensors-applet/template
@@ -1,6 +1,6 @@
 # Template file for 'mate-sensors-applet'
 pkgname=mate-sensors-applet
-version=1.24.1
+version=1.26.0
 revision=1
 build_style=gnu-configure
 configure_args="--disable-schemas-compile --disable-static"
@@ -9,8 +9,9 @@ makedepends="dbus-glib-devel libatasmart-devel libmate-panel-devel
  libnotify-devel libsensors-devel"
 depends="dconf"
 short_desc="Sensors applet for MATE"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="skmpz <dem.procopiou@gmail.com>"
 license="GPL-2.0-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/mate-sensors-applet/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=262c494b207e615656d8d8723946d11beb705fbf9f0166eb3dbb7a56877764d9
+checksum=4c437c3ff04488543e2cf0c4627fe265c48b4ad8f4946fd9de9845edc0c82968

From e2a3decf456c31d332a10b653b0eef4cd217c749 Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:31:56 +0400
Subject: [PATCH 28/38] mate-session-manager: update to 1.26.0.

---
 srcpkgs/mate-session-manager/template | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/mate-session-manager/template b/srcpkgs/mate-session-manager/template
index 7be98f824528..ad76047358f1 100644
--- a/srcpkgs/mate-session-manager/template
+++ b/srcpkgs/mate-session-manager/template
@@ -1,14 +1,15 @@
 # Template file for 'mate-session-manager'
 pkgname=mate-session-manager
-version=1.24.3
+version=1.26.0
 revision=1
 build_style=gnu-configure
-configure_args="--disable-static --with-elogind"
+configure_args="--disable-static --with-elogind --without-systemd"
 hostmakedepends="pkg-config intltool glib-devel dbus-glib-devel elogind-devel"
 makedepends="gtk+3-devel dbus-glib-devel libSM-devel libXtst-devel"
 short_desc="MATE Session Manager"
 maintainer="skmpz <dem.procopiou@gmail.com>"
 license="GPL-2.0-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/mate-session-manager/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=90a0aec5b59b6287b4d2c4d452b0b6410f9d12490ca1f890e81ba2801bdab0a2
+checksum=5915a2f6583c0e5e58afb3abae3f4adbbe6a003c174a5b6e3d204b4e398a1816

From 509f4b413e6daf6a17a5a429c781753d38187e17 Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:32:14 +0400
Subject: [PATCH 29/38] mate-settings-daemon: update to 1.26.0.

---
 srcpkgs/mate-settings-daemon/template | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/mate-settings-daemon/template b/srcpkgs/mate-settings-daemon/template
index 010361166854..b5db461e136b 100644
--- a/srcpkgs/mate-settings-daemon/template
+++ b/srcpkgs/mate-settings-daemon/template
@@ -1,6 +1,6 @@
 # Template file for 'mate-settings-daemon'
 pkgname=mate-settings-daemon
-version=1.24.2
+version=1.26.0
 revision=1
 build_style=gnu-configure
 configure_args="--disable-static --disable-schemas-compile --enable-polkit --enable-pulse"
@@ -13,8 +13,9 @@ short_desc="MATE Settings daemon (pulseaudio)"
 maintainer="skmpz <dem.procopiou@gmail.com>"
 license="GPL-2.0-or-later, LGPL-2.1-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/mate-settings-daemon/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=8c25b4f8aba69b9a0597e8759f9ef23f12ac0d3153f3f5b5a6d4afd0733f3914
+checksum=b77aa017ff811a6fcae40bd45f18d8606eec87be21e3e6fa6d35c0fe14e66d41
 
 mate-settings-daemon-devel_package() {
 	depends="${sourcepkg}-${version}_${revision} dbus-glib-devel"

From f7bcc4d287e6f4213cf386e33c6efc044db01569 Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:32:29 +0400
Subject: [PATCH 30/38] mate-system-monitor: update to 1.26.0.

---
 srcpkgs/mate-system-monitor/template | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/mate-system-monitor/template b/srcpkgs/mate-system-monitor/template
index ceada7658151..54c77a5e3914 100644
--- a/srcpkgs/mate-system-monitor/template
+++ b/srcpkgs/mate-system-monitor/template
@@ -1,15 +1,16 @@
 # Template file for 'mate-system-monitor'
 pkgname=mate-system-monitor
-version=1.24.1
+version=1.26.0
 revision=1
 build_style=gnu-configure
+configure_args="--disable-static --disable-schemas-compile"
 hostmakedepends="glib-devel intltool itstool pkg-config polkit"
-makedepends="dbus-glib-devel gtkmm-devel libgtop-devel librsvg-devel
- libwnck-devel"
+makedepends="dbus-glib-devel gtkmm-devel libgtop-devel librsvg-devel libwnck-devel"
 depends="dbus mate-icon-theme"
 short_desc="MATE system monitor"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="skmpz <dem.procopiou@gmail.com>"
 license="GPL-2.0-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/mate-system-monitor/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=1fa384fae8be0384dbfa7bb32acdbda977745185e59570bd3869ea6e382559c4
+checksum=83472c3add79e52b2fb3c1bc55f33f968c71a2b90e2b62027ad688c1cecc338f

From ea1a8aa78a4923aa68fa40b9ff4ecd1b31fbf375 Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:32:44 +0400
Subject: [PATCH 31/38] mate-terminal: update to 1.26.0.

---
 srcpkgs/mate-terminal/template | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/mate-terminal/template b/srcpkgs/mate-terminal/template
index c8bf685d82aa..5809ac48d0b9 100644
--- a/srcpkgs/mate-terminal/template
+++ b/srcpkgs/mate-terminal/template
@@ -1,6 +1,6 @@
 # Template file for 'mate-terminal'
 pkgname=mate-terminal
-version=1.24.1
+version=1.26.0
 revision=1
 build_style=gnu-configure
 hostmakedepends="glib-devel intltool itstool pkg-config"
@@ -10,5 +10,6 @@ short_desc="MATE Terminal Emulator"
 maintainer="skmpz <dem.procopiou@gmail.com>"
 license="GPL-3.0-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/mate-terminal/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=550d38f223d21ab12d39b00af6cd75f083d3790c38d53051537df2ac6a87be62
+checksum=7727e714c191c3c55e535e30931974e229ca5128e052b62ce74dcc18f7eaaf22

From 2b3acd2e31ad6a5c19137a27de3978bd2a5bcd8b Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:33:20 +0400
Subject: [PATCH 32/38] mate-themes: update to 3.22.22.

---
 srcpkgs/mate-themes/template | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/mate-themes/template b/srcpkgs/mate-themes/template
index fc9edc93ff0b..145b272be28e 100644
--- a/srcpkgs/mate-themes/template
+++ b/srcpkgs/mate-themes/template
@@ -1,15 +1,15 @@
 # Template file for 'mate-themes'
 pkgname=mate-themes
-version=3.22.21
-revision=2
+version=3.22.22
+revision=1
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool itstool icon-naming-utils"
 makedepends="gtk+-devel gtk+3-devel"
 depends="gtk2-engines gtk-engine-murrine librsvg mate-icon-theme"
 short_desc="Default themes for the MATE desktop"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="skmpz <dem.procopiou@gmail.com>"
 license="LGPL-2.1-or-later"
 homepage="https://mate-desktop.org"
 changelog="https://raw.githubusercontent.com/mate-desktop/mate-themes/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/themes/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=d668c578fd10d6e2a46932df1cb8852f77923193f0b88fb327e89d80f0162f14
+checksum=bd00affe5aec217656c0af21496a4c66fd5f6f3e9e93b42fc96b54771d6f99a1

From 3c547dd6ab5a6a81baf92e894ccb71bf8dd0275e Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:33:39 +0400
Subject: [PATCH 33/38] mate-user-guide: update to 1.26.0.

---
 srcpkgs/mate-user-guide/template | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/mate-user-guide/template b/srcpkgs/mate-user-guide/template
index a4b5664333b6..a0b4994c783f 100644
--- a/srcpkgs/mate-user-guide/template
+++ b/srcpkgs/mate-user-guide/template
@@ -1,12 +1,13 @@
 # Template file for 'mate-user-guide'
 pkgname=mate-user-guide
-version=1.24.0
-revision=2
+version=1.26.0
+revision=1
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool itstool"
 short_desc="MATE User Guide"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="skmpz <dem.procopiou@gmail.com>"
 license="GFDL-1.1-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/mate-user-guide/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=ee344d5e8170cd4c366c3a8f98f941f066f12b079ae2d50af2bbf94890f2bd35
+checksum=0581d45053e9a1c16925c3154341b5b21140905a22b1bd3caa84619f9f05c2c0

From 63e287e916b2856326b61b8f04317a91aeb9fada Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:33:52 +0400
Subject: [PATCH 34/38] mate-utils: update to 1.26.0.

---
 .../mate-utils/patches/cross-strftime.patch   | 47 -------------------
 srcpkgs/mate-utils/template                   | 15 ++----
 2 files changed, 5 insertions(+), 57 deletions(-)
 delete mode 100644 srcpkgs/mate-utils/patches/cross-strftime.patch

diff --git a/srcpkgs/mate-utils/patches/cross-strftime.patch b/srcpkgs/mate-utils/patches/cross-strftime.patch
deleted file mode 100644
index 971af91c61ef..000000000000
--- a/srcpkgs/mate-utils/patches/cross-strftime.patch
+++ /dev/null
@@ -1,47 +0,0 @@
---- a/configure.ac	2015-09-01 15:56:57.000000000 +0200
-+++ b/configure.ac	2015-10-23 15:09:25.486599085 +0200
-@@ -277,24 +277,32 @@ AS_IF([test "x$have_ipv6" = "xyes"],
-       ]
- )
- 
--
--dnl strftime extension checks
--AC_TRY_RUN([
-+dnl ***************************************
-+dnl *** Check for strftime() extensions ***
-+dnl ***************************************
-+AC_CACHE_CHECK([Define if strftime supports %E and %O modifiers], ac_cv_strftime_extensions,
-+  [AC_TRY_RUN([
-+    #include <string.h>
-   #include <time.h>
--  int main (void) {
--    char buf[100];
--    struct tm tm = {0};
--    tm.tm_year = 99;
--    if (strftime(buf, 100, "%EY", &tm) == 4 && strcmp (buf, "1999")==0)
-+    int
-+    main (int argc, char **argv)
-+    {
-+      struct tm tm;
-+      char      buffer[16];
-+      tm.tm_year = 81;
-+      if (strftime (buffer, 16, "%EY", &tm) == 4 && strcmp (buffer, "1981") == 0)
-       return 0;
-     return 1;
-   }
-   ],
--  [
--    AC_DEFINE([HAVE_STRFTIME_EXTENSION], [1],
--              [Define if strftime supports %E and %O modifiers.])
--  ]
-+  ac_cv_strftime_extensions=yes,
-+  ac_cv_strftime_extensions=no,
-+  [AC_MSG_ERROR([cross-compiling, preset ac_cv_strftime_extensions=yes/no])]
-+  )]
- )
-+if test x"$ac_cv_strftime_extensions" = x"yes"; then
-+  AC_DEFINE([HAVE_STRFTIME_EXTENSION], 1, [Define if strftime supports %E and %O modifiers.])
-+fi
- 
- dnl mate-search-tool checks
- withval=""
diff --git a/srcpkgs/mate-utils/template b/srcpkgs/mate-utils/template
index 855db8054d4d..dcddebe79e33 100644
--- a/srcpkgs/mate-utils/template
+++ b/srcpkgs/mate-utils/template
@@ -1,25 +1,20 @@
 # Template file for 'mate-utils'
 pkgname=mate-utils
-version=1.24.0
+version=1.26.0
 revision=1
 build_style=gnu-configure
 configure_args="--disable-static --disable-schemas-compile"
-hostmakedepends="automake libtool gettext-devel pkg-config which
- intltool itstool glib-devel mate-common librsvg-utils inkscape
- autoconf-archive"
+hostmakedepends="pkg-config intltool itstool glib-devel librsvg-utils inkscape"
 makedepends="gtk+3-devel libSM-devel zlib-devel libcanberra-devel
  libgtop-devel libmate-panel-devel udisks2-devel"
 depends="desktop-file-utils"
 short_desc="Common utilities for the MATE desktop"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="skmpz <dem.procopiou@gmail.com>"
 license="GPL-2.0-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/mate-utils/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=219673047fe2a14eb9c8bc23a5fb7c99d45e7acad4c05b4bf59a3d244cb026ac
-
-pre_configure() {
-	NOCONFIGURE=1 ./autogen.sh
-}
+checksum=7ca56ab242e8efaa64f93ffb84f6e4bf8d4d0df01e20b3b6ef8956ce3192782e
 
 post_install() {
 	rm -r ${DESTDIR}/usr/include

From dade02534ecf237bd5365c858cc7ca490ee21d81 Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:34:01 +0400
Subject: [PATCH 35/38] mozo: update to 1.26.0.

---
 srcpkgs/mozo/template | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/mozo/template b/srcpkgs/mozo/template
index 9a2daf9294cb..1c578504c085 100644
--- a/srcpkgs/mozo/template
+++ b/srcpkgs/mozo/template
@@ -1,14 +1,15 @@
 # Template file for 'mozo'
 pkgname=mozo
-version=1.24.0
-revision=3
+version=1.26.0
+revision=1
 build_style=gnu-configure
 hostmakedepends="intltool itstool pkg-config"
 makedepends="glib-devel mate-menus-devel python3-gobject-devel"
 depends="desktop-file-utils gtk+3 mate-menus python3-gobject"
 short_desc="MATE menu editing tool"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="skmpz <dem.procopiou@gmail.com>"
 license="LGPL-2.1-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/mozo/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/mozo-${version}.tar.xz"
-checksum=23ff04f98338f8aa35512666dab898daebb21faeceee55fc02b313a00e899e06
+checksum=4642cbf985fa0d72e205ad7f6abfb7d008e3117e2c5e331340f2bc6466c3ddc2

From 72ae775a3591930dbeb61ecd7166308b8c97e4e5 Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 13:34:18 +0400
Subject: [PATCH 36/38] pluma: update to 1.26.0.

---
 srcpkgs/pluma/template | 21 +++++++++------------
 1 file changed, 9 insertions(+), 12 deletions(-)

diff --git a/srcpkgs/pluma/template b/srcpkgs/pluma/template
index 4a689f727b18..78c3a67494b6 100644
--- a/srcpkgs/pluma/template
+++ b/srcpkgs/pluma/template
@@ -1,29 +1,26 @@
 # Template file for 'pluma'
 pkgname=pluma
-version=1.24.1
+version=1.26.0
 revision=1
 build_style=gnu-configure
 build_helper=gir
 pycompile_dirs="usr/lib/pluma/plugins"
-hostmakedepends="autoconf-archive gobject-introspection mate-common
- automake libtool"
-makedepends="enchant2-devel gtksourceview-devel iso-codes libSM-devel
+hostmakedepends="gobject-introspection mate-common automake libtool"
+makedepends="enchant2-devel gtksourceview4-devel iso-codes libSM-devel
  libpeas-devel mate-desktop-devel"
 depends="desktop-file-utils iso-codes zenity mate-desktop"
 short_desc="Powerful text editor for MATE"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="skmpz <dem.procopiou@gmail.com>"
 license="GPL-2.0-or-later"
 homepage="https://mate-desktop.org"
+changelog="https://raw.githubusercontent.com/mate-desktop/pluma/master/NEWS"
 distfiles="https://pub.mate-desktop.org/releases/${version%.*}/${pkgname}-${version}.tar.xz"
-checksum=2e251113afa1af63fb98f28f2b49aea874c5f654a33da3ad12994580882bece9
-python_version=2 #unverified
-
-pre_configure() {
-	autoreconf -fi
-}
+checksum=310644dae7393cf5d47928fd4fab5d120da4e683ecf4fc248fcf778145f08a53
+python_version=3
+make_check=no # needs gsettings-schemas and gvfs-mount
 
 pluma-devel_package() {
-	depends="${sourcepkg}-${version}_${revision} gtksourceview-devel libpeas-devel"
+	depends="${sourcepkg}-${version}_${revision} gtksourceview4-devel libpeas-devel"
 	short_desc+=" - development files"
 	pkg_install() {
 		vmove usr/include

From 205c16961969f175d3e875860c861eb1a7f31f64 Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 15:46:33 +0400
Subject: [PATCH 37/38] mate: update to 1.26.0.

---
 srcpkgs/mate/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/mate/template b/srcpkgs/mate/template
index 791511d8e351..0b661ce6f8d7 100644
--- a/srcpkgs/mate/template
+++ b/srcpkgs/mate/template
@@ -1,6 +1,6 @@
 # Template file for 'mate'
 pkgname=mate
-version=1.24.0
+version=1.26.0
 revision=1
 build_style=meta
 depends="
@@ -22,6 +22,6 @@ depends="
 	elogind
 	zenity"
 short_desc="MATE meta-package for Void Linux"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="skmpz <dem.procopiou@gmail.com>"
 license="GPL-2.0-or-later, LGPL-2.1-or-later"
 homepage="http://www.mate-desktop.org"

From 504190a1f3c498286fb0f01e9f625988e634777f Mon Sep 17 00:00:00 2001
From: skmpz <dem.procopiou@gmail.com>
Date: Fri, 27 Aug 2021 15:46:49 +0400
Subject: [PATCH 38/38] mate-extra: update to 1.26.0.

---
 srcpkgs/mate-extra/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/mate-extra/template b/srcpkgs/mate-extra/template
index 1fa661577181..e4466d38f57d 100644
--- a/srcpkgs/mate-extra/template
+++ b/srcpkgs/mate-extra/template
@@ -1,6 +1,6 @@
 # Template file for 'mate-extra'
 pkgname=mate-extra
-version=1.24.0
+version=1.26.0
 revision=1
 build_style=meta
 depends="
@@ -22,6 +22,6 @@ depends="
 	caja-extensions>=${version}
 	yelp"
 short_desc="MATE extras meta-package for Void Linux"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="skmpz <dem.procopiou@gmail.com>"
 license="GPL-2.0-or-later, LGPL-2.1-or-later"
 homepage="http://www.mate-desktop.org"

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: mate: update to 1.26.0.
  2021-08-27 13:19 [PR PATCH] mate: update to 1.26.0 skmpz
                   ` (2 preceding siblings ...)
  2021-10-28  4:31 ` [PR PATCH] [Updated] " skmpz
@ 2021-10-28  4:35 ` abenson
  2021-10-28  4:35 ` [PR PATCH] [Closed]: " abenson
  4 siblings, 0 replies; 6+ messages in thread
From: abenson @ 2021-10-28  4:35 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 241 bytes --]

New comment by abenson on void-packages repository

https://github.com/void-linux/void-packages/pull/32704#issuecomment-953494968

Comment:
Closed via 9d96148733175a2137ca2db2454e6ad5a778f49a through e865d503b72aba3267cfe8d360567afae1224f52

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PR PATCH] [Closed]: mate: update to 1.26.0.
  2021-08-27 13:19 [PR PATCH] mate: update to 1.26.0 skmpz
                   ` (3 preceding siblings ...)
  2021-10-28  4:35 ` abenson
@ 2021-10-28  4:35 ` abenson
  4 siblings, 0 replies; 6+ messages in thread
From: abenson @ 2021-10-28  4:35 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1636 bytes --]

There's a closed pull request on the void-packages repository

mate: update to 1.26.0.
https://github.com/void-linux/void-packages/pull/32704

Description:
<!-- Mark items with [x] where applicable -->

#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [ ] I built this PR locally for my native architecture, (ARCH-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->

Packages built for
- x86_64
- i686
- aarch64 [cross x86_64]
- armv7l [cross x86_64]
- x86_64-musl
- aarch64-musl [cross x86_64-musl]
- armv6l-musl [cross x86_64-musl]

Tested on x86_64 glibc.

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2021-10-28  4:35 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-27 13:19 [PR PATCH] mate: update to 1.26.0 skmpz
2021-09-14 18:28 ` mobinmob
2021-09-14 19:28 ` mobinmob
2021-10-28  4:31 ` [PR PATCH] [Updated] " skmpz
2021-10-28  4:35 ` abenson
2021-10-28  4:35 ` [PR PATCH] [Closed]: " abenson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).