media-gfx/maim: drop 5.8.0

Signed-off-by: Lucio Sauer <watermanpaint@posteo.net>
Part-of: https://github.com/gentoo/gentoo/pull/44258
Closes: https://github.com/gentoo/gentoo/pull/44258
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
This commit is contained in:
Lucio Sauer 2025-10-20 10:25:20 +02:00 committed by Andreas Sturmlechner
parent 266d32d8ed
commit bf33e11c67
No known key found for this signature in database
GPG Key ID: AE591BBC73E4DD5E
4 changed files with 0 additions and 72 deletions

View File

@ -1,2 +1 @@
DIST maim-5.8.0.tar.gz 42224 BLAKE2B 572743db1d59d802ed7eb7e259a5cb4a4d2147d95169bbb40adf6d36b849562e8f1756b082bc076bc46d2449827ac3b02f0b539ce86760c755920b4e35b6762d SHA512 418725b1950f9374c2ff7508e1c52f6986b253ea1c155ef28604e514f1cf0753185eea43cde76a65b9de80bb8dd65ced48b49ce5dfccaf20f5caa49f41743f5b
DIST maim-5.8.1.tar.gz 41729 BLAKE2B 540be4bd3bab3b10c5aace41835c3932ae1c92b1492ef2cfa21d3613c8c3453bd1c27f4111a638799203c371133e676c5ebe14ec01e1a744b075575d73d62a2f SHA512 34f649b3f1143833bc5a564c18f5aa99e1550792767f33165fc8212efef43ecfba7857791729945d25749c6cf17d707e35a0069f0a590a3c67a4648d952830aa

View File

@ -1,10 +0,0 @@
Upstream commit that fixes https://bugs.gentoo.org/957925
https://github.com/naelstrof/maim/commit/1011cfe347fc744ef573474f4111e533c5490a65
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,4 +1,4 @@
-cmake_minimum_required( VERSION 3.1.3 )
+cmake_minimum_required( VERSION 3.5.0 )
project(maim VERSION 5.8.0 LANGUAGES CXX)

View File

@ -1,11 +0,0 @@
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -38,7 +38,7 @@ find_package( Threads REQUIRED )
find_package( GLM REQUIRED )
set_property(TARGET ${BIN_TARGET} PROPERTY CXX_STANDARD_REQUIRED ON)
-set_property(TARGET ${BIN_TARGET} PROPERTY CXX_STANDARD 11)
+set_property(TARGET ${BIN_TARGET} PROPERTY CXX_STANDARD 17)
set_property(TARGET ${BIN_TARGET} PROPERTY CXX_EXTENSIONS OFF)
# Includes

View File

@ -1,50 +0,0 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="Commandline tool to take screenshots of the desktop"
HOMEPAGE="https://github.com/naelstrof/maim"
if [[ ${PV} == *9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/naelstrof/maim.git"
else
SRC_URI="https://github.com/naelstrof/maim/archive/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="amd64 ~x86"
fi
LICENSE="GPL-3+ MIT"
SLOT="0"
IUSE="icu"
DEPEND="
media-libs/libjpeg-turbo:=
media-libs/libpng:0=
media-libs/libwebp:=
virtual/opengl
x11-libs/libX11
x11-libs/libXcomposite
x11-libs/libXext
x11-libs/libXfixes
x11-libs/libXrandr
x11-libs/libXrender
>=x11-misc/slop-7.5:=
icu? ( dev-libs/icu:= )
"
RDEPEND="${DEPEND}"
PATCHES=(
"${FILESDIR}/${P}-cmake-4.patch" # bug 957925
# Upstreamed: https://github.com/naelstrof/maim/commit/b27fe197ea1d6116c2b7e92a0e4523a76db8e900
"${FILESDIR}/${P}-icu-75.patch" # bug 937454
)
src_configure() {
local mycmakeargs=(
-DMAIM_UNICODE=$(usex icu)
)
cmake_src_configure
}