Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: xfce-base/libxfce4util/
Date: Mon, 31 Oct 2022 16:53:54
Message-Id: 1667235028.3782061d2e427058a68ff380a1bd322f9fea576b.mgorny@gentoo
1 commit: 3782061d2e427058a68ff380a1bd322f9fea576b
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Oct 31 16:50:28 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 31 16:50:28 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3782061d
7
8 xfce-base/libxfce4util: Bump to 4.17.3
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 xfce-base/libxfce4util/Manifest | 1 +
13 xfce-base/libxfce4util/libxfce4util-4.17.3.ebuild | 45 +++++++++++++++++++++++
14 2 files changed, 46 insertions(+)
15
16 diff --git a/xfce-base/libxfce4util/Manifest b/xfce-base/libxfce4util/Manifest
17 index d8eda3bd203e..50e6dac3f9bb 100644
18 --- a/xfce-base/libxfce4util/Manifest
19 +++ b/xfce-base/libxfce4util/Manifest
20 @@ -1,2 +1,3 @@
21 DIST libxfce4util-4.16.0.tar.bz2 508328 BLAKE2B 99578b898389bd90841a7f903f5473b2ff357cf81256efe1019425b48da32401ce238deffefd299987477f4cdfb77e86e415b55049863c30bf16e0e641e08c72 SHA512 dce6992c3da73367461d7464794a9b2a5503666113682e07a86e18b1c5383de2b087809448d5729097571f4fda6b4af5f4f4600848514ab2ab4b3f367ca26f5c
22 DIST libxfce4util-4.17.2.tar.bz2 518831 BLAKE2B 4f1241271edab56063c8e5f3ad6b662a19b08ea06c73eb76e124d9fc8cd9a2b26578517fc6e4b0d5e8c3351877c7b5e077818b916297ac24e273c745cb624eec SHA512 3f079570916c3876373155a3ea15b6326ddadd815efdf7d7abd2ccd9768a96b3191f4e050bb51f2e28bc6b121b7ef9823e7a4caf608398220f527a4df7e29c6f
23 +DIST libxfce4util-4.17.3.tar.bz2 511545 BLAKE2B 9b198099277b073c67265bca8f63fe42526de6ee7f4d43b0b1c767edcb6f47c29751b78dfe4f38b569cdb3448e8e2eaf3da7556b2c4f09ba6a9a54a0f0946b40 SHA512 b943390b8ffd0b765e945cd1045d97c66203ae77b5c8e0ecd253f527a75fbf07beaea138877e9d4b3e09ad2f89747ebfe3b6d40cb9472e6bdec475309c3ec0cc
24
25 diff --git a/xfce-base/libxfce4util/libxfce4util-4.17.3.ebuild b/xfce-base/libxfce4util/libxfce4util-4.17.3.ebuild
26 new file mode 100644
27 index 000000000000..8d73500053d8
28 --- /dev/null
29 +++ b/xfce-base/libxfce4util/libxfce4util-4.17.3.ebuild
30 @@ -0,0 +1,45 @@
31 +# Copyright 1999-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +inherit vala
37 +
38 +DESCRIPTION="A basic utility library for the Xfce desktop environment"
39 +HOMEPAGE="
40 + https://docs.xfce.org/xfce/libxfce4util/start
41 + https://gitlab.xfce.org/xfce/libxfce4util/
42 +"
43 +SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2"
44 +
45 +LICENSE="LGPL-2+ GPL-2+"
46 +SLOT="0/7"
47 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris"
48 +IUSE="+introspection vala"
49 +REQUIRED_USE="vala? ( introspection )"
50 +
51 +RDEPEND="
52 + >=dev-libs/glib-2.56
53 + introspection? ( >=dev-libs/gobject-introspection-1.66:= )"
54 +DEPEND="${RDEPEND}"
55 +BDEPEND="
56 + dev-util/intltool
57 + dev-util/gtk-doc-am
58 + sys-devel/gettext
59 + virtual/pkgconfig
60 + vala? ( $(vala_depend) )"
61 +
62 +src_configure() {
63 + local myconf=(
64 + $(use_enable introspection)
65 + $(use_enable vala)
66 + )
67 +
68 + use vala && vala_setup
69 + econf "${myconf[@]}"
70 +}
71 +
72 +src_install() {
73 + default
74 + find "${D}" -name '*.la' -delete || die
75 +}