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, 19 Jul 2021 06:04:47
Message-Id: 1626674297.0be18f230bc27b5c13cfd6e302904c2ae41222f2.mgorny@gentoo
1 commit: 0be18f230bc27b5c13cfd6e302904c2ae41222f2
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jul 19 05:58:17 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Jul 19 05:58:17 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0be18f23
7
8 xfce-base/libxfce4util: Bump to 4.17.1
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.1.ebuild | 47 +++++++++++++++++++++++
14 2 files changed, 48 insertions(+)
15
16 diff --git a/xfce-base/libxfce4util/Manifest b/xfce-base/libxfce4util/Manifest
17 index 2dc9dc8acb8..2099b9b9a15 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.0.tar.bz2 531849 BLAKE2B 5c5de18703ade8bfa6a6be823144839afc309422131c06679a54b405c8d6aced4f1ccd0b9d0158931b6eed90aa48ab29789d1173c98541f92d3813c197283762 SHA512 4cdca029fb5e8b1cb5b34ca54aa1003918626824ee162adf43cede4c717b5e9705a5c0ff73f1a6348db320c4f3dddf4c9b8c760fba55f00d42bdb8fe7a9d90fa
23 +DIST libxfce4util-4.17.1.tar.bz2 527366 BLAKE2B 12de2090c0e2f7bb2bdd19ce63988810978f6d5893f866d65348dedfbb260ec11b518f8375ddc19a0a3502b14743878eb731ece79f31edf94d2bd505ea80d9c5 SHA512 49d11b50bbb0f72637bbdb9abba4e526f34814900dae337ad5e53df4514019a9761a89ef65a39e6ad94d633f7617c8466cb3985c5fae5350c45955d36077a0fc
24
25 diff --git a/xfce-base/libxfce4util/libxfce4util-4.17.1.ebuild b/xfce-base/libxfce4util/libxfce4util-4.17.1.ebuild
26 new file mode 100644
27 index 00000000000..71a581a40f2
28 --- /dev/null
29 +++ b/xfce-base/libxfce4util/libxfce4util-4.17.1.ebuild
30 @@ -0,0 +1,47 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +inherit vala
37 +
38 +DESCRIPTION="A basic utility library for the Xfce desktop environment"
39 +HOMEPAGE="https://git.xfce.org/xfce/libxfce4util/"
40 +SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2"
41 +
42 +LICENSE="LGPL-2+ GPL-2+"
43 +SLOT="0/7"
44 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris"
45 +IUSE="+introspection vala"
46 +REQUIRED_USE="vala? ( introspection )"
47 +
48 +RDEPEND="
49 + >=dev-libs/glib-2.56
50 + introspection? ( dev-libs/gobject-introspection:= )"
51 +DEPEND="${RDEPEND}"
52 +BDEPEND="
53 + dev-util/intltool
54 + dev-util/gtk-doc-am
55 + sys-devel/gettext
56 + virtual/pkgconfig
57 + vala? ( $(vala_depend) )"
58 +
59 +src_prepare() {
60 + # stupid vala.eclass...
61 + default
62 +}
63 +
64 +src_configure() {
65 + local myconf=(
66 + $(use_enable introspection)
67 + $(use_enable vala)
68 + )
69 +
70 + use vala && vala_src_prepare
71 + econf "${myconf[@]}"
72 +}
73 +
74 +src_install() {
75 + default
76 + find "${D}" -name '*.la' -delete || die
77 +}