From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E1155158003 for ; Thu, 27 Apr 2023 23:59:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B449BE07F0; Thu, 27 Apr 2023 23:59:06 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 98440E07F0 for ; Thu, 27 Apr 2023 23:59:06 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D70D9340D23 for ; Thu, 27 Apr 2023 23:59:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 71CC3920 for ; Thu, 27 Apr 2023 23:59:04 +0000 (UTC) From: "Yixun Lan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Yixun Lan" Message-ID: <1682639877.67c378ffab4dd43e7708c21925d389c992e64a65.dlan@gentoo> Subject: [gentoo-commits] proj/riscv:master commit in: app-emulation/qtrvsim/ X-VCS-Repository: proj/riscv X-VCS-Files: app-emulation/qtrvsim/Manifest app-emulation/qtrvsim/metadata.xml app-emulation/qtrvsim/qtrvsim-0.9.5.ebuild X-VCS-Directories: app-emulation/qtrvsim/ X-VCS-Committer: dlan X-VCS-Committer-Name: Yixun Lan X-VCS-Revision: 67c378ffab4dd43e7708c21925d389c992e64a65 X-VCS-Branch: master Date: Thu, 27 Apr 2023 23:59:04 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: d14233d1-a010-42df-8bb6-ba540859bfcd X-Archives-Hash: 7527f9feee3effdb96ef51a8bc814f49 commit: 67c378ffab4dd43e7708c21925d389c992e64a65 Author: Yixun Lan gentoo org> AuthorDate: Thu Apr 27 23:57:57 2023 +0000 Commit: Yixun Lan gentoo org> CommitDate: Thu Apr 27 23:57:57 2023 +0000 URL: https://gitweb.gentoo.org/proj/riscv.git/commit/?id=67c378ff app-emulation/qtrvsim: qt riscv sim Signed-off-by: Yixun Lan gentoo.org> app-emulation/qtrvsim/Manifest | 1 + app-emulation/qtrvsim/metadata.xml | 5 +++++ app-emulation/qtrvsim/qtrvsim-0.9.5.ebuild | 19 +++++++++++++++++++ 3 files changed, 25 insertions(+) diff --git a/app-emulation/qtrvsim/Manifest b/app-emulation/qtrvsim/Manifest new file mode 100644 index 0000000..1626220 --- /dev/null +++ b/app-emulation/qtrvsim/Manifest @@ -0,0 +1 @@ +DIST qtrvsim-0.9.5.tar.gz 1328020 BLAKE2B 3e390af0db8ee0cce8267c3923efb965f7bebd07be7e154ac45906f830f020115e86ec42faa179abc53c819ade9168a22cf6a01529b15a3c0cd9473068559ac5 SHA512 f888d159131c6ea4f48cfc4b34f406a15e122c8422bc0f0dae24275a7487a1a0df16008dc8e2c74105b49710816b07e5bea90334f6f06851aa4d1f53078172b5 diff --git a/app-emulation/qtrvsim/metadata.xml b/app-emulation/qtrvsim/metadata.xml new file mode 100644 index 0000000..115e9d6 --- /dev/null +++ b/app-emulation/qtrvsim/metadata.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/app-emulation/qtrvsim/qtrvsim-0.9.5.ebuild b/app-emulation/qtrvsim/qtrvsim-0.9.5.ebuild new file mode 100644 index 0000000..1ee6dc5 --- /dev/null +++ b/app-emulation/qtrvsim/qtrvsim-0.9.5.ebuild @@ -0,0 +1,19 @@ +# Copyright 2023 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/qtgui + dev-qt/qtwidgets + " +RDEPEND="${DEPEND}" +BDEPEND=""