diff options
author | Ionen Wolkens <ionen@gentoo.org> | 2023-09-23 07:41:42 -0400 |
---|---|---|
committer | Ionen Wolkens <ionen@gentoo.org> | 2023-09-23 07:47:22 -0400 |
commit | cd6360a570ec3b0067ddf252e5fe6c02e0986f86 (patch) | |
tree | ac735493e4477ac5547508b46ef0424ab2d96375 /games-kids | |
parent | sys-kernel/vanilla-sources: add 6.5.5 (diff) | |
download | gentoo-cd6360a570ec3b0067ddf252e5fe6c02e0986f86.tar.gz gentoo-cd6360a570ec3b0067ddf252e5fe6c02e0986f86.tar.bz2 gentoo-cd6360a570ec3b0067ddf252e5fe6c02e0986f86.zip |
games-kids/gmult: drop vala workaround patch
Seems fixed in vala-0.56.13 and is now instead causing a failure.
Could add some ranges in BDEPEND, but rather drop this mess
entirely.
Bug: https://bugs.gentoo.org/912438
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'games-kids')
-rw-r--r-- | games-kids/gmult/files/gmult-12.0-vala-0.56.11.patch | 15 | ||||
-rw-r--r-- | games-kids/gmult/gmult-12.0.ebuild | 9 |
2 files changed, 0 insertions, 24 deletions
diff --git a/games-kids/gmult/files/gmult-12.0-vala-0.56.11.patch b/games-kids/gmult/files/gmult-12.0-vala-0.56.11.patch deleted file mode 100644 index fb0ba7a5227d..000000000000 --- a/games-kids/gmult/files/gmult-12.0-vala-0.56.11.patch +++ /dev/null @@ -1,15 +0,0 @@ -vala-0.56.11 gtk4 bindings seemingly broke API, and so this -workaround must either be applied conditionally or depend -on >=vala-0.56.11 as it breaks older VALA_0_56 and we cannot -check for minor versions from defines. - -https://bugs.gentoo.org/912438 ---- a/gmult/main.vala -+++ b/gmult/main.vala -@@ -108,4 +108,4 @@ - var provider = new Gtk.CssProvider(); --#if VALA_0_58 -- provider.load_from_data(css); -+#if VALA_0_56 -+ provider.load_from_data(css, -1); - #else diff --git a/games-kids/gmult/gmult-12.0.ebuild b/games-kids/gmult/gmult-12.0.ebuild index 6fda353fb576..d30313af7d24 100644 --- a/games-kids/gmult/gmult-12.0.ebuild +++ b/games-kids/gmult/gmult-12.0.ebuild @@ -30,15 +30,6 @@ BDEPEND=" DOCS=( NEWS.md README.md ) -src_prepare() { - default - - # TODO: verify if this is still needed with new vala releases - # as it may instead break them if reverted (see patch for details) - has_version -b ">=dev-lang/vala-0.56.11" && - eapply "${FILESDIR}"/${PN}-12.0-vala-0.56.11.patch -} - src_configure() { vala_setup meson_src_configure |