diff options
author | Florian Schmaus <flow@gentoo.org> | 2024-04-09 16:19:59 +0200 |
---|---|---|
committer | Florian Schmaus <flow@gentoo.org> | 2024-04-09 16:20:16 +0200 |
commit | 4c03f8213e425147b2b95156ddb50418eb431a82 (patch) | |
tree | 73df258975996c203dc3c53296cae06dc9b18841 /app-emulation/qtrvsim | |
parent | www-apps/readarr-bin: drop 0.3.21.2475 (diff) | |
download | gentoo-4c03f8213e425147b2b95156ddb50418eb431a82.tar.gz gentoo-4c03f8213e425147b2b95156ddb50418eb431a82.tar.bz2 gentoo-4c03f8213e425147b2b95156ddb50418eb431a82.zip |
app-emulation/qtrvsim: new packages, migrated from ::riscv
Signed-off-by: Florian Schmaus <flow@gentoo.org>
Diffstat (limited to 'app-emulation/qtrvsim')
-rw-r--r-- | app-emulation/qtrvsim/Manifest | 1 | ||||
-rw-r--r-- | app-emulation/qtrvsim/metadata.xml | 11 | ||||
-rw-r--r-- | app-emulation/qtrvsim/qtrvsim-0.9.7.ebuild | 25 |
3 files changed, 37 insertions, 0 deletions
diff --git a/app-emulation/qtrvsim/Manifest b/app-emulation/qtrvsim/Manifest new file mode 100644 index 000000000000..762a7e2d5b7d --- /dev/null +++ b/app-emulation/qtrvsim/Manifest @@ -0,0 +1 @@ +DIST qtrvsim-0.9.7.tar.gz 1421805 BLAKE2B 9128dbe513860eafd01e0f37a99547797d385b57a404e06aea310404012e66e6be802920cdea62acb914d355fc842cd3759fc794d2cd417257b941f9ec62fbec SHA512 0d53e21681630cbf97db472472bd96dfe4914e0d275a1094cb18a7f0372cef23b0dea3c33092b6ab6d2403737070ef0b6f2b1f5d9d35eea8923b24a80ac6adfe diff --git a/app-emulation/qtrvsim/metadata.xml b/app-emulation/qtrvsim/metadata.xml new file mode 100644 index 000000000000..38cc1db28ca8 --- /dev/null +++ b/app-emulation/qtrvsim/metadata.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>flow@gentoo.org</email> + <name>Florian Schmaus</name> + </maintainer> + <upstream> + <remote-id type="github">cvut/qtrvsim</remote-id> + </upstream> +</pkgmetadata> diff --git a/app-emulation/qtrvsim/qtrvsim-0.9.7.ebuild b/app-emulation/qtrvsim/qtrvsim-0.9.7.ebuild new file mode 100644 index 000000000000..88e56acd60ea --- /dev/null +++ b/app-emulation/qtrvsim/qtrvsim-0.9.7.ebuild @@ -0,0 +1,25 @@ +# Copyright 2023-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="RISC-V CPU simulator for education" +HOMEPAGE="https://github.com/cvut/qtrvsim" +SRC_URI="https://github.com/cvut/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64" + +DEPEND=" + dev-qt/qtbase:6[gui,widgets] + virtual/libelf:= +" +RDEPEND="${DEPEND}" + +CMAKE_SKIP_TESTS=( + # Fails in 0.9.7, but not in master. + cli_stalls +) |