Gentoo Archives: gentoo-commits

From: Gilles Dartiguelongue <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/baobab/
Date: Fri, 28 Dec 2018 23:58:10
Message-Id: 1546041469.e35be1e09b3a2ba56032763c01116bb1c5e75ab0.eva@gentoo
1 commit: e35be1e09b3a2ba56032763c01116bb1c5e75ab0
2 Author: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
3 AuthorDate: Fri Dec 28 22:38:27 2018 +0000
4 Commit: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
5 CommitDate: Fri Dec 28 23:57:49 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e35be1e0
7
8 sys-apps/baobab: 3.26.1 → 3.30.0
9
10 Switch build system to meson. Drop gsettings-desktop-schemas as it is
11 unused. adwaita-icon-theme is pulled by gtk+:3.
12
13 Package-Manager: Portage-2.3.53, Repoman-2.3.12
14 Signed-off-by: Gilles Dartiguelongue <eva <AT> gentoo.org>
15
16 sys-apps/baobab/Manifest | 1 +
17 sys-apps/baobab/baobab-3.30.0.ebuild | 41 ++++++++++++++++++++++++++++++++++++
18 2 files changed, 42 insertions(+)
19
20 diff --git a/sys-apps/baobab/Manifest b/sys-apps/baobab/Manifest
21 index 717b68985c4..9b6b0bb3b41 100644
22 --- a/sys-apps/baobab/Manifest
23 +++ b/sys-apps/baobab/Manifest
24 @@ -1 +1,2 @@
25 DIST baobab-3.26.1.tar.xz 973020 BLAKE2B 37ddfbbc72482bf31367210d0f814a6e163c415730d5fd86f3b48c5591c4f7c15cf1e7c3fbe7ddb20a465be5e4a4bf87705bef0175da98a5fffc37588871f1a3 SHA512 be16249de5ba22ef40b7addaae9823ac9d853422d33b3c345aaca1e07e3497793ec00bddfadc0da882b3c187419210026a4a6e66d23ce7c5cac455d39cfd9375
26 +DIST baobab-3.30.0.tar.xz 765760 BLAKE2B 7003507e0923eedd709db8f3934c341215decb77b300b6660a334f6c23dfa6d83476d3c0a0ef3d76a5104a1add0759f7e268e13bcf00f69f51ae5b9986bdefc5 SHA512 3fa1c20e6e3a654d3dfa11b8f0a7e0dea77cc8ab88ff65a4471cd467d3cb3a7d2d39521be1718f3f6ab32984b9331332574f87f5fcaf13c1aa8cf93bd081d7e0
27
28 diff --git a/sys-apps/baobab/baobab-3.30.0.ebuild b/sys-apps/baobab/baobab-3.30.0.ebuild
29 new file mode 100644
30 index 00000000000..345ffcca379
31 --- /dev/null
32 +++ b/sys-apps/baobab/baobab-3.30.0.ebuild
33 @@ -0,0 +1,41 @@
34 +# Copyright 1999-2018 Gentoo Authors
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=6
38 +inherit gnome.org gnome2-utils meson vala xdg
39 +
40 +DESCRIPTION="Disk usage browser for GNOME"
41 +HOMEPAGE="https://wiki.gnome.org/Apps/Baobab"
42 +
43 +LICENSE="GPL-2+ FDL-1.1+"
44 +SLOT="0"
45 +IUSE=""
46 +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
47 +
48 +RDEPEND="
49 + >=dev-libs/glib-2.44:2
50 + >=x11-libs/gtk+-3.20:3
51 +"
52 +DEPEND="${RDEPEND}
53 + dev-libs/appstream-glib
54 + dev-util/itstool
55 + >=sys-devel/gettext-0.19.8
56 + virtual/pkgconfig
57 +"
58 +
59 +src_prepare() {
60 + vala_src_prepare
61 + xdg_src_prepare
62 +}
63 +
64 +pkg_postinst() {
65 + xdg_pkg_postinst
66 + gnome2_schemas_update
67 + gnome2_icon_cache_update
68 +}
69 +
70 +pkg_postrm() {
71 + xdg_pkg_postrm
72 + gnome2_schemas_update
73 + gnome2_icon_cache_update
74 +}