Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/granite/
Date: Sat, 07 Sep 2019 08:11:47
Message-Id: 1567843866.73a70b2440838a24eb598e7a5a5381f4dafd3f92.juippis@gentoo
1 commit: 73a70b2440838a24eb598e7a5a5381f4dafd3f92
2 Author: Bernardo Meurer <bernardo <AT> standard <DOT> ai>
3 AuthorDate: Fri Sep 6 21:11:39 2019 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 7 08:11:06 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73a70b24
7
8 dev-libs/granite: bump 5.2.5
9
10 Closes: https://bugs.gentoo.org/693628
11 Package-Manager: Portage-2.3.75, Repoman-2.3.17
12 Signed-off-by: Bernardo Meurer <bernardo <AT> standard.ai>
13 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
14
15 dev-libs/granite/Manifest | 1 +
16 dev-libs/granite/granite-5.2.5.ebuild | 44 +++++++++++++++++++++++++++++++++++
17 2 files changed, 45 insertions(+)
18
19 diff --git a/dev-libs/granite/Manifest b/dev-libs/granite/Manifest
20 index 9b7e8b61fc7..cd405f81d98 100644
21 --- a/dev-libs/granite/Manifest
22 +++ b/dev-libs/granite/Manifest
23 @@ -1,2 +1,3 @@
24 DIST granite-0.5.0.tar.gz 365015 BLAKE2B 47b88d0b08a300fecc561161e1722cc1a544f58580d21244b6584f6aba7756afe6548dd663620fe9a09406fc0be2766b1d1093a21d262a5ab001992f309239ed SHA512 6042f40c1338768281ab3e6ad0bfdd8c5c69fc4951a069b0779a22b8999b35110ea8f09cf025dd88bafef7eca6cc0d076a608d55f01c078186e150908f8e4650
25 DIST granite-5.2.4.tar.gz 390145 BLAKE2B 30abee1669bf2211aa776a5ddf38b914bc95e466f2853f4e852b77947b666c06ce8ac77a47b22bce0cdbf8e6804935007b5cef700c49db302528b7bbb0063543 SHA512 3a52a92a49f887bb802754b99b7c9c3fd13c197c74da7c25f1fd4c03b76d916197079b813909d2cceb11cb10b26e9f64978563b95319d0c744c5b612c50ce306
26 +DIST granite-5.2.5.tar.gz 392987 BLAKE2B 507c3b810b750257a66195b45842a7664eb544f86a8606124d30d277c03680296f1ace7a9233d6e094ad5ce3357564e13b61d946f8ed926ccf22a5d9b5e98648 SHA512 64a08293bc4b33d77206c7070b4e2002dd8e2da8a358e43074b681a9228790dcb342d3a705cfc0309a7e1e7f498a2a656e972c2fee085ba99fb5214e33758fc3
27
28 diff --git a/dev-libs/granite/granite-5.2.5.ebuild b/dev-libs/granite/granite-5.2.5.ebuild
29 new file mode 100644
30 index 00000000000..29e4040c128
31 --- /dev/null
32 +++ b/dev-libs/granite/granite-5.2.5.ebuild
33 @@ -0,0 +1,44 @@
34 +# Copyright 1999-2019 Gentoo Authors
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=7
38 +
39 +VALA_MIN_API_VERSION=0.40
40 +
41 +inherit meson vala xdg-utils
42 +
43 +DESCRIPTION="Elementary OS library that extends GTK+"
44 +HOMEPAGE="https://github.com/elementary/granite"
45 +SRC_URI="https://github.com/elementary/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
46 +
47 +LICENSE="LGPL-3+"
48 +SLOT="0"
49 +KEYWORDS="~amd64 ~arm ~x86"
50 +# FIXME: Figure out issues with enabling doc.
51 +# See https://github.com/gentoo/gentoo/pull/12690#issuecomment-525027164
52 +IUSE="test"
53 +
54 +BDEPEND="
55 + $(vala_depend)
56 + >=dev-util/meson-0.48.2
57 + virtual/pkgconfig
58 +"
59 +DEPEND="
60 + >=dev-libs/glib-2.50:2
61 + dev-libs/libgee:0.8[introspection]
62 + >=x11-libs/gtk+-3.22:3[introspection]
63 +"
64 +RDEPEND="${DEPEND}"
65 +
66 +src_prepare() {
67 + vala_src_prepare
68 + eapply_user
69 +}
70 +
71 +pkg_postinst() {
72 + xdg_icon_cache_update
73 +}
74 +
75 +pkg_postrm() {
76 + xdg_icon_cache_update
77 +}