dev-games/tiled: add 1.11.2_p20260205, drop 1.11.2

Closes: https://bugs.gentoo.org/968127
Closes: https://bugs.gentoo.org/967752
Signed-off-by: Andrei Sabalenka <mechakotik@gmail.com>
Part-of: https://github.com/gentoo/gentoo/pull/45750
Closes: https://github.com/gentoo/gentoo/pull/45750
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
This commit is contained in:
Andrei Sabalenka
2026-02-11 11:48:44 +03:00
committed by Joonas Niilola
parent 3ef570826e
commit 41103274b6
2 changed files with 13 additions and 12 deletions
+1 -1
View File
@@ -1,2 +1,2 @@
DIST tiled-1.11.2.tar.gz 17570418 BLAKE2B d2abf3e43c107228cccd1b754326487a78a804381c428760a5dd4af92366aee899f8b35623292fb8b541ac7e6ca61a79303be6dde4b772957c0b46a6f942f488 SHA512 c8fc3d853b91e1e74bdeb1873912e5dfe6efea49d937803502bac42865b6406adf6845f7f393098dccdf59adba522a5672e48e4a673e22e2fc320fe8c4b43405
DIST tiled-1.11.2_p20250614.tar.gz 17510746 BLAKE2B 2ad9c94e4d361a65a144753727b8b20adc496f4b92aa022b1721f011575fdaff315fc76e662ec90c35bce00bad713d5c9644493ce96e025761c88058b10550d1 SHA512 d2a603ed75e164d8c8745440e034f06c5375f0e1408adb4a87330060932fa7b0f6e5605f85343f6eb869cf60cbfbdad561cd86e72b860ed219484d8133780b9c
DIST tiled-1.11.2_p20260205.tar.gz 17834230 BLAKE2B af4cb8968cc09f860b6fa8bb1b15f60a683e71dec305e9b8929d4efcd171e91c599338bfe49f58b104580be1ed5bd955f9fcd7b0add9b3a08c60ecac24af423f SHA512 418f1c12edd063fb10fd3974c8396ac7c71229b1d1085acef58a804ae2cd076f5da1305877dfa3c6809ce8b0466421b4e5ff1507b3b97d4a26f97a707b4a67a1
@@ -1,18 +1,20 @@
# Copyright 1999-2025 Gentoo Authors
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{11..13} )
COMMIT=400e62395319ab1b0bd9dc260854e95eeb7710a5
PYTHON_COMPAT=(python3_{11..14})
inherit edo flag-o-matic multiprocessing python-single-r1 toolchain-funcs xdg
DESCRIPTION="A general purpose tile map editor"
HOMEPAGE="https://www.mapeditor.org/ https://github.com/mapeditor/tiled"
SRC_URI="https://github.com/mapeditor/tiled/archive/v${PV}/${P}.tar.gz"
SRC_URI="https://codeload.github.com/mapeditor/tiled/tar.gz/${COMMIT} -> ${P}.tar.gz"
S="${WORKDIR}/tiled-${COMMIT}"
LICENSE="BSD BSD-2 GPL-2+"
SLOT="0"
KEYWORDS="amd64"
KEYWORDS="~amd64"
IUSE="minimal python"
REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
@@ -31,11 +33,7 @@ BDEPEND="
dev-qt/qttools:6[linguist]
"
QBS_PRODUCTS="tiled,csv,json"
PATCHES=(
"${FILESDIR}/tiled-1.11-qt6.8.2.patch"
)
QBS_PRODUCTS="libtiled,libtilededitor,tiled,csv,json"
pkg_setup() {
if use python; then
@@ -46,9 +44,12 @@ pkg_setup() {
qbs_format_flags() {
local -a array
for flag in ${@}; do
array+=( "\"${flag}\"" )
array+=("\"${flag}\"")
done
echo "[$(IFS=","; echo "${array[*]}")]"
echo "[$(
IFS=","
echo "${array[*]}"
)]"
}
src_configure() {