From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (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 968D6158042 for ; Sat, 9 Nov 2024 00:53:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 22DA4E088A; Sat, 9 Nov 2024 00:53:21 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0598FE0887 for ; Sat, 9 Nov 2024 00:53:21 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id F0A2033BF08 for ; Sat, 9 Nov 2024 00:53:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 557931D6E for ; Sat, 9 Nov 2024 00:53:18 +0000 (UTC) From: "David Roman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Roman" Message-ID: <1731102000.669997476ef14f6266518b6ad7e4559b3211a37c.davidroman@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-vcs/gitqlient/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-vcs/gitqlient/gitqlient-1.6.3.ebuild X-VCS-Directories: dev-vcs/gitqlient/ X-VCS-Committer: davidroman X-VCS-Committer-Name: David Roman X-VCS-Revision: 669997476ef14f6266518b6ad7e4559b3211a37c X-VCS-Branch: master Date: Sat, 9 Nov 2024 00:53:18 +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: a9f214dc-7c25-4ddc-8514-1a71c2e83f3e X-Archives-Hash: fd85914aa1b5826350248340628f581a commit: 669997476ef14f6266518b6ad7e4559b3211a37c Author: Sergey Torokhov yandex ru> AuthorDate: Fri Nov 8 21:40:00 2024 +0000 Commit: David Roman gmail com> CommitDate: Fri Nov 8 21:40:00 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=66999747 dev-vcs/gitqlient: 1.6.3 drop '-Werror' flag Closes: https://bugs.gentoo.org/942807 Signed-off-by: Sergey Torokhov yandex.ru> dev-vcs/gitqlient/gitqlient-1.6.3.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dev-vcs/gitqlient/gitqlient-1.6.3.ebuild b/dev-vcs/gitqlient/gitqlient-1.6.3.ebuild index a1047e8fd..b05843eb2 100644 --- a/dev-vcs/gitqlient/gitqlient-1.6.3.ebuild +++ b/dev-vcs/gitqlient/gitqlient-1.6.3.ebuild @@ -30,7 +30,8 @@ src_prepare() { sed -i -e '/message("Submodule update:")/d' \ -e "/system(git submodule update --init --recursive)/d" \ -e "/GQ_SHA =/s| \$\$system(git rev-parse --short HEAD)||" \ - -e "/VERSION =/s| \$\$system(git describe --abbrev=0)||" "${MY_PN}".pro || die + -e "/VERSION =/s| \$\$system(git describe --abbrev=0)||" \ + -e "s/ -Werror//" "${MY_PN}".pro || die } src_configure() {