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: Tue, 22 Dec 2020 23:35:58
Message-Id: 1608680141.8fbd04a77986374e87ad3d90fe6136b28b5bc9ab.mgorny@gentoo
1 commit: 8fbd04a77986374e87ad3d90fe6136b28b5bc9ab
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 22 23:21:47 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 22 23:35:41 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fbd04a7
7
8 xfce-base/libxfce4util: Bump to 4.16.0
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.16.0.ebuild | 47 +++++++++++++++++++++++
14 2 files changed, 48 insertions(+)
15
16 diff --git a/xfce-base/libxfce4util/Manifest b/xfce-base/libxfce4util/Manifest
17 index 5a904ae7758..29078091f0d 100644
18 --- a/xfce-base/libxfce4util/Manifest
19 +++ b/xfce-base/libxfce4util/Manifest
20 @@ -1,2 +1,3 @@
21 DIST libxfce4util-4.14.0.tar.bz2 516358 BLAKE2B d8e3d1e3247e23908456aa296415240c1a9146001a02cb859541922ee541e30955279fd68f2d9938e43f992a5115b21836363fa8d8234de87fca0bbaac830bf0 SHA512 6ac95aea03052d9e2f886cbe76afe9bbb43511bf3fe1766097e10cd8762541ed17060a727df3ef93e226aae448c15d9dd3ad8acd55a9d5f2387cb360bdf72832
22 DIST libxfce4util-4.15.6.tar.bz2 523102 BLAKE2B 2af9b631dcff75dfb83997a6daa1729aee46929da4c028dd5013b6b801d87758c06b2a9e738ff7734343024c6b2f416828ca1ce0f3cef6b7df252daf3c5d987e SHA512 6241ce0457f99274bdb864fe46c3e4d72e84dcd01bca515505dcab22ceb51a46bae75d586587a4129f45fdb7cefd627e17f4399ef6d6692c2b343a8caed3feef
23 +DIST libxfce4util-4.16.0.tar.bz2 508328 BLAKE2B 99578b898389bd90841a7f903f5473b2ff357cf81256efe1019425b48da32401ce238deffefd299987477f4cdfb77e86e415b55049863c30bf16e0e641e08c72 SHA512 dce6992c3da73367461d7464794a9b2a5503666113682e07a86e18b1c5383de2b087809448d5729097571f4fda6b4af5f4f4600848514ab2ab4b3f367ca26f5c
24
25 diff --git a/xfce-base/libxfce4util/libxfce4util-4.16.0.ebuild b/xfce-base/libxfce4util/libxfce4util-4.16.0.ebuild
26 new file mode 100644
27 index 00000000000..de84c2ad3ba
28 --- /dev/null
29 +++ b/xfce-base/libxfce4util/libxfce4util-4.16.0.ebuild
30 @@ -0,0 +1,47 @@
31 +# Copyright 1999-2020 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 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris"
45 +IUSE="introspection vala"
46 +REQUIRED_USE="vala? ( introspection )"
47 +
48 +RDEPEND=">=dev-libs/glib-2.50
49 + introspection? ( dev-libs/gobject-introspection:= )"
50 +DEPEND="${RDEPEND}"
51 +BDEPEND="
52 + dev-util/intltool
53 + dev-util/gtk-doc-am
54 + sys-devel/gettext
55 + virtual/pkgconfig
56 + vala? ( $(vala_depend) )"
57 +
58 +src_prepare() {
59 + # stupid vala.eclass...
60 + default
61 +}
62 +
63 +src_configure() {
64 + local myconf=(
65 + $(use_enable introspection)
66 + $(use_enable vala)
67 + )
68 +
69 + use vala && vala_src_prepare
70 + econf "${myconf[@]}"
71 +}
72 +
73 +src_install() {
74 + default
75 +
76 + find "${D}" -name '*.la' -delete || die
77 +}