summaryrefslogtreecommitdiff
path: root/mate-extra
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2023-12-28 01:37:43 +0000
committerV3n3RiX <venerix@koprulu.sector>2023-12-28 01:37:43 +0000
commite67d5b4ba05349b3bf4229d0cf7d069809c4420e (patch)
tree0fe2174d8edf159924d772ad279f37faba8d5b6a /mate-extra
parent249ae8c1a241b514fc83737660927ee175091346 (diff)
gentoo auto-resync : 28:12:2023 - 01:37:43
Diffstat (limited to 'mate-extra')
-rw-r--r--mate-extra/Manifest.gzbin2920 -> 2919 bytes
-rw-r--r--mate-extra/mate-sensors-applet/Manifest1
-rw-r--r--mate-extra/mate-sensors-applet/files/1.26.0-clang-16-fix-undeclared-function-setlocale.patch130
3 files changed, 0 insertions, 131 deletions
diff --git a/mate-extra/Manifest.gz b/mate-extra/Manifest.gz
index a128bf4b7e64..983f8f9d90db 100644
--- a/mate-extra/Manifest.gz
+++ b/mate-extra/Manifest.gz
Binary files differ
diff --git a/mate-extra/mate-sensors-applet/Manifest b/mate-extra/mate-sensors-applet/Manifest
index 2826c3c50aaf..3148dca0240c 100644
--- a/mate-extra/mate-sensors-applet/Manifest
+++ b/mate-extra/mate-sensors-applet/Manifest
@@ -1,4 +1,3 @@
-AUX 1.26.0-clang-16-fix-undeclared-function-setlocale.patch 3154 BLAKE2B 9c1654cede2f09e589ff29e5cbb4e425e30a67ec21149dea896c38c64b09adb6b0aeff973ed1e4b7c4ca5f7f868978f7c9e19eb081dea7fa0a07cb1b1c0043ee SHA512 c7f887d7892a14ff29385e8954e928a329fd3e848f9981093fe3cdda472332caf1ba1ff5ab9afd45f6e9f2c38f496161ada5a8a62e4a7f5e8eae64215d0abf5a
DIST mate-sensors-applet-1.26.0.tar.xz 563440 BLAKE2B 87919c3299253dc037d165dc7223fb7e02f993568ef454211746fffa2e260f54b9ad76bd5b023f9aa215a4796aa2a34dda249b132c415af7c5c4e82e84c5086b SHA512 1419c63e823bcec5d8fc4a619b3eb6c1eef0ac5d923177fae6649664616824cb5a257121aa88ab5d56d1d5ff5c44f1d62a4dd325dc718091e2d2e16ae326fa36
DIST mate-sensors-applet-1.27.0.tar.xz 650980 BLAKE2B 7184f89eaf5b451e57a31d020808d8726bd88d101421800f61f49ecd51441c0fa9c3380ccf68a243364a0b6698915be240bbfd6d550787fed2db389c4060cf20 SHA512 132e24a526535e84bd4714d2f77f918d96b54cfcdfcf6cd78f72034db59da0b9fd4bdc295967087e5fa72b06aec85bfdaa4a46343670865faf9dcabd65812526
EBUILD mate-sensors-applet-1.26.0.ebuild 1291 BLAKE2B 24637e9cfef8d4c120da6611cd35677dd0f9e23fd87ab37e7c4588facbdd11e5f0e7f40e34069c4e8694da675ca04ecafe4f755e4f8776df8aee2b54960a5496 SHA512 8f5e4674accc6062b32d7ca09268fa2a6a532fb87ef605669a251c86eed02ba51c626f033bc891ed351de909b21dd3219d190758de679a890250d70ba9229a30
diff --git a/mate-extra/mate-sensors-applet/files/1.26.0-clang-16-fix-undeclared-function-setlocale.patch b/mate-extra/mate-sensors-applet/files/1.26.0-clang-16-fix-undeclared-function-setlocale.patch
deleted file mode 100644
index a0b83dba38b2..000000000000
--- a/mate-extra/mate-sensors-applet/files/1.26.0-clang-16-fix-undeclared-function-setlocale.patch
+++ /dev/null
@@ -1,130 +0,0 @@
-From 3ff9fb450aa2a28221fcd863bf7913e84eeeb7ba Mon Sep 17 00:00:00 2001
-From: listout <brahmajit.xyz@gmail.com>
-Date: Fri, 5 May 2023 11:07:20 +0530
-Subject: [PATCH] unconditionally include stdio.h and locale.h
-
-On musl mate-sensor-applet fails to build with error message saying
-"LC_NUMERIC undeclared". As suggested in issue mate-desktop#123, removing the include
-guards around #include <local.h> and #include <stdio.h>
-
-Upstream commit: https://patch-diff.githubusercontent.com/raw/mate-desktop/mate-sensors-applet/pull/128.patch
-Bug: https://bugs.gentoo.org/896200
-Signed-off-by: Brahmajit Das <brahmajit.xyz@gmail.com>
---- a/configure.ac
-+++ b/configure.ac
-@@ -38,7 +38,6 @@ AC_SUBST(LIBS)
- AC_CHECK_HEADERS(
- stdlib.h \
- string.h \
-- stdio.h \
- sys/types.h \
- sys/socket.h \
- netinet/in.h \
---- a/plugins/acpi/acpi-plugin.c
-+++ b/plugins/acpi/acpi-plugin.c
-@@ -21,10 +21,7 @@
- #include <config.h>
- #endif /* HAVE_CONFIG_H */
-
--#ifdef HAVE_STDIO_H
- #include <stdio.h>
--#endif /* HAVE_STDIO_H */
--
- #include <glib.h>
- #include <glib/gi18n.h>
- #include "acpi-plugin.h"
---- a/plugins/i2c-proc/i2c-proc-plugin.c
-+++ b/plugins/i2c-proc/i2c-proc-plugin.c
-@@ -21,14 +21,8 @@
- #include <config.h>
- #endif /* HAVE_CONFIG_H */
-
--#ifdef HAVE_STDIO_H
- #include <stdio.h>
--#endif /* HAVE_STDIO_H */
--
--#ifdef HAVE_LOCALE_H
- #include <locale.h>
--#endif
--
- #include <glib.h>
- #include <glib/gi18n.h>
- #include "i2c-proc-plugin.h"
---- a/plugins/i2c-sys/i2c-sys-plugin.c
-+++ b/plugins/i2c-sys/i2c-sys-plugin.c
-@@ -21,10 +21,7 @@
- #include <config.h>
- #endif /* HAVE_CONFIG_H */
-
--#ifdef HAVE_STDIO_H
- #include <stdio.h>
--#endif /* HAVE_STDIO_H */
--
- #include <glib.h>
- #include <glib/gi18n.h>
- #include "i2c-sys-plugin.h"
---- a/plugins/i8k/i8k-plugin.c
-+++ b/plugins/i8k/i8k-plugin.c
-@@ -21,10 +21,7 @@
- #include <config.h>
- #endif /* HAVE_CONFIG_H */
-
--#ifdef HAVE_STDIO_H
- #include <stdio.h>
--#endif /* HAVE_STDIO_H */
--
- #include <glib.h>
- #include <glib/gi18n.h>
- #include "i8k-plugin.h"
---- a/plugins/ibm-acpi/ibm-acpi-plugin.c
-+++ b/plugins/ibm-acpi/ibm-acpi-plugin.c
-@@ -21,10 +21,7 @@
- #include "config.h"
- #endif /* HAVE_CONFIG_H */
-
--#ifdef HAVE_STDIO_H
- #include <stdio.h>
--#endif /* HAVE_STDIO_H */
--
- #include <glib.h>
- #include <glib/gi18n.h>
- #include "ibm-acpi-plugin.h"
---- a/plugins/omnibook/omnibook-plugin.c
-+++ b/plugins/omnibook/omnibook-plugin.c
-@@ -21,10 +21,7 @@
- #include "config.h"
- #endif /* HAVE_CONFIG_H */
-
--#ifdef HAVE_STDIO_H
- #include <stdio.h>
--#endif /* HAVE_STDIO_H */
--
- #include <glib.h>
- #include <glib/gi18n.h>
- #include "omnibook-plugin.h"
---- a/plugins/pmu-sys/pmu-sys-plugin.c
-+++ b/plugins/pmu-sys/pmu-sys-plugin.c
-@@ -21,10 +21,7 @@
- #include "config.h"
- #endif /* HAVE_CONFIG_H */
-
--#ifdef HAVE_STDIO_H
- #include <stdio.h>
--#endif /* HAVE_STDIO_H */
--
- #include <glib.h>
- #include <glib/gi18n.h>
- #include "pmu-sys-plugin.h"
---- a/plugins/smu-sys/smu-sys-plugin.c
-+++ b/plugins/smu-sys/smu-sys-plugin.c
-@@ -21,10 +21,7 @@
- #include "config.h"
- #endif /* HAVE_CONFIG_H */
-
--#ifdef HAVE_STDIO_H
- #include <stdio.h>
--#endif /* HAVE_STDIO_H */
--
- #include <glib.h>
- #include <glib/gi18n.h>
- #include "smu-sys-plugin.h"