commit:     42b524c3fe0ce866186040a196f7fac3e0bb3d3d
Author:     Huang Rui <vowstar <AT> gmail <DOT> com>
AuthorDate: Tue Apr 30 08:20:10 2024 +0000
Commit:     Rui Huang <vowstar <AT> gmail <DOT> com>
CommitDate: Tue Apr 30 08:20:10 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=42b524c3

sci-electronics/verilator: add 5.024

Signed-off-by: Huang Rui <vowstar <AT> gmail.com>

 sci-electronics/verilator/Manifest               |  1 +
 sci-electronics/verilator/verilator-5.024.ebuild | 69 ++++++++++++++++++++++++
 2 files changed, 70 insertions(+)

diff --git a/sci-electronics/verilator/Manifest 
b/sci-electronics/verilator/Manifest
index bd8c0cbf19..58ddf44246 100644
--- a/sci-electronics/verilator/Manifest
+++ b/sci-electronics/verilator/Manifest
@@ -1 +1,2 @@
 DIST verilator-5.022.tar.gz 3761782 BLAKE2B 
49713ce89f101eb6f6165ee316fc018936ccb21fd6ceccce343684ff3cca10285f851172549843078801e69828f0069877ec68a8ac39a1fbce4a2426d3e4b44d
 SHA512 
5b919ed5d4cf863434f10f39bbb3a5155d63f79765f5f1d5ae543023b0e350e0996507d250fbfb2e5129bbdf9a51cc5fd0b7154962747c89435648897525bc84
+DIST verilator-5.024.tar.gz 3879481 BLAKE2B 
5f25b4ab0b477fc58f3d052d49d3e13bf1fd5326a20873e2d85d0f2a8702f08dd47d93fc1db6eb3c5cef00d4a5e56c4636c381ca16985c8d7ccbe56bcad89e46
 SHA512 
34184f4c08bcbecf563b424c4c0fdcaf0c04d60e19887c4df5161b48db256dd7cbe960c71f854bd3dad073c193bbc0c576f171f84b634da58259b81e1afaf622

diff --git a/sci-electronics/verilator/verilator-5.024.ebuild 
b/sci-electronics/verilator/verilator-5.024.ebuild
new file mode 100644
index 0000000000..8baad1fa27
--- /dev/null
+++ b/sci-electronics/verilator/verilator-5.024.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="8"
+
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit autotools python-single-r1
+
+DESCRIPTION="The fast free Verilog/SystemVerilog simulator"
+HOMEPAGE="
+       https://verilator.org
+       https://github.com/verilator/verilator
+"
+
+if [[ "${PV}" == "9999" ]] ; then
+       inherit git-r3
+       EGIT_REPO_URI="https://github.com/${PN}/${PN}.git";
+else
+       SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+       KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+fi
+
+LICENSE="|| ( Artistic-2 LGPL-3 )"
+SLOT="0"
+IUSE="debug test"
+RESTRICT="!test? ( test )"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+RDEPEND="
+       ${PYTHON_DEPS}
+       dev-lang/perl
+       sys-libs/zlib
+"
+
+DEPEND="
+       ${RDEPEND}
+"
+
+BDEPEND="
+       sys-devel/bison
+       sys-devel/flex
+       test? (
+               dev-build/cmake
+       )
+"
+
+src_prepare() {
+       default
+       if [[ ! "${PV}" == "9999" ]] ; then
+               # https://github.com/verilator/verilator/issues/3352
+               sed -i "s/UNKNOWN_REV/(Gentoo ${PVR})/g" "${S}"/src/config_rev 
|| die
+       fi
+       # https://bugs.gentoo.org/785151
+       sed -i "s/python3/${EPYTHON}/g" "${S}"/configure.ac || die
+       find . -name "Makefile" -exec sed -i "s/python3/${EPYTHON}/g" {} + || 
die
+       find test_regress -type f -exec sed -i "s/python3/${EPYTHON}/g" {} + || 
die
+       python_fix_shebang .
+       # https://bugs.gentoo.org/887917
+       if ! use debug; then
+               sed -i '/AC_SUBST(CFG_CXXFLAGS_DEBUG)/i CFG_CXXFLAGS_DEBUG=""' 
"${S}"/configure.ac || die
+               sed -i '/AC_SUBST(CFG_LDFLAGS_DEBUG)/i CFG_LDFLAGS_DEBUG=""' 
"${S}"/configure.ac || die
+       fi
+       eautoconf --force
+}
+
+src_test() {
+       emake test
+}

Reply via email to