public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Matt Turner" <mattst88@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/glibmm/
Date: Sat, 18 Dec 2021 03:47:47 +0000 (UTC)	[thread overview]
Message-ID: <1639799229.1e0a70d9a8899bcbfb39fec1e1d0b89ae67e19b9.mattst88@gentoo> (raw)

commit:     1e0a70d9a8899bcbfb39fec1e1d0b89ae67e19b9
Author:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 17 23:42:01 2021 +0000
Commit:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sat Dec 18 03:47:09 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e0a70d9

dev-cpp/glibmm: Version bump to 2.70.0

Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>

 dev-cpp/glibmm/Manifest             |  1 +
 dev-cpp/glibmm/glibmm-2.70.0.ebuild | 52 +++++++++++++++++++++++++++++++++++++
 2 files changed, 53 insertions(+)

diff --git a/dev-cpp/glibmm/Manifest b/dev-cpp/glibmm/Manifest
index e3240765a51f..6cd3f3284f99 100644
--- a/dev-cpp/glibmm/Manifest
+++ b/dev-cpp/glibmm/Manifest
@@ -2,3 +2,4 @@ DIST glibmm-2.66.1.tar.xz 7509820 BLAKE2B 4750940093cadbae7c32d387ac8b16c8230eb0
 DIST glibmm-2.66.2.tar.xz 7603104 BLAKE2B 5696391bd5dbb35f8c961250af6d9b2644e900ac6a800054e9e7630cbf4882c17ef1bf8cf322e89a3bdbe613d13d4a045920bfc1071442daa3afc78afa8cd759 SHA512 097af6b140a5af3e52cc2c5d251475a5aa923d0c528c3cbc97f31d3a95868bcb3aa2328047ca94a55ef7fd188f271917dfe29faa86f477a441f0a024284216f9
 DIST glibmm-2.68.1.tar.xz 7657712 BLAKE2B a8141e53f89c981a9916d5f71dfd8c6d08e45a653b98c507acaadfefbedf2f22e8130a722f3398f5e0dff8196ffc8efa6567ebb2c8290f7373e34377e281db18 SHA512 ca164f986da651e66bb5b98a760853e73d57ff84e035809d4c3b2c0a1b6ddf8ca68ffc49a71d0e0b2e14eca1c00e2e727e3bf3821e0b2b3a808397c3d33c6d5c
 DIST glibmm-2.68.2.tar.xz 7844508 BLAKE2B 890f3a8f15580891df000acfe365989a6b09a63712b5f24f999a70e62983c725c9aef2b386b8995933c41b345164bb0b330b6cb0af182476f14657db8ba7d0cf SHA512 96b2970ac47e6a8de2d4352412f0107fbdcb61942d27f20a2f533f9704304e5f55c52829567457e7c925f830a69c739bf00676882741ed2969e52caf3e135c46
+DIST glibmm-2.70.0.tar.xz 7874312 BLAKE2B 5d0fb24444b8764e3f972f342a540164debb841f74e5d27db721feff9baa70c9ff5821b26642cb8c5da048f9a1271b1ed7283d9f0338ba0f184be396981310e3 SHA512 059cab7f0b865303cef3cba6c4f3a29ae4e359aba428f5e79cea6fedd3f1e082199f673323cf804902cee14b91739598fbc6ff706ec36f19c4d793d032782518

