commit: 22588876d46d9592586af275f81ac8b11fc0f9e8
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 20 17:06:27 2025 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Jun 20 19:04:41 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22588876
sci-electronics/systemc: drop 2.3.4-r1, EAPI=7--
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
sci-electronics/systemc/systemc-2.3.4-r1.ebuild | 54 -------------------------
1 file changed, 54 deletions(-)
diff --git a/sci-electronics/systemc/systemc-2.3.4-r1.ebuild
b/sci-electronics/systemc/systemc-2.3.4-r1.ebuild
deleted file mode 100644
index ad0a4ea125bb..000000000000
--- a/sci-electronics/systemc/systemc-2.3.4-r1.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-MY_PV="${PV}_pub_rev_20190614"
-
-inherit autotools
-
-DESCRIPTION="A C++ based modeling platform for VLSI and system-level co-design"
-HOMEPAGE="
- https://accellera.org/community/systemc
- https://github.com/accellera-official/systemc
-"
-
-if [[ "${PV}" == "9999" ]] ; then
- EGIT_REPO_URI="https://github.com/accellera-official/${PN}.git"
- inherit git-r3
-else
-
SRC_URI="https://github.com/accellera-official/${PN}/archive/${MY_PV}.tar.gz ->
${P}.tar.gz"
- KEYWORDS="amd64 ~arm ~arm64 ~x86"
- S="${WORKDIR}/${PN}-${MY_PV}"
-fi
-
-LICENSE="Apache-2.0"
-SLOT="0"
-IUSE="debug doc examples static-libs test"
-REQUIRED_USE="examples? ( doc )"
-RESTRICT="!test? ( test )"
-
-src_prepare() {
- default
- eautoconf --force
-}
-
-src_configure() {
- econf CXX="$(tc-getCXX)" \
- $(use_enable debug) \
- $(use_enable static-libs static) \
- --with-unix-layout
-}
-
-src_install() {
- default
- if use doc; then
- if use examples; then
- docompress -x /usr/share/doc/"${PF}"/examples
- else
- rm -r "${ED}"/usr/share/doc/"${PF}"/examples || die
- fi
- else
- rm -r "${ED}"/usr/share/doc/"${PF}" || die
- fi
-}