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-libs/gjs/
Date: Sun, 30 Oct 2022 15:24:23 +0000 (UTC)	[thread overview]
Message-ID: <1667143447.c29c2c0be1bd857e6e74ff60750c01c06ce48c2a.mattst88@gentoo> (raw)

commit:     c29c2c0be1bd857e6e74ff60750c01c06ce48c2a
Author:     Guillermo Joandet <gjoandet <AT> gmail <DOT> com>
AuthorDate: Sat Oct 29 23:42:28 2022 +0000
Commit:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sun Oct 30 15:24:07 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c29c2c0b

dev-libs/gjs: Version bump to 1.74.1

Signed-off-by: Guillermo Joandet <gjoandet <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/28024
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>

 dev-libs/gjs/Manifest          |  1 +
 dev-libs/gjs/gjs-1.74.1.ebuild | 68 ++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 69 insertions(+)

diff --git a/dev-libs/gjs/Manifest b/dev-libs/gjs/Manifest
index 295a5fbd1ec2..8e7789c777d4 100644
--- a/dev-libs/gjs/Manifest
+++ b/dev-libs/gjs/Manifest
@@ -1,3 +1,4 @@
 DIST gjs-1.64.5.tar.xz 422548 BLAKE2B dcc0b7327cbc6a1108be031c8807e61ebd3c8392916750078aaa0d82cb3bf9f7ff0e1876c250e5ddf6e9d7bb6a17d9d1fe34c1c77ff534b7ec1dd54fa05a2d1b SHA512 41a3c79888792674b2bccbf254507ed02497eb571c8ca7f47aab406d2ee29b73c98b1c7d59c33ed33bad90c6989df944d78b86d2f7e9824d598b62e29769b6dc
 DIST gjs-1.72.2.tar.xz 620380 BLAKE2B 5ea15bdf25c36fa0236f03adea5b2261db3923190005754119eacd070830e7baedfa842ab273219055f67f7af535d31d5844c76eddfb03a8ec1cab57297ec258 SHA512 0dd10f40e8811bbb79c541cf3dc4e3759c0e025485e4b8ad2870dc30ac8030573300bc178c78bf2d396b86733e36b33210bfbdeead6a314e592d5b3c250a16a2
 DIST gjs-1.74.0.tar.xz 638064 BLAKE2B d44f323aef9b696c7dab53fb46d6bbf142f83636bff81fe68bd30f1f897a778836d7a388c946cb86e84df15b3908d8ff14f0d994854eb2dce7af2c4e54da299b SHA512 a17947664a2bb83363ec564dcb5e619f241d0b547512042f2c0e49fbbc8ca4217b90e6b22bc2e4004e8f27e013f8520674a493f7cf3b808437b855eee3eb0408
+DIST gjs-1.74.1.tar.xz 638536 BLAKE2B 375abcaa20a538cfa271f7dcf6f3715e4324ff5a4a9482ce0dd7f78213598a715ebc034f701fe458876f841f72802db4ae2aabf0abc04dc4ac5bb39c917741fd SHA512 346667accb589df0e6a045e30782017eab928115f263d36d521b61b0af38fd268bc518b8ab5ec78e5d25e0194b744a2ee59e65668da679e138b2122858ce0614

diff --git a/dev-libs/gjs/gjs-1.74.1.ebuild b/dev-libs/gjs/gjs-1.74.1.ebuild
new file mode 100644
index 000000000000..fc6216a63210
--- /dev/null
+++ b/dev-libs/gjs/gjs-1.74.1.ebuild
@@ -0,0 +1,68 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit flag-o-matic gnome.org meson virtualx
+
+DESCRIPTION="Javascript bindings for GNOME"
+HOMEPAGE="https://wiki.gnome.org/Projects/Gjs https://gitlab.gnome.org/GNOME/gjs"
+
+LICENSE="MIT || ( MPL-1.1 LGPL-2+ GPL-2+ )"
+SLOT="0"
+IUSE="+cairo examples readline sysprof test"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+	>=dev-libs/glib-2.66.0:2
+	dev-libs/libffi:=
+	>=dev-libs/gobject-introspection-1.66.1:=
+	>=dev-lang/spidermonkey-102.2.0:102
+	cairo? ( x11-libs/cairo[X,glib] )
+	readline? ( sys-libs/readline:0= )
+"
+DEPEND="${RDEPEND}
+	sysprof? ( >=dev-util/sysprof-capture-3.40.1:4 )
+	test? (
+		sys-apps/dbus
+		>=x11-libs/gtk+-3.20:3[introspection]
+	)
+"
+BDEPEND="
+	virtual/pkgconfig
+"
+
+src_configure() {
+	append-cppflags -DG_DISABLE_CAST_CHECKS
+
+	# On musl, it's required that either gjs, pixman or gnome-shell to be built
+	# with a larger stack otherwise librsvg fails to render a particular SVG, as
+	# a result we fail to get gdm or gnome-shell running (greeted with a fail
+	# whale screen). The bug has been reported to librsvg. This is ideally just
+	# a temporary workaround until we understand what exactly needs a larger
+	# stack size, as it's not sufficient to do just librsvg.
+	#
+	# Please refer to:
+	# https://gitlab.gnome.org/GNOME/librsvg/-/issues/686
+	# https://gitlab.gnome.org/GNOME/librsvg/-/issues/874
+	#
+	# TODO: Find an actual fix instead of increasing the stack
+	use elibc_musl && append-ldflags -Wl,-z,stack-size=2097152
+
+	# FIXME: add systemtap/dtrace support, like in glib:2
+	local emesonargs=(
+		$(meson_feature cairo)
+		$(meson_feature readline)
+		$(meson_feature sysprof profiler)
+		-Dinstalled_tests=false
+		$(meson_use !test skip_dbus_tests)
+		$(meson_use !test skip_gtk_tests)
+		-Db_pch=True # TODO this has to go
+	)
+	meson_src_configure
+}
+
+src_test() {
+	virtx meson_src_test
+}


             reply	other threads:[~2022-10-30 15:24 UTC|newest]

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

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=1667143447.c29c2c0be1bd857e6e74ff60750c01c06ce48c2a.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