public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Arthur Zamarin" <arthurzam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/yacc/
Date: Sun, 20 Oct 2024 17:30:05 +0000 (UTC)	[thread overview]
Message-ID: <1729445388.9e9f43129927504a22efd67e1ff1320d55d84a56.arthurzam@gentoo> (raw)

commit:     9e9f43129927504a22efd67e1ff1320d55d84a56
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 20 17:29:14 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Oct 20 17:29:48 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e9f4312

dev-util/yacc: fix modern C

Closes: https://bugs.gentoo.org/875506
Closes: https://bugs.gentoo.org/730802
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-util/yacc/Manifest                                       |  1 +
 dev-util/yacc/{yacc-1.9.1-r7.ebuild => yacc-1.9.1-r8.ebuild} | 10 ++++++++--
 2 files changed, 9 insertions(+), 2 deletions(-)

diff --git a/dev-util/yacc/Manifest b/dev-util/yacc/Manifest
index 307ea6be13d6..6318b80e5750 100644
--- a/dev-util/yacc/Manifest
+++ b/dev-util/yacc/Manifest
@@ -1 +1,2 @@
+DIST yacc-1.9.1-modern-C.patch.xz 8228 BLAKE2B b5f6097a09eb50d94f1b2516d2f2618c7877743c50afb408209f1b2eed9c66288109c5e3328839d88290d994cb29a3a5886054fe194f6b01db2900c489e3319b SHA512 20ca4ea0347f8bdf11546f1730184dc5ed190bbe684619aed6ff14f93cadb16d2d85de6b0b5f38a334d4104b84cce2ae25d4c51a8ca11f7512f33956287b7b72
 DIST yacc-1.9.1.tar.Z 64805 BLAKE2B 3eeebea1dad52a26c8e90ae6aec99fe3643f040100af4516faed02295b203f717a41aec0231ecee97aa31b14c9c29cae6704e875a03e8b18a71255be9859dd09 SHA512 6adb51c5f07e8084a86688589f52d9eee0183fb4d77508e36621a6b0ba91a5c4195feb87db3401ec69560554f71f2f6984dec01266e41e0fd54fa72ef1780e80

diff --git a/dev-util/yacc/yacc-1.9.1-r7.ebuild b/dev-util/yacc/yacc-1.9.1-r8.ebuild
similarity index 78%
rename from dev-util/yacc/yacc-1.9.1-r7.ebuild
rename to dev-util/yacc/yacc-1.9.1-r8.ebuild
index b5faaa0fc64c..d36686bc5e40 100644
--- a/dev-util/yacc/yacc-1.9.1-r7.ebuild
+++ b/dev-util/yacc/yacc-1.9.1-r8.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -7,7 +7,10 @@ inherit toolchain-funcs
 
 DESCRIPTION="Yacc: Yet Another Compiler-Compiler"
 HOMEPAGE="http://dinosaur.compilertools.net/#yacc"
-SRC_URI="ftp://metalab.unc.edu/pub/Linux/devel/compiler-tools/${P}.tar.Z"
+SRC_URI="
+	ftp://metalab.unc.edu/pub/Linux/devel/compiler-tools/${P}.tar.Z
+	https://dev.gentoo.org/~arthurzam/distfiles/dev-util/${PN}/${P}-modern-C.patch.xz
+"
 
 LICENSE="public-domain"
 SLOT="0"
@@ -23,6 +26,9 @@ PATCHES=(
 
 	# Avoid stack access error. See bug 232005.
 	"${FILESDIR}/${P}-CVE-2008-3196.patch"
+
+	# fixes for modern C compiler, bug #730802
+	"${WORKDIR}/${P}-modern-C.patch"
 )
 
 src_prepare() {


             reply	other threads:[~2024-10-20 17:30 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-10-20 17:30 Arthur Zamarin [this message]
  -- strict thread matches above, loose matches on Subject: below --
2022-12-28  0:33 [gentoo-commits] repo/gentoo:master commit in: dev-util/yacc/ Sam James
2022-12-27 19:53 Sam James
2022-12-27 19:45 Sam James
2022-12-27 13:40 Sam James
2022-12-27 11:31 Sam James
2022-12-18 11:45 James Le Cuirot
2022-12-18  1:50 Yixun Lan
2022-12-02 21:16 Sam James
2017-04-20 21:02 Patrice Clement
2017-02-18  9:32 Patrice Clement
2017-02-18  9:32 Patrice Clement
2017-02-18  9:23 Patrice Clement
2016-10-02  6:38 Jeroen Roovers
2016-10-02  6:00 Jeroen Roovers
2016-09-04 10:21 Tobias Klausmann
2016-08-18 19:39 Markus Meier
2016-08-11 11:02 Patrice Clement
2016-06-01 13:27 Patrice Clement

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=1729445388.9e9f43129927504a22efd67e1ff1320d55d84a56.arthurzam@gentoo \
    --to=arthurzam@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