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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C8E94138359 for ; Sun, 27 Sep 2020 08:55:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EF46FE0822; Sun, 27 Sep 2020 08:55:32 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D3AB9E0822 for ; Sun, 27 Sep 2020 08:55:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 40EFE335CCD for ; Sun, 27 Sep 2020 08:55:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C0CEB339 for ; Sun, 27 Sep 2020 08:55:29 +0000 (UTC) From: "Sergei Trofimovich" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergei Trofimovich" Message-ID: <1601196925.a887bd2d76e02b7842fc72ecd69f8fbf32f98a36.slyfox@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/ski/files/, app-emulation/ski/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/ski/files/ski-1.3.2-lex-deps.patch app-emulation/ski/ski-1.3.2-r4.ebuild X-VCS-Directories: app-emulation/ski/ app-emulation/ski/files/ X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: a887bd2d76e02b7842fc72ecd69f8fbf32f98a36 X-VCS-Branch: master Date: Sun, 27 Sep 2020 08:55:29 +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: 40b51b4d-b5ab-41a9-8841-651b730aaa1d X-Archives-Hash: 8918f7bdbc5d261996a522c6cee62033 commit: a887bd2d76e02b7842fc72ecd69f8fbf32f98a36 Author: Sergei Trofimovich gentoo org> AuthorDate: Sun Sep 27 08:55:14 2020 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Sun Sep 27 08:55:25 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a887bd2d app-emulation/ski: fix lexter/parser generation race Reported-by: Agostino Sarubbo Closes: https://bugs.gentoo.org/744676 Package-Manager: Portage-3.0.8, Repoman-3.0.1 Signed-off-by: Sergei Trofimovich gentoo.org> app-emulation/ski/files/ski-1.3.2-lex-deps.patch | 17 +++++++++++++++++ app-emulation/ski/ski-1.3.2-r4.ebuild | 1 + 2 files changed, 18 insertions(+) diff --git a/app-emulation/ski/files/ski-1.3.2-lex-deps.patch b/app-emulation/ski/files/ski-1.3.2-lex-deps.patch new file mode 100644 index 00000000000..1dc8470864e --- /dev/null +++ b/app-emulation/ski/files/ski-1.3.2-lex-deps.patch @@ -0,0 +1,17 @@ +escan.l depends on generated eparse.h. +If eparse.h is not present yet escan.o +could be built before ${YACC) is ran. + +https://bugs.gentoo.org/744676 +--- a/src/Makefile.am ++++ b/src/Makefile.am +@@ -113,7 +113,8 @@ BUILT_SOURCES= \ + $(DAS_INSTR_DERIVED) \ + $(ASM_HASH_DERIVED) \ + $(ICNT_DERIVED) \ +- instr.c ++ instr.c \ ++ eparse.h + + ski_SOURCES= \ + main.c diff --git a/app-emulation/ski/ski-1.3.2-r4.ebuild b/app-emulation/ski/ski-1.3.2-r4.ebuild index 3d904abf6d4..ed996625c01 100644 --- a/app-emulation/ski/ski-1.3.2-r4.ebuild +++ b/app-emulation/ski/ski-1.3.2-r4.ebuild @@ -39,6 +39,7 @@ PATCHES=( "${FILESDIR}"/${P}-prototypes.patch "${FILESDIR}"/${P}-glibc-2.28.patch "${FILESDIR}"/${P}-gcc-10.patch #707144 + "${FILESDIR}"/${P}-lex-deps.patch #744676 ) src_prepare() {