Diff hardinfo-0.6_alpha_pre20221113 with a hardinfo-0.6_alpha_pre20240320

/usr/portage/app-admin/hardinfo/hardinfo-0.6_alpha_pre20240320.ebuild 2025-02-03 17:39:32.274664943 +0300
1
# Copyright 1999-2024 Gentoo Authors
1
# Copyright 1999-2025 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
5 5

  
6 6
inherit xdg cmake
7 7

  
8
GIT_COMMIT="a798cbaed6f1b083cc3c26dbede74cf40947d0ef"
8
GIT_COMMIT="4c97625c5666fa5fc353e7cab322b09159e54ed4"
9 9

  
10 10
DESCRIPTION="System information and benchmark tool for Linux systems"
11 11
HOMEPAGE="https://github.com/lpereira/hardinfo"
......
13 13

  
14 14
LICENSE="GPL-2"
15 15
SLOT="0"
16
KEYWORDS="amd64 ~arm64 ppc64 ~riscv x86"
16
KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
17 17
IUSE="debug"
18 18

  
19 19
RDEPEND="dev-libs/glib:2
20 20
	dev-libs/json-glib
21
	net-libs/libsoup:2.4
22 21
	sys-libs/zlib
23 22
	x11-libs/cairo
24 23
	>=x11-libs/gtk+-3.0:3"
......
30 29
PATCHES=( "${FILESDIR}"/hardinfo-0.6-fix-function-declarations.patch )
31 30

  
32 31
src_configure() {
32
	# Only used for update checking. Revisit when switching to hardinfo2.
33
	sed -i -e '/LIBSOUP/d' CMakeLists.txt || die
34

  
33 35
	local mycmakeargs=(
34 36
		-DHARDINFO_GTK3=1
35 37
		-DHARDINFO_DEBUG=$(usex debug 1 0)
Thank you!