From: "David Roman" <davidroman96@gmail.com>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:master commit in: sys-devel/lcc/
Date: Mon, 6 Nov 2023 16:08:22 +0000 (UTC) [thread overview]
Message-ID: <1699283778.1f93a4c9942062b4229a7a5f5758448d2805e042.davidroman@gentoo> (raw)
commit: 1f93a4c9942062b4229a7a5f5758448d2805e042
Author: Benoît Dufour <benoit.dufour <AT> mail <DOT> com>
AuthorDate: Mon Nov 6 15:16:18 2023 +0000
Commit: David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Mon Nov 6 15:16:18 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1f93a4c9
sys-devel/lcc: Fix file collision between GCC's own cpp and LCC's own cpp.
Signed-off-by: Benoît Dufour <benoit.dufour <AT> mail.com>
sys-devel/lcc/lcc-2021.01.11-r1.ebuild | 45 ++++++++++++++++++++++++++++++++++
sys-devel/lcc/lcc-2021.01.11.ebuild | 36 ---------------------------
2 files changed, 45 insertions(+), 36 deletions(-)
diff --git a/sys-devel/lcc/lcc-2021.01.11-r1.ebuild b/sys-devel/lcc/lcc-2021.01.11-r1.ebuild
new file mode 100644
index 0000000000..af3369a536
--- /dev/null
+++ b/sys-devel/lcc/lcc-2021.01.11-r1.ebuild
@@ -0,0 +1,45 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+# Would allow installing gentoo on any arch.
+DESCRIPTION="The lcc retargetable ANSI C compiler"
+HOMEPAGE="https://drh.github.io/lcc/"
+SHA='3fd0acc0c3087411c0966d725a56be29038c05a9'
+SRC_URI="https://github.com/drh/lcc/archive/${SHA}.tar.gz"
+
+# Build using CMake, still missing some features.
+PATCHES=( "${FILESDIR}/add_cmake_support.patch" )
+
+LICENSE="lcc"
+SLOT="0"
+KEYWORDS="~amd64"
+
+# What are the dependencies if any?
+#DEPEND=""
+#RDEPEND="${DEPEND}"
+#BDEPEND=""
+S="${WORKDIR}/${PN}-${SHA}"
+
+src_install() {
+ doman "doc/bprint.1"
+ doman "doc/lcc.1"
+ into "/usr/lib/lcc"
+ dobin "${WORKDIR}/${PN}-${SHA}_build/cpp/cpp"
+ dobin "${WORKDIR}/${PN}-${SHA}_build/etc/bprint"
+ dobin "${WORKDIR}/${PN}-${SHA}_build/etc/lcc"
+ dobin "${WORKDIR}/${PN}-${SHA}_build/lburg/lburg"
+ dobin "${WORKDIR}/${PN}-${SHA}_build/src/rcc"
+}
+
+pkg_postinst() {
+ ewarn "If you had installed the previous version of this ebuild (lcc-2021.01.11),"
+ ewarn "there was a file collision that deleted the GNU's /usr/bin/cpp by LCC's own /usr/bin/cpp."
+ ewarn "So make sure to run the following commands :"
+ ewarn "gcc-config -l"
+ ewarn "gcc-config -f the_gcc_config_of_the_previous_command"
+ ewarn "The new package lcc-2021.01.11-r1 doesn't adds LCC to PATH anymore."
+}
\ No newline at end of file
diff --git a/sys-devel/lcc/lcc-2021.01.11.ebuild b/sys-devel/lcc/lcc-2021.01.11.ebuild
deleted file mode 100644
index cd525f9814..0000000000
--- a/sys-devel/lcc/lcc-2021.01.11.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-# Would allow installing gentoo on any arch.
-DESCRIPTION="The lcc retargetable ANSI C compiler"
-HOMEPAGE="https://drh.github.io/lcc/"
-SHA='3fd0acc0c3087411c0966d725a56be29038c05a9'
-SRC_URI="https://github.com/drh/lcc/archive/${SHA}.tar.gz"
-
-# Build using CMake, still missing some features.
-PATCHES=( "${FILESDIR}/add_cmake_support.patch" )
-
-LICENSE="lcc"
-SLOT="0"
-KEYWORDS="~amd64"
-
-# What are the dependencies if any?
-#DEPEND=""
-#RDEPEND="${DEPEND}"
-#BDEPEND=""
-S="${WORKDIR}/${PN}-${SHA}"
-
-src_install() {
- doman "doc/bprint.1"
- doman "doc/lcc.1"
- #into "/usr/lib/lcc"
- dobin "${WORKDIR}/${PN}-${SHA}_build/cpp/cpp"
- dobin "${WORKDIR}/${PN}-${SHA}_build/etc/bprint"
- dobin "${WORKDIR}/${PN}-${SHA}_build/etc/lcc"
- dobin "${WORKDIR}/${PN}-${SHA}_build/lburg/lburg"
- dobin "${WORKDIR}/${PN}-${SHA}_build/src/rcc"
-}
next reply other threads:[~2023-11-06 16:08 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-11-06 16:08 David Roman [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-04-23 22:52 [gentoo-commits] repo/proj/guru:dev commit in: sys-devel/lcc/ David Roman
2024-04-24 12:11 ` [gentoo-commits] repo/proj/guru:master " David Roman
2024-04-23 22:52 [gentoo-commits] repo/proj/guru:dev " David Roman
2024-04-24 12:11 ` [gentoo-commits] repo/proj/guru:master " David Roman
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=1699283778.1f93a4c9942062b4229a7a5f5758448d2805e042.davidroman@gentoo \
--to=davidroman96@gmail.com \
--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