From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8AF991581F0 for ; Fri, 24 Jan 2025 02:28:11 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 719463434E6 for ; Fri, 24 Jan 2025 02:28:11 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 6654511042D; Fri, 24 Jan 2025 02:28:10 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 5A1B611042D for ; Fri, 24 Jan 2025 02:28:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0E2733434DB for ; Fri, 24 Jan 2025 02:28:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8DEA71A09 for ; Fri, 24 Jan 2025 02:28:08 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1737685663.b1de1452da1aa032be0500f28dcb8fb700817c4b.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/elinks/files/, www-client/elinks/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-client/elinks/elinks-0.18.0.ebuild www-client/elinks/files/elinks-0.18.0-build.patch X-VCS-Directories: www-client/elinks/files/ www-client/elinks/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: b1de1452da1aa032be0500f28dcb8fb700817c4b X-VCS-Branch: master Date: Fri, 24 Jan 2025 02:28:08 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 1df22abd-e915-41a8-8fdc-b2a7fca4489f X-Archives-Hash: 9d1b3f7b0f525b93e722af01bd2dc7c4 commit: b1de1452da1aa032be0500f28dcb8fb700817c4b Author: Felix Janda posteo de> AuthorDate: Thu Jan 23 22:03:27 2025 +0000 Commit: Sam James gentoo org> CommitDate: Fri Jan 24 02:27:43 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1de1452 www-client/elinks: meson fix for v0.18.0 Closes: https://bugs.gentoo.org/948601 Signed-off-by: Felix Janda posteo.de> Closes: https://github.com/gentoo/gentoo/pull/40282 Signed-off-by: Sam James gentoo.org> www-client/elinks/elinks-0.18.0.ebuild | 1 + www-client/elinks/files/elinks-0.18.0-build.patch | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+) diff --git a/www-client/elinks/elinks-0.18.0.ebuild b/www-client/elinks/elinks-0.18.0.ebuild index 5f0b41536b9e..0c212218bb7d 100644 --- a/www-client/elinks/elinks-0.18.0.ebuild +++ b/www-client/elinks/elinks-0.18.0.ebuild @@ -83,6 +83,7 @@ BDEPEND=" PATCHES=( "${FILESDIR}"/${P}-sftp.patch + "${FILESDIR}"/${P}-build.patch ) pkg_setup() { diff --git a/www-client/elinks/files/elinks-0.18.0-build.patch b/www-client/elinks/files/elinks-0.18.0-build.patch new file mode 100644 index 000000000000..87187a528310 --- /dev/null +++ b/www-client/elinks/files/elinks-0.18.0-build.patch @@ -0,0 +1,22 @@ +commit 7bce7c203244b0afbec3a916ef3abfbd4cea2658 +Author: أحمد المحمودي (Ahmed El-Mahmoudy) +Date: Sun Dec 29 18:14:47 2024 +0100 + + Fix default value for libdomdeps to empty list instead of false + + When it was false, meson complained that it shouldn't be a boolean + value, see: https://salsa.debian.org/aelmahmoudy/elinks/-/jobs/6836245/raw + +diff --git a/meson.build b/meson.build +index 69b7975..c0f7d3a 100644 +--- a/meson.build ++++ b/meson.build +@@ -555,7 +555,7 @@ if conf_data.get('CONFIG_ECMASCRIPT_SMJS') or conf_data.get('CONFIG_QUICKJS') or + endif + + conf_data.set('CONFIG_LIBDOM', false) +-libdomdeps = false ++libdomdeps = [] + + if conf_data.get('CONFIG_ECMASCRIPT_SMJS') or conf_data.get('CONFIG_QUICKJS') or conf_data.get('CONFIG_MUJS') + libdomdeps = dependency('libdom', static: st, version: '>=0.4.2', required: false)