Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/atk/
Date: Thu, 19 Sep 2019 07:15:56
Message-Id: 1568877190.1119de81f4cfb3f58274dcbb2b34b98a4cf88b7c.leio@gentoo
1 commit: 1119de81f4cfb3f58274dcbb2b34b98a4cf88b7c
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 19 06:08:25 2019 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 19 07:13:10 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1119de81
7
8 dev-libs/atk: bump to 2.32.0
9
10 Package-Manager: Portage-2.3.69, Repoman-2.3.12
11 Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>
12
13 dev-libs/atk/Manifest | 1 +
14 dev-libs/atk/atk-2.32.0.ebuild | 47 ++++++++++++++++++++++++++++++++++++++++++
15 2 files changed, 48 insertions(+)
16
17 diff --git a/dev-libs/atk/Manifest b/dev-libs/atk/Manifest
18 index eeb577790df..83b5df2211a 100644
19 --- a/dev-libs/atk/Manifest
20 +++ b/dev-libs/atk/Manifest
21 @@ -1,2 +1,3 @@
22 DIST atk-2.28.1.tar.xz 712508 BLAKE2B 71aee8bc937e1e37d40e6a9820d0002bcc763dbf87385ede2484ec6fe17a9924d5753d74dc3a769602746c915d0c46da8eea78cc80c706e3c38faca2e5050364 SHA512 aa61e7718b3f4d9c33ec2b4747e35f894a51550ef39ecc4a7af5705811c029645bd3c728071f446b075a0b7aef0c35c1b73406a210cd30171838f24a8dfc0abb
23 DIST atk-2.30.0.tar.xz 290264 BLAKE2B dec44abf3bd4937f417cd0b75bee32fdd073ccca1e44d883293d060afbbc30909aac483007e293231fafe0c5481df94d1113d287a0002a823f4e9c8e7bd647c2 SHA512 03f311378fdb91442f27ed542fa36edd2c9c036837c9f25ff37468bf7f743277d0b9253621563d15894e0da9d37e8df0a0e2c0e47e6aae33a38b13744c3b8b8e
24 +DIST atk-2.32.0.tar.xz 292088 BLAKE2B 15f093db60cc54d1a5a18dc78cb9d64fa73e18dadb724fe5143956199f4ff1aa4ea9daf0796b14f228a1d91f1d44e88749c67fe5a6a84bd001916d78be4680f9 SHA512 8cd2a3ee006f21835f3e564f2e1de4ae61bd9529b4c0b4f2e3ece88e905e2dd36b67affb089f41582806a1397576602a526a4b8698303708894f20af97ecac22
25
26 diff --git a/dev-libs/atk/atk-2.32.0.ebuild b/dev-libs/atk/atk-2.32.0.ebuild
27 new file mode 100644
28 index 00000000000..3297fc0c604
29 --- /dev/null
30 +++ b/dev-libs/atk/atk-2.32.0.ebuild
31 @@ -0,0 +1,47 @@
32 +# Copyright 1999-2019 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +inherit gnome.org meson multilib-minimal xdg
37 +
38 +DESCRIPTION="GTK+ & GNOME Accessibility Toolkit"
39 +HOMEPAGE="https://wiki.gnome.org/Accessibility"
40 +
41 +LICENSE="LGPL-2+"
42 +SLOT="0"
43 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
44 +IUSE="gtk-doc +introspection"
45 +
46 +RDEPEND="
47 + >=dev-libs/glib-2.34.3:2[${MULTILIB_USEDEP}]
48 + introspection? ( >=dev-libs/gobject-introspection-1.54.0:= )
49 +"
50 +DEPEND="${RDEPEND}"
51 +BDEPEND="
52 + dev-util/glib-utils
53 + gtk-doc? (
54 + >=dev-util/gtk-doc-1.25
55 + app-text/docbook-xml-dtd:4.3 )
56 + >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}]
57 + >=sys-devel/gettext-0.19.8
58 +"
59 +
60 +multilib_src_configure() {
61 + local emesonargs=(
62 + -Ddocs=$(multilib_native_usex gtk-doc true false)
63 + -Dintrospection=$(multilib_native_usex introspection true false)
64 + )
65 + meson_src_configure
66 +}
67 +
68 +multilib_src_compile() {
69 + meson_src_compile
70 +}
71 +
72 +multilib_src_test() {
73 + meson_src_test
74 +}
75 +
76 +multilib_src_install() {
77 + meson_src_install
78 +}