commit: 28b33cac2f71e43329ffb2c23884f216c4af029b Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Sun Mar 23 13:42:26 2025 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Sun Mar 23 13:54:04 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28b33cac
xfce-base/libxfce4util: Bump to 4.20.1 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> xfce-base/libxfce4util/Manifest | 1 + xfce-base/libxfce4util/libxfce4util-4.20.1.ebuild | 46 +++++++++++++++++++++++ 2 files changed, 47 insertions(+) diff --git a/xfce-base/libxfce4util/Manifest b/xfce-base/libxfce4util/Manifest index 3c9d78a2d28b..91a80e061923 100644 --- a/xfce-base/libxfce4util/Manifest +++ b/xfce-base/libxfce4util/Manifest @@ -1,2 +1,3 @@ DIST libxfce4util-4.18.2.tar.bz2 514157 BLAKE2B 4c0479d3df308956cecb321783823c3d1f07622260a19b2e7c633a5de6d87a779f1196c10cc5078b01bfabc7ca0cac9a819084414f2dcfbaef3d6d9a69ef3df8 SHA512 94c7371bcfd4ea8dca68a2dc2fe029ce8b232b2b906247bb45a830f13a27833e80831bb6df029d634e6cd8496d4cdcbb9691b6c4344aa51292477f2ebf56bac0 DIST libxfce4util-4.20.0.tar.bz2 616303 BLAKE2B 82060e2fa18472da47cb9dc2268a435fbe443716d8db04f6213eb44bab3193fcfae1b1b71feb03d2f3638dc4305fc5552802faf283c03d9aaff4036badf8700a SHA512 07edc4c8645b3418a659ebb688a48cd1de00d12d06521d30ccfa10b16c4525ce5a869f4b890c9da9b297c44c249a8a091ea1143c72c5f74702cd90337a124ca5 +DIST libxfce4util-4.20.1.tar.bz2 636675 BLAKE2B 6b5b4a72b364ebfe166743194a8277a4b7a302e6efcbdd2b5f9c3b15c48f4c8510990c6917402fd76e4ce29dadac871803344f3625dccb1c6631549bc7531ead SHA512 b9eecac47245c37a46f8e381ed5c672233aae3a78cae8ac0b25a79598847210267172cd03d64d5f4d0405640608f4885092fd62431914b58a930c7b401067268 diff --git a/xfce-base/libxfce4util/libxfce4util-4.20.1.ebuild b/xfce-base/libxfce4util/libxfce4util-4.20.1.ebuild new file mode 100644 index 000000000000..d87192ab9874 --- /dev/null +++ b/xfce-base/libxfce4util/libxfce4util-4.20.1.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit vala + +DESCRIPTION="A basic utility library for the Xfce desktop environment" +HOMEPAGE=" + https://docs.xfce.org/xfce/libxfce4util/start + https://gitlab.xfce.org/xfce/libxfce4util/ +" +SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2" + +LICENSE="LGPL-2+ GPL-2+" +SLOT="0/7" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-solaris" +IUSE="+introspection vala" +REQUIRED_USE="vala? ( introspection )" + +DEPEND=" + >=dev-libs/glib-2.72.0 + introspection? ( >=dev-libs/gobject-introspection-1.72.0:= ) +" +RDEPEND=" + ${DEPEND} +" +BDEPEND=" + >=sys-devel/gettext-0.19.8 + virtual/pkgconfig + vala? ( $(vala_depend) )" + +src_configure() { + local myconf=( + $(use_enable introspection) + $(use_enable vala) + ) + + use vala && vala_setup + econf "${myconf[@]}" +} + +src_install() { + default + find "${D}" -name '*.la' -delete || die +}