games-kids/gmult: drop 10.0

Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
This commit is contained in:
Ionen Wolkens 2023-05-26 18:57:44 -04:00
parent 7ae9b77fe0
commit c5158a543e
No known key found for this signature in database
GPG Key ID: B24406B0B0AC4334
3 changed files with 0 additions and 60 deletions

View File

@ -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

View File

@ -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(

View File

@ -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
}