public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Rui Huang" <vowstar@gmail.com>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:dev commit in: sci-electronics/circt/
Date: Fri, 31 Mar 2023 06:00:22 +0000 (UTC)	[thread overview]
Message-ID: <1680242414.4506f0738c3ce8c349bf0a15e96aafb26a9d244a.vowstar@gentoo> (raw)

commit:     4506f0738c3ce8c349bf0a15e96aafb26a9d244a
Author:     Huang Rui <vowstar <AT> gmail <DOT> com>
AuthorDate: Fri Mar 31 06:00:14 2023 +0000
Commit:     Rui Huang <vowstar <AT> gmail <DOT> com>
CommitDate: Fri Mar 31 06:00:14 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4506f073

sci-electronics/circt: add 1.37.0

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

 sci-electronics/circt/Manifest            |   2 +
 sci-electronics/circt/circt-1.37.0.ebuild | 116 ++++++++++++++++++++++++++++++
 2 files changed, 118 insertions(+)

diff --git a/sci-electronics/circt/Manifest b/sci-electronics/circt/Manifest
index 4fd0d394c..8b58cca33 100644
--- a/sci-electronics/circt/Manifest
+++ b/sci-electronics/circt/Manifest
@@ -1,2 +1,4 @@
 DIST circt-1.14.0.tar.gz 2152570 BLAKE2B 3901c0d146a4410cc2ee5a0556ce54decea4fb1998b83a2999ec97493efcdefbb2bb0c33b5ee127c9627568bdd92669bf1c064930abf6954aa33cbb382fea006 SHA512 1d2b2696c7ce42cf90a9209f2b0d04862681645cfe733e0dd2f6c48754a9fa035f2d5033b2c0278841edaaee9a72802a00226f210a032e81b79d4d3df5bcf7cf
+DIST circt-1.37.0.tar.gz 2577579 BLAKE2B 9bb69622c6145615d652a27428c0c4b004b5899c84dee130838a91fb54253da59a550a597cae0d358f768ed06b2e01d69beb838c98b9e8b70786da02999ea4a2 SHA512 8fb33083cafbb75b6b8de2b80b4f087e6ab5ae284703da8f2eb2ab0bcdc93290a1269a469a21e1f24f35a5c52c406790663bd4e93917f1a8e667cf2c2d147b59
+DIST llvm-project-d978730d8e2c10c76867b83bec2f1143d895ee7d.tar.gz 181657664 BLAKE2B 77a6efe1952f50c99bfeb6f54d21d445b033e69f69184845748d989650818c205859bd1bf39f6730c78cb4136a32df257bcb18fa351c4bbfbb15c60c47e07137 SHA512 cedc0b17ed9d7b4a7b8393200fc6a512dd557c90b5206305b98d39b2297d7488678b5186bd5a39f8a8e66855c8986c1a82ac156a0203d73cfb359d19e22d5606
 DIST llvm-project-fe0f72d5c55a9b95c5564089e946e8f08112e995.tar.gz 166019098 BLAKE2B c3613d5465522249597fe8a882cd4cdd2f8b4030a9fee73c47643f0e64ea0b97a212f9e4637e5a096e30e679460dac039b0c244daf4b0bd04c4da42efb4744d0 SHA512 bc71f42c8af87559fbc384a6cf473b5bdb42a04e698e7e44c94d9ea27f763d7f0bd4dea63e0eef9d29cdfb2ad203b14eeb6431bba336583cfb0ce19f12a40a72

