summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIonen Wolkens <ionen@gentoo.org>2023-05-26 18:57:44 -0400
committerIonen Wolkens <ionen@gentoo.org>2023-05-26 18:57:44 -0400
commitc5158a543e9aea9446ff139026cf0c632bdee8f2 (patch)
treebe0d282ef5f4628c1faecf409291c989c9c46c19 /games-kids
parentmedia-gfx/ueberzugpp: drop 2.8.3 (diff)
downloadgentoo-c5158a543e9aea9446ff139026cf0c632bdee8f2.tar.gz
gentoo-c5158a543e9aea9446ff139026cf0c632bdee8f2.tar.bz2
gentoo-c5158a543e9aea9446ff139026cf0c632bdee8f2.zip
games-kids/gmult: drop 10.0
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'games-kids')
-rw-r--r--games-kids/gmult/Manifest1
-rw-r--r--games-kids/gmult/files/gmult-10.0-meson-0.62.patch21
-rw-r--r--games-kids/gmult/gmult-10.0.ebuild38
3 files changed, 0 insertions, 60 deletions
diff --git a/games-kids/gmult/Manifest b/games-kids/gmult/Manifest
index 5411cef899ae..298e85c79718 100644
--- a/games-kids/gmult/Manifest
+++ b/games-kids/gmult/Manifest
@@ -1,2 +1 @@
-DIST gmult-10.0.tar.xz 186116 BLAKE2B 0c3936983e1c6e72de7aa4056abdb1ec53af282d3927ca34a622d531966adc62e2e9c6740ab6c0cb3cfc9aedc21344c8866c5a2388498bd97c0faa3d32fae80b SHA512 f3eb639d4d6a67ca7d11595f0c4d4c2da613a95714f647536485fef4b64d277bf6f5bf163e363da691806b53ea885c56844287fe943fd521f995c7cce18b6a36
DIST gmult-12.0.tar.bz2 195103 BLAKE2B d1d93190a607dc62bf4809dff7c5240c97f49dc4c833ea91028e9810961125eadba6fac41852b53f674b14c1e4c777a8d9ed58496ad2641ad99ed961041c40c8 SHA512 617b51defaf61c7967c9ccd6898209330733709df4290717e6c158719d04c61a38fa6832197c937f8aef1da23dc2f820c707291761ef8437ab0e78850253768c
diff --git a/games-kids/gmult/files/gmult-10.0-meson-0.62.patch b/games-kids/gmult/files/gmult-10.0-meson-0.62.patch
deleted file mode 100644
index a3b12300e292..000000000000
--- a/games-kids/gmult/files/gmult-10.0-meson-0.62.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-New meson is more picky about using exe in test() that wasn't found.
-https://bugs.gentoo.org/843866
---- a/data/meson.build
-+++ b/data/meson.build
-@@ -41,9 +41,11 @@
- )
-
--test(
-- 'validate-appstream',
-- appstream_util,
-- args: ['--nonet', 'validate-relax', gmult_appdata],
--)
-+if appstream_util.found()
-+ test(
-+ 'validate-appstream',
-+ appstream_util,
-+ args: ['--nonet', 'validate-relax', gmult_appdata],
-+ )
-+endif
-
- resources = gnome.compile_resources(
diff --git a/games-kids/gmult/gmult-10.0.ebuild b/games-kids/gmult/gmult-10.0.ebuild
deleted file mode 100644
index 7ef500d6f09a..000000000000
--- a/games-kids/gmult/gmult-10.0.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit meson vala xdg
-
-DESCRIPTION="Multiplication Puzzle emulates the multiplication game found in Emacs"
-HOMEPAGE="https://launchpad.net/gmult/"
-SRC_URI="https://launchpad.net/gmult/trunk/${PV}/+download/${P}.tar.xz"
-
-LICENSE="GPL-3+ CC-BY-SA-4.0 CC0-1.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-RESTRICT="test" # only used for unnecessary .desktop/.po validation
-
-RDEPEND="
- dev-libs/glib:2
- gui-libs/gtk:4[introspection]
- gui-libs/libadwaita:1[vala]
- virtual/libintl
- x11-libs/cairo
- x11-libs/pango"
-DEPEND="${RDEPEND}"
-BDEPEND="
- $(vala_depend)
- sys-devel/gettext"
-
-DOCS=( NEWS.md README.md )
-
-PATCHES=(
- "${FILESDIR}"/${P}-meson-0.62.patch
-)
-
-src_configure() {
- vala_setup
- meson_src_configure
-}