dev-util/icemon: drop 3.3-r1

Closes: https://bugs.gentoo.org/952816
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
This commit is contained in:
Andreas Sturmlechner
2025-05-25 21:02:34 +02:00
parent b2856ee3da
commit f6d74df7cb
3 changed files with 0 additions and 57 deletions

View File

@@ -1,2 +1 @@
DIST icemon-3.3.tar.xz 95308 BLAKE2B e387bccd4361ddcf852ad07207ff9007cd70c16ab6bfda3d4a4a4a620a826bd4969d95613aeaa51f1977f4fe00068e3deca90b31e3bc963795c6461f4a14e2d1 SHA512 326e28959b9f3c9223dec38507414ca44b99cdb52282da27d1f3f96305d9f7e595eb1b9949021957f1b21d5b95811c8de2d9f33a78bc985616f7001bb20eb81d
DIST icemon-3.3_p20250520-1f9d2915.tar.gz 111411 BLAKE2B e72f6cf8ce8fb5efcde68531e7ab175d074fa65329ce816f93e449357f0cafd34f647bf30078544ece89c3e504b470b20ef0691ba7a5a5f9111c06d9395223af SHA512 234895a5be800c02acfe65710cf5f16eba4e5f3c28bac8999e4c98198754d7b7bd05cb717a04026f5d2d2bd578953a3b9b482400077a1fc0e5b6491ee960f212

View File

@@ -1,18 +0,0 @@
https://bugs.gentoo.org/953042
https://github.com/icecc/icemon/commit/b07bf3eb0c28ac5cd527d3ab675d2273d1866b48
From b07bf3eb0c28ac5cd527d3ab675d2273d1866b48 Mon Sep 17 00:00:00 2001
From: Sergio Martins <sergio.martins@kdab.com>
Date: Mon, 28 Apr 2025 03:39:49 +0100
Subject: [PATCH] Fix build with CMake 4.0
Newer CMake doesn't support such old minimum version
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,4 +1,4 @@
-cmake_minimum_required(VERSION 3.1.0)
+cmake_minimum_required(VERSION 3.10.0)
project(icemon VERSION 3.3)
find_package(ECM REQUIRED NO_MODULE)

View File

@@ -1,38 +0,0 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake xdg
DESCRIPTION="Monitor program for use with Icecream compile clusters based on KDE Frameworks"
HOMEPAGE="https://en.opensuse.org/Icecream https://github.com/icecc/icemon"
SRC_URI="https://github.com/icecc/icemon/releases/download/v${PV}/${P}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtwidgets:5
>=sys-devel/icecream-1.3
"
DEPEND="${RDEPEND}"
BDEPEND="
app-text/docbook2X
kde-frameworks/extra-cmake-modules
"
PATCHES=(
"${FILESDIR}"/${PN}-3.3-cmake-4.patch
)
src_configure() {
local mycmakeargs=(
-DCMAKE_DISABLE_FIND_PACKAGE_Doxygen=ON
)
cmake_src_configure
}