diff --git a/dev-cpp/glibmm/glibmm-2.70.0.ebuild b/dev-cpp/glibmm/glibmm-2.70.0.ebuild
new file mode 100644
index 000000000000..8cf7ffdce6e5
--- /dev/null
+++ b/dev-cpp/glibmm/glibmm-2.70.0.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+PYTHON_COMPAT=( python3_{8..10} )
+inherit gnome.org meson-multilib python-any-r1
+
+DESCRIPTION="C++ interface for glib2"
+HOMEPAGE="https://www.gtkmm.org"
+
+LICENSE="LGPL-2.1+"
+SLOT="2.68"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
+IUSE="doc debug test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+	>=dev-libs/glib-2.69.1:2[${MULTILIB_USEDEP}]
+	dev-libs/libsigc++:3[doc?,${MULTILIB_USEDEP}]
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+	${PYTHON_DEPS}
+	virtual/pkgconfig
+	doc? (
+		app-doc/doxygen[dot]
+		dev-lang/perl
+		dev-libs/libxslt
+	)
+"
+
+src_prepare() {
+	default
+
+	# giomm_tls_client requires FEATURES=-network-sandbox and glib-networking rdep
+	sed -i -e '/giomm_tls_client/d' tests/meson.build || die
+
+	if ! use test; then
+		sed -i -e "/^subdir('tests')/d" meson.build || die
+	fi
+}
+
+multilib_src_configure() {
+	local emesonargs=(
+		-Dwarnings=min
+		-Dbuild-deprecated-api=true
+		$(meson_native_use_bool doc build-documentation)
+		$(meson_use debug debug-refcounting)
+		-Dbuild-examples=false
+	)
+	meson_src_configure
+}


             reply	other threads:[~2021-12-18  3:47 UTC|newest]

