Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/gtkmm/
Date: Tue, 13 Sep 2022 20:11:40
Message-Id: 1663099504.2d42c4d30c1e09b4d669117decc7f57dc9d69562.mattst88@gentoo
1 commit: 2d42c4d30c1e09b4d669117decc7f57dc9d69562
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 13 19:27:07 2022 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 13 20:05:04 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d42c4d3
7
8 dev-cpp/gtkmm: Version bump to 4.8.0
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 dev-cpp/gtkmm/Manifest | 1 +
13 dev-cpp/gtkmm/gtkmm-4.8.0.ebuild | 52 ++++++++++++++++++++++++++++++++++++++++
14 2 files changed, 53 insertions(+)
15
16 diff --git a/dev-cpp/gtkmm/Manifest b/dev-cpp/gtkmm/Manifest
17 index 4d617000f6ee..b59f5b6f5651 100644
18 --- a/dev-cpp/gtkmm/Manifest
19 +++ b/dev-cpp/gtkmm/Manifest
20 @@ -1,3 +1,4 @@
21 DIST gtkmm-2.24.5.tar.xz 12022024 BLAKE2B 6b2bca9fe6ad81cd956e1f3cc3140bc503b78386cf3931c8eeac08c8b2a08c73450bdbb703d1febaee67cdf834093ff5e89790f866357190822613a68a596ad3 SHA512 c50e52830977c37181439f4b82a30ac8bead0cf9022d2bec8225f8dc33e08414f863bf67056e1938fae8f888c09a5a6d757acc011fa9331a78caa6bb626dd51e
22 DIST gtkmm-3.24.6.tar.xz 13530384 BLAKE2B 74fdf054a69a483a25234d30cc8cb920a3c1c8609601802d92bf7c57fcdc468d29bedf32b34997fbcaa5f72a07e467bc68a0c87a481b071d95a3a068e9fcaac7 SHA512 d6fc2d0689baca2b968820d1af86cc0b175b6f38f720d315bc50663d30bd0a841da57ac4336abec236542fb2893b28b2de84087419b73aba58b41f07568d4d93
23 DIST gtkmm-4.6.1.tar.xz 13911284 BLAKE2B a456d19a7a5146f6a4ba93a77a053318353f14152488703c77c5a5d8532b1caa074954af875559bea8739022e4ca2cda49ed6a424946362bf39c0acd94a3a69c SHA512 87867deb2b4b0e50841e42d5957f9030c31c4ec1178b71a884a84c3c3aca178100ceb011729559f8f8f761dbe241c3cf4d420cc16c5b5aedcdd1d78f582d006d
24 +DIST gtkmm-4.8.0.tar.xz 15898612 BLAKE2B 8263eca4df519cbf2de2da2505872b6ceec24b05b2f0d145e3980afa2a9e45fe864e7445a646d7027a6362c11355a817de0f783f5539c68ec07afd03981dc942 SHA512 9cc769ad7d0fdfd675306a441697c63164d4b5221ab895bf06800a7e47b48d2e28b09cce057bcca8e95d1b20112a809d313ae485d349f5450cf11bb4eab361a6
25
26 diff --git a/dev-cpp/gtkmm/gtkmm-4.8.0.ebuild b/dev-cpp/gtkmm/gtkmm-4.8.0.ebuild
27 new file mode 100644
28 index 000000000000..b44301885b72
29 --- /dev/null
30 +++ b/dev-cpp/gtkmm/gtkmm-4.8.0.ebuild
31 @@ -0,0 +1,52 @@
32 +# Copyright 1999-2022 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=8
36 +
37 +PYTHON_COMPAT=( python3_{8..11} )
38 +inherit gnome.org meson python-any-r1 virtualx
39 +
40 +DESCRIPTION="C++ interface for GTK+"
41 +HOMEPAGE="https://www.gtkmm.org"
42 +
43 +LICENSE="LGPL-2.1+"
44 +SLOT="4.0"
45 +KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
46 +IUSE="doc test"
47 +
48 +RESTRICT="!test? ( test )"
49 +
50 +RDEPEND="
51 + >=dev-cpp/glibmm-2.68.0:2.68[doc?]
52 + >=gui-libs/gtk-4.7.2:4
53 + >=dev-cpp/cairomm-1.15.4:1.16[doc?]
54 + >=dev-cpp/pangomm-2.50.0:2.48[doc?]
55 + >=x11-libs/gdk-pixbuf-2.35.5:2
56 + >=media-libs/libepoxy-1.2
57 +"
58 +DEPEND="
59 + ${RDEPEND}
60 + doc? ( dev-libs/libsigc++:3 )
61 +"
62 +BDEPEND="
63 + virtual/pkgconfig
64 + doc? (
65 + app-doc/doxygen[dot]
66 + dev-lang/perl
67 + dev-libs/libxslt
68 + )
69 + ${PYTHON_DEPS}
70 +"
71 +
72 +src_configure() {
73 + local emesonargs=(
74 + -Dbuild-demos=false
75 + $(meson_use doc build-documentation)
76 + $(meson_use test build-tests)
77 + )
78 + meson_src_configure
79 +}
80 +
81 +src_test() {
82 + virtx meson_src_test
83 +}