diff --git a/sci-electronics/circt/circt-1.37.0.ebuild b/sci-electronics/circt/circt-1.37.0.ebuild
new file mode 100644
index 000000000..27884f441
--- /dev/null
+++ b/sci-electronics/circt/circt-1.37.0.ebuild
@@ -0,0 +1,116 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="8"
+
+MY_PV="${PV//./\/}"
+MY_LLVM_PV="d978730d8e2c10c76867b83bec2f1143d895ee7d"
+CMAKE_BUILD_TYPE="Release"
+PYTHON_COMPAT=( python3_{8..11} )
+inherit cmake python-r1
+
+DESCRIPTION="The fast free Verilog/SystemVerilog simulator"
+HOMEPAGE="
+	https://circt.llvm.org
+	https://github.com/llvm/circt
+"
+
+if [[ "${PV}" == "9999" ]] ; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/llvm/${PN}.git"
+	S_CIRCT="${EGIT_CHECKOUT_DIR}"
+	S_LLVM="${S_CIRCT}/llvm"
+	S="${S_LLVM}/llvm"
+else
+	SRC_URI="
+		https://github.com/llvm/circt/archive/refs/tags/firtool-${PV}.tar.gz -> ${P}.tar.gz
+		https://github.com/llvm/llvm-project/archive/${MY_LLVM_PV}.tar.gz -> llvm-project-${MY_LLVM_PV}.tar.gz
+	"
+	KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+	S_CIRCT="${WORKDIR}/${PN}-firtool-${PV}"
+	S_LLVM="${WORKDIR}/llvm-project-${MY_LLVM_PV}"
+	S="${S_LLVM}/llvm"
+fi
+
+LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA BSD public-domain rc"
+SLOT="0"
+IUSE="test"
+REQUIRED_USE=" ${PYTHON_REQUIRED_USE} "
+
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+	${PYTHON_DEPS}
+	test? (
+		dev-python/psutil[${PYTHON_USEDEP}]
+		sci-electronics/verilator
+	)
+	sys-libs/ncurses:0=
+"
+
+DEPEND="
+	${RDEPEND}
+"
+
+BDEPEND="
+	virtual/pkgconfig
+"
+
+DOCS=(
+	"${S_LLVM}/llvm/llvm-LICENSE.TXT"
+	"${S_LLVM}/mlir/mlir-LICENSE.TXT"
+	"${S_CIRCT}/circt-LICENSE"
+)
+
+src_configure() {
+	python_setup
+
+	local mycmakeargs=(
+		-D Python3_EXECUTABLE="${PYTHON}"
+		-D CMAKE_INSTALL_PREFIX=/usr
+		-D LLVM_BINUTILS_INCDIR=/usr/include
+		-D LLVM_ENABLE_PROJECTS=mlir
+		-D BUILD_SHARED_LIBS=OFF
+		-D LLVM_STATIC_LINK_CXX_STDLIB=ON
+		-D LLVM_ENABLE_ASSERTIONS=ON
+		-D LLVM_BUILD_EXAMPLES=OFF
+		-D LLVM_ENABLE_BINDINGS=OFF
+		-D LLVM_ENABLE_OCAMLDOC=OFF
+		-D LLVM_OPTIMIZED_TABLEGEN=ON
+		-D LLVM_EXTERNAL_PROJECTS=circt
+		-D LLVM_EXTERNAL_CIRCT_SOURCE_DIR="${S_CIRCT}"
+		-D LLVM_BUILD_TOOLS=ON
+	)
+	cmake_src_configure
+}
+
+src_test() {
+	pushd "${BUILD_DIR}" || die
+	eninja check-mlir
+	eninja check-circt
+	eninja check-circt-integration
+	popd || die
+}
+
+src_install() {
+	mv "${S_LLVM}/llvm/LICENSE.TXT" "${S_LLVM}/llvm/llvm-LICENSE.TXT" || die
+	mv "${S_LLVM}/mlir/LICENSE.TXT" "${S_LLVM}/mlir/mlir-LICENSE.TXT" || die
+	mv "${S_CIRCT}/LICENSE" "${S_CIRCT}/circt-LICENSE" || die
+	einstalldocs
+	exeinto /usr/bin
+	doexe "${BUILD_DIR}"/bin/circt-capi-ir-test
+	doexe "${BUILD_DIR}"/bin/circt-lsp-server
+	doexe "${BUILD_DIR}"/bin/circt-opt
+	doexe "${BUILD_DIR}"/bin/circt-reduce
+	doexe "${BUILD_DIR}"/bin/circt-rtl-sim.py
+	doexe "${BUILD_DIR}"/bin/circt-translate
+	doexe "${BUILD_DIR}"/bin/esi_cosim.py
+	doexe "${BUILD_DIR}"/bin/esi-cosim-runner.py
+	doexe "${BUILD_DIR}"/bin/esi-tester
+	doexe "${BUILD_DIR}"/bin/firtool
+	doexe "${BUILD_DIR}"/bin/handshake-runner
+	doexe "${BUILD_DIR}"/bin/llhd-sim
+	doexe "${BUILD_DIR}"/bin/py-split-input-file.py
+	# llhd-sim not static linked
+	dolib.so "${BUILD_DIR}"/lib/libcirct-llhd-signals-runtime-wrappers.so
+}


             reply	other threads:[~2023-03-31  6:00 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-03-31  6:00 Rui Huang [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-06-12 16:33 [gentoo-commits] repo/proj/guru:dev commit in: sci-electronics/circt/ Yuhang Zeng
2024-06-12 16:33 Yuhang Zeng
2022-09-06  2:22 Rui Huang
2022-08-28  4:56 Rui Huang
2022-08-27 19:20 Rui Huang

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=1680242414.4506f0738c3ce8c349bf0a15e96aafb26a9d244a.vowstar@gentoo \
    --to=vowstar@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