From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 106CB1581D3 for ; Fri, 31 May 2024 20:13:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 46F81E29FE; Fri, 31 May 2024 20:13:39 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2E9BCE29FE for ; Fri, 31 May 2024 20:13:39 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 62300335DC0 for ; Fri, 31 May 2024 20:13:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 025F71704 for ; Fri, 31 May 2024 20:13:37 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1717186391.b402c23fb8f7299da1a4896c28f67c4b48cad8b4.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-wm/muffin/files/, x11-wm/muffin/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-wm/muffin/files/38919a88b2b8381f5b24b69742d1b9db32029c61.patch x11-wm/muffin/muffin-6.0.1-r2.ebuild X-VCS-Directories: x11-wm/muffin/files/ x11-wm/muffin/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: b402c23fb8f7299da1a4896c28f67c4b48cad8b4 X-VCS-Branch: master Date: Fri, 31 May 2024 20:13:37 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 69bcdd30-82fd-4c93-827b-7b7e2f4dc850 X-Archives-Hash: b410365d3ab30c408be2fbcc55a2e722 commit: b402c23fb8f7299da1a4896c28f67c4b48cad8b4 Author: Eli Schwartz gmail com> AuthorDate: Fri May 31 19:27:05 2024 +0000 Commit: Sam James gentoo org> CommitDate: Fri May 31 20:13:11 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b402c23f x11-wm/muffin: backport fix for Modern C error Closes: https://bugs.gentoo.org/919091 Signed-off-by: Eli Schwartz gmail.com> Signed-off-by: Sam James gentoo.org> .../38919a88b2b8381f5b24b69742d1b9db32029c61.patch | 23 +++ x11-wm/muffin/muffin-6.0.1-r2.ebuild | 184 +++++++++++++++++++++ 2 files changed, 207 insertions(+) diff --git a/x11-wm/muffin/files/38919a88b2b8381f5b24b69742d1b9db32029c61.patch b/x11-wm/muffin/files/38919a88b2b8381f5b24b69742d1b9db32029c61.patch new file mode 100644 index 000000000000..a2472ec9f212 --- /dev/null +++ b/x11-wm/muffin/files/38919a88b2b8381f5b24b69742d1b9db32029c61.patch @@ -0,0 +1,23 @@ +From 38919a88b2b8381f5b24b69742d1b9db32029c61 Mon Sep 17 00:00:00 2001 +From: Leigh Scott +Date: Mon, 5 Feb 2024 16:06:14 +0000 +Subject: [PATCH] Fix compile issue (#683) + +(warning becomes an error due to gcc 14 changes.) +--- + src/core/prefs.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/core/prefs.c b/src/core/prefs.c +index c07359abc..3161e4be9 100644 +--- a/src/core/prefs.c ++++ b/src/core/prefs.c +@@ -2258,7 +2258,7 @@ meta_prefs_add_keybinding (const char *name, + } + else + { +- strokes = g_strdupv (bindings); ++ strokes = g_strdupv((gchar **)bindings); + } + + queue_changed (META_PREF_KEYBINDINGS); diff --git a/x11-wm/muffin/muffin-6.0.1-r2.ebuild b/x11-wm/muffin/muffin-6.0.1-r2.ebuild new file mode 100644 index 000000000000..f2e2171fb1e6 --- /dev/null +++ b/x11-wm/muffin/muffin-6.0.1-r2.ebuild @@ -0,0 +1,184 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{10..12} ) + +inherit gnome2-utils meson python-any-r1 virtualx + +DESCRIPTION="Compositing window manager forked from Mutter for use with Cinnamon" +HOMEPAGE="https://projects.linuxmint.com/cinnamon/ https://github.com/linuxmint/muffin" +SRC_URI="https://github.com/linuxmint/muffin/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD GPL-2+ LGPL-2+ LGPL-2.1+ MIT SGI-B-2.0" +SLOT="0" +IUSE="input_devices_wacom +introspection screencast sysprof systemd test udev wayland video_cards_nvidia" +KEYWORDS="~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86" +REQUIRED_USE="wayland? ( udev )" + +# Dependencies listed in meson order +COMDEPEND=" + x11-libs/libX11 + >=media-libs/graphene-1.9.3[introspection?] + >=x11-libs/gtk+-3.19.8:3[X,introspection?] + x11-libs/gdk-pixbuf:2[introspection?] + >=x11-libs/pango-1.20.0[introspection?] + >=x11-libs/cairo-1.10.0[X] + >=dev-libs/fribidi-1.0.0 + >=dev-libs/glib-2.61.1:2 + >=dev-libs/json-glib-0.12.0[introspection?] + >=gnome-extra/cinnamon-desktop-5.8:0= + >=x11-libs/libXcomposite-0.4 + x11-libs/libXcursor + x11-libs/libXdamage + x11-libs/libXext + >=x11-libs/libXfixes-3 + >=x11-libs/libXi-1.7.4 + x11-libs/libXtst + x11-libs/libxkbfile + x11-misc/xkeyboard-config + >=x11-libs/libxkbcommon-0.4.3[X] + x11-libs/libXrender + >=x11-libs/libXrandr-1.5.0 + x11-libs/libxcb:= + x11-libs/libXinerama + x11-libs/libXau + x11-libs/libICE + >=app-accessibility/at-spi2-core-2.46.0:2[introspection?] + >=media-libs/libcanberra-0.26 + sys-apps/dbus + media-libs/libglvnd[X] + media-libs/mesa[X(+),egl(+)] + x11-libs/libSM + >=x11-libs/startup-notification-0.7 + media-libs/fontconfig + + input_devices_wacom? ( + >=dev-libs/libwacom-0.13:= + ) + introspection? ( + >=dev-libs/gobject-introspection-1.41.3:= + ) + screencast? ( + >=media-video/pipewire-0.3.0:= + ) + sysprof? ( + >=dev-util/sysprof-capture-3.35.2:3 + ) + udev? ( + >=virtual/libudev-228:= + >=dev-libs/libgudev-232 + ) + wayland? ( + >=dev-libs/libinput-1.7:= + >=dev-libs/wayland-1.13.0 + >=dev-libs/wayland-protocols-1.19 + || ( + >=media-libs/mesa-24.1.0_rc1[opengl] +