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