Thread overview: 139+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-12-18  3:47 Matt Turner [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-10-07  2:52 [gentoo-commits] repo/gentoo:master commit in: dev-cpp/glibmm/ Sam James
2024-05-11 17:08 Mart Raudsepp
2024-04-13 10:37 Mart Raudsepp
2024-04-09 22:46 Sam James
2024-04-07  8:38 Arthur Zamarin
2024-04-07  6:07 Arthur Zamarin
2024-03-24 20:46 Mart Raudsepp
2024-03-09 23:15 Mart Raudsepp
2024-02-03 11:07 Sam James
2024-01-07 15:36 Sam James
2024-01-07 15:36 Sam James
2023-12-29 18:58 Arthur Zamarin
2023-12-29 18:58 Arthur Zamarin
2023-12-29 18:58 Arthur Zamarin
2023-12-29 18:39 Arthur Zamarin
2023-05-03  3:53 Sam James
2023-05-03  3:53 Sam James
2023-05-02 20:19 Arthur Zamarin
2023-05-02 20:06 Arthur Zamarin
2023-05-02 19:44 Arthur Zamarin
2023-05-02 19:28 Arthur Zamarin
2023-05-02 19:16 Sam James
2023-05-02 19:09 Arthur Zamarin
2023-05-02 18:31 Arthur Zamarin
2023-05-02 18:29 Arthur Zamarin
2023-05-02 18:23 Arthur Zamarin
2023-05-02 18:05 Arthur Zamarin
2023-05-02 17:34 Arthur Zamarin
2023-05-02 17:33 Arthur Zamarin
2023-03-12 18:47 Matt Turner
2023-03-12 17:38 Matt Turner
2022-11-12  6:01 WANG Xuerui
2022-11-05 18:58 Arthur Zamarin
2022-10-29 23:21 Matt Turner
2022-09-24  3:43 Matt Turner
2022-09-24  3:43 Matt Turner
2022-09-24  3:43 Matt Turner
2022-05-28  5:38 Sam James
2022-05-28  5:38 Sam James
2022-05-19  5:08 WANG Xuerui
2022-05-10  2:03 Matt Turner
2022-05-06  4:57 Matt Turner
2022-04-18 20:48 Jakov Smolić
2022-04-08 21:26 Matt Turner
2022-01-24 14:49 Sam James
2022-01-24 14:45 Sam James
2022-01-22 22:39 Sam James
2022-01-20  9:42 Arthur Zamarin
2022-01-02 10:54 Jakov Smolić
2021-11-11 12:59 Pacho Ramos
2021-11-11 12:59 Pacho Ramos
2021-08-12  3:10 Yixun Lan
2021-05-28 19:18 Sam James
2021-05-22  2:27 Matt Turner
2021-05-22  2:27 Matt Turner
2021-05-09  4:35 Matt Turner
2021-05-07 18:30 Matt Turner
2021-04-20  2:49 Matt Turner
2021-04-01  2:12 Matt Turner
2021-01-06 18:38 Fabian Groffen
2020-10-29 22:06 Sergei Trofimovich
2020-09-11 16:57 Sergei Trofimovich
2020-08-31  2:52 Sam James
2020-07-19  9:05 Mart Raudsepp
2020-07-19  9:05 Mart Raudsepp
2020-06-07 21:28 Mart Raudsepp
2020-05-13 17:35 Sergei Trofimovich
2020-04-28 16:44 Matt Turner
2020-02-23 12:24 Mart Raudsepp
2020-01-19 18:16 Mart Raudsepp
2020-01-17 14:12 Agostino Sarubbo
2020-01-01 16:06 Mart Raudsepp
2020-01-01 15:25 Agostino Sarubbo
2019-12-25 19:40 Mart Raudsepp
2019-12-24 17:03 Sergei Trofimovich
2019-12-09  9:14 Agostino Sarubbo
2019-12-09  9:11 Agostino Sarubbo
2019-12-08 11:59 Mikle Kolyada
2019-10-20 14:30 Pacho Ramos
2019-10-09  8:27 Agostino Sarubbo
2019-09-07 11:00 Mart Raudsepp
2019-04-08  8:39 Mart Raudsepp
2019-04-07 11:02 Mikle Kolyada
2019-03-30 16:26 Mikle Kolyada
2019-03-18 10:27 Mart Raudsepp
2019-03-14 17:19 Mart Raudsepp
2019-03-13 23:03 Sergei Trofimovich
2019-02-10  9:32 Sergei Trofimovich
2019-02-08 20:35 Sergei Trofimovich
2019-02-07 17:09 Mikle Kolyada
2019-01-03  9:27 Sergei Trofimovich
2018-12-28  3:46 Matt Turner
2018-12-06 20:51 Mart Raudsepp
2018-12-05  7:34 Mikle Kolyada
2018-12-05  7:07 Mikle Kolyada
2018-12-04 16:27 Mikle Kolyada
2018-12-02 14:29 Mikle Kolyada
2018-12-02 10:12 Mikle Kolyada
2018-12-01 14:51 Sergei Trofimovich
2018-11-19 15:58 Gilles Dartiguelongue
2018-11-06 23:11 Sergei Trofimovich
2018-08-20  6:12 Mart Raudsepp
2018-07-14 23:00 Mart Raudsepp
2018-03-14 21:41 Sergei Trofimovich
2018-03-06 21:37 Tobias Klausmann
2018-03-04 20:48 Sergei Trofimovich
2018-02-16 20:39 Sergei Trofimovich
2018-02-03 19:40 Mart Raudsepp
2018-01-18  2:08 Mikle Kolyada
2018-01-13 12:13 Sergei Trofimovich
2017-12-17 22:47 Ulrich Müller
2017-12-17 18:14 Gilles Dartiguelongue
2017-07-10  0:24 Mart Raudsepp
2017-07-09 10:41 Alexis Ballier
2017-07-07 21:20 Mart Raudsepp
2017-06-12 10:07 Mart Raudsepp
2017-06-12 10:07 Mart Raudsepp
2017-05-11 18:33 Markus Meier
2017-04-30 10:01 Jeroen Roovers
2017-04-30  9:37 Agostino Sarubbo
2017-04-29 15:02 Agostino Sarubbo
2017-04-22 19:08 Tobias Klausmann
2017-04-22 17:53 Tobias Klausmann
2017-04-12 10:10 Jeroen Roovers
2017-04-09  1:29 Mart Raudsepp
2016-12-06 20:06 Markus Meier
2016-11-01 23:58 Gilles Dartiguelongue
2016-11-01 23:58 Gilles Dartiguelongue
2016-07-30 10:27 Jeroen Roovers
2016-07-30  9:34 Jeroen Roovers
2016-06-08 19:43 Markus Meier
2016-05-03 19:31 Markus Meier
2016-04-17 11:13 Pacho Ramos
2015-12-13 17:38 Gilles Dartiguelongue
2015-11-16 21:56 Pacho Ramos
2015-11-16 21:56 Pacho Ramos
2015-10-03  8:20 Markus Meier
2015-09-07 16:24 Mikle Kolyada

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1639799229.1e0a70d9a8899bcbfb39fec1e1d0b89ae67e19b9.mattst88@gentoo \
    --to=mattst88@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox