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/glibmm/
Date: Tue, 28 Apr 2020 16:44:34
Message-Id: 1588091896.67efc97b265a55072746a52db8b34110ff570ee5.mattst88@gentoo
1 commit: 67efc97b265a55072746a52db8b34110ff570ee5
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Tue Apr 28 07:02:43 2020 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Tue Apr 28 16:38:16 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67efc97b
7
8 dev-cpp/glibmm: Version bump to 2.64.2
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 dev-cpp/glibmm/Manifest | 1 +
13 dev-cpp/glibmm/glibmm-2.64.2.ebuild | 57 +++++++++++++++++++++++++++++++++++++
14 2 files changed, 58 insertions(+)
15
16 diff --git a/dev-cpp/glibmm/Manifest b/dev-cpp/glibmm/Manifest
17 index 95fe7555692..ec39c07fe48 100644
18 --- a/dev-cpp/glibmm/Manifest
19 +++ b/dev-cpp/glibmm/Manifest
20 @@ -1,2 +1,3 @@
21 DIST glibmm-2.60.1.tar.xz 7132072 BLAKE2B 8d25287b7805d7196bffa909447db0e0fa0edd1c243b3ccdef91f1a6573ea0723cda8e88993e878e6c8440b23488b0ab8c9ed727bd4e2d4a46f56ba251510aa0 SHA512 89f1d10bd9b60232519e2e13c02b0b1010dacbe67a8bab06c3a5873649e5090ed3593d518bfd8e12933a08aaa5fc654b1475efc208e2256c7efd197274a28b79
22 DIST glibmm-2.62.0.tar.xz 7398144 BLAKE2B a289c2e6a5737d9fa3d507e4741c1d19e949244db5a6eaec2329bda92e7e0a78e33acf9668ced19a52507fa88531da63fa35cf59dfb44ad2a7a8fa0839c7dae4 SHA512 f26fca5724c17d915480556b6918ae6e4999c14a25e7623cda3d37a59d6965310fc2b2d8a8500a849f1d0f00fd2d326eeddc690207846d38a13ae695ad0805de
23 +DIST glibmm-2.64.2.tar.xz 7438116 BLAKE2B 6ff458e90a5dbc606a2e04ecd3589262a1b96e827dba245985467818a7a4ba80a9c4cb15686fe479636cb8ce7e1db3334195d6334d7ec56327076cad87e22170 SHA512 0130af9a16981a54630150db6f4b1a95458d72d650c5e4781ee97ce624ec98c600b79ebf234d212e025781453fd11d78b9e8273235ffa143397423418fe970cc
24
25 diff --git a/dev-cpp/glibmm/glibmm-2.64.2.ebuild b/dev-cpp/glibmm/glibmm-2.64.2.ebuild
26 new file mode 100644
27 index 00000000000..6889d9dd390
28 --- /dev/null
29 +++ b/dev-cpp/glibmm/glibmm-2.64.2.ebuild
30 @@ -0,0 +1,57 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +inherit gnome.org meson multilib-minimal
36 +
37 +DESCRIPTION="C++ interface for glib2"
38 +HOMEPAGE="https://www.gtkmm.org"
39 +
40 +LICENSE="LGPL-2.1+"
41 +SLOT="2"
42 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris"
43 +IUSE="doc debug test"
44 +RESTRICT="!test? ( test )"
45 +
46 +RDEPEND="
47 + >=dev-libs/libsigc++-2.9.1:2[${MULTILIB_USEDEP}]
48 + >=dev-libs/glib-2.61.2:2[${MULTILIB_USEDEP}]
49 +"
50 +DEPEND="${RDEPEND}"
51 +BDEPEND="
52 + virtual/pkgconfig
53 + doc? ( app-doc/doxygen )
54 + >=dev-cpp/mm-common-1.0.0
55 +"
56 +
57 +src_prepare() {
58 + default
59 +
60 + if ! use test; then
61 + sed -i -e "/^subdir('tests')/d" meson.build || die
62 + fi
63 +}
64 +
65 +multilib_src_configure() {
66 + local emesonargs=(
67 + -Dmaintainer-mode=true
68 + -Dwarnings=min
69 + -Dbuild-deprecated-api=true
70 + -Dbuild-documentation=$(usex doc true false)
71 + -Ddebug-refcounting=$(usex debug true false)
72 + -Dbuild-examples=false
73 + )
74 + meson_src_configure
75 +}
76 +
77 +multilib_src_compile() {
78 + meson_src_compile
79 +}
80 +
81 +multilib_src_test() {
82 + meson_src_test
83 +}
84 +
85 +multilib_src_install() {
86 + meson_src_install
87 +}