Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: gui-libs/libhandy/
Date: Fri, 08 Jan 2021 04:15:41
Message-Id: 1610079321.393f25a28f758a156d040b2d176351e0038197eb.mattst88@gentoo
1 commit: 393f25a28f758a156d040b2d176351e0038197eb
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 8 04:14:06 2021 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 8 04:15:21 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=393f25a2
7
8 gui-libs/libhandy: Version bump to 1.0.3
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 gui-libs/libhandy/Manifest | 1 +
13 gui-libs/libhandy/libhandy-1.0.3.ebuild | 56 +++++++++++++++++++++++++++++++++
14 2 files changed, 57 insertions(+)
15
16 diff --git a/gui-libs/libhandy/Manifest b/gui-libs/libhandy/Manifest
17 index 761fa664357..96ca618977f 100644
18 --- a/gui-libs/libhandy/Manifest
19 +++ b/gui-libs/libhandy/Manifest
20 @@ -1,2 +1,3 @@
21 DIST libhandy-1.0.2.tar.xz 388756 BLAKE2B c4995c5865378b133ba90125cd2c6c7500730be32b2426ccb323c878c22e556c0aad4eb0a5ab5f6ff936b3132a1717759af826e5bc0c9426b6f6972ac20f4f44 SHA512 411e016e1770ea83507a66e6e751f223304890cd193191c28cf751f8128dc5c98feb5342012596c10219e4da5a2445659395a0e7086d5c9990f7845b0406c685
22 +DIST libhandy-1.0.3.tar.xz 389068 BLAKE2B 2892103a672551f9a48a2f877568548fe771aeddbf156427baf03f8654488b5a0a8218f621366a47097030eb0ecf5abeb4f021d320046602cda0a028d91ec566 SHA512 cc304acc53e0819dce4931292e395ba44c1eb8630ebfa56390637bf376de226f4545906892967815c3e144423409b5a85e293568d3ed8069a6c4775307aeef4f
23 DIST libhandy-v0.0.13.tar.bz2 394811 BLAKE2B 318c226f20b4d8032e984dbd47b4634e828b922dcbc244e4f3f35b94c38f27ed38427196d553809bb1d6bfa7c4830db5d27701e3595cac8a05b58a27ba4a2472 SHA512 a0918c55c9ac14af223a83db542e7dc815d97c844d1f0830a1bee4bdcdf248d00d049fa90fd2be96265535a68d56de5143ddd9264b5e997a902ac9558d5096f3
24
25 diff --git a/gui-libs/libhandy/libhandy-1.0.3.ebuild b/gui-libs/libhandy/libhandy-1.0.3.ebuild
26 new file mode 100644
27 index 00000000000..1df7e54eddb
28 --- /dev/null
29 +++ b/gui-libs/libhandy/libhandy-1.0.3.ebuild
30 @@ -0,0 +1,56 @@
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 gnome.org meson xdg vala virtualx
37 +
38 +DESCRIPTION="Building blocks for modern adaptive GNOME apps"
39 +HOMEPAGE="https://gitlab.gnome.org/GNOME/libhandy/"
40 +
41 +LICENSE="LGPL-2.1+"
42 +SLOT="1"
43 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
44 +
45 +IUSE="examples glade gtk-doc +introspection test +vala"
46 +REQUIRED_USE="vala? ( introspection )"
47 +RESTRICT="!test? ( test )"
48 +
49 +RDEPEND="
50 + >=dev-libs/glib-2.44:2
51 + >=x11-libs/gtk+-3.24.1:3[introspection?]
52 + glade? ( dev-util/glade:3.10= )
53 + introspection? ( >=dev-libs/gobject-introspection-1.54:= )
54 +"
55 +DEPEND="${RDEPEND}"
56 +BDEPEND="
57 + dev-libs/libxml2:2
58 + dev-util/glib-utils
59 + >=sys-devel/gettext-0.19.8
60 + virtual/pkgconfig
61 + gtk-doc? ( dev-util/gtk-doc
62 + app-text/docbook-xml-dtd:4.3 )
63 + vala? ( $(vala_depend) )
64 +"
65 +
66 +src_prepare() {
67 + use vala && vala_src_prepare
68 + xdg_src_prepare
69 +}
70 +
71 +src_configure() {
72 + local emesonargs=(
73 + -Dprofiling=false # -pg passing
74 + $(meson_feature introspection)
75 + $(meson_use vala vapi)
76 + $(meson_use gtk-doc gtk_doc)
77 + $(meson_use test tests)
78 + $(meson_use examples)
79 + $(meson_feature glade glade_catalog)
80 + )
81 + meson_src_configure
82 +}
83 +
84 +src_test() {
85 + virtx meson_src_test
86 +}