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 A1D8015800A for ; Sun, 16 Jul 2023 06:18:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DE1C2E08A0; Sun, 16 Jul 2023 06:18:43 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 BE9B0E089F for ; Sun, 16 Jul 2023 06:18:43 +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 11F90340D23 for ; Sun, 16 Jul 2023 06:18:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 89F30B61 for ; Sun, 16 Jul 2023 06:18:39 +0000 (UTC) From: "Haelwenn Monnier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Haelwenn Monnier" Message-ID: <1689352918.2102e708b159171ea2c137dff6faf94cca79d1f2.lanodan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: app-emulation/box64/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-emulation/box64/Manifest app-emulation/box64/box64-0.2.2.ebuild app-emulation/box64/metadata.xml X-VCS-Directories: app-emulation/box64/ X-VCS-Committer: lanodan X-VCS-Committer-Name: Haelwenn Monnier X-VCS-Revision: 2102e708b159171ea2c137dff6faf94cca79d1f2 X-VCS-Branch: master Date: Sun, 16 Jul 2023 06:18:39 +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: a4857ee1-8c7a-4eb3-bd75-bc13f8aa8a51 X-Archives-Hash: 9c1a1d33551d638d2e1d5d3226adaf90 commit: 2102e708b159171ea2c137dff6faf94cca79d1f2 Author: Richard-Rogalski tutanota com> AuthorDate: Fri Jul 14 16:37:38 2023 +0000 Commit: Haelwenn Monnier hacktivis me> CommitDate: Fri Jul 14 16:41:58 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2102e708 app-emulation/box64: new package, add 0.2.2 Signed-off-by: Richard-Rogalski tutanota.com> app-emulation/box64/Manifest | 1 + app-emulation/box64/box64-0.2.2.ebuild | 39 ++++++++++++++++++++++++++++++++++ app-emulation/box64/metadata.xml | 15 +++++++++++++ 3 files changed, 55 insertions(+) diff --git a/app-emulation/box64/Manifest b/app-emulation/box64/Manifest new file mode 100644 index 000000000..ab6823137 --- /dev/null +++ b/app-emulation/box64/Manifest @@ -0,0 +1 @@ +DIST box64-0.2.2.tar.gz 3359829 BLAKE2B 52e4be1daadaffa16ed494d06441252dc27e68a82dbe13b1f3b0deeac59cc91a6f3c23e52fa9a574e5a1475fd38c8e41f05c3349b501cc1c6f338e70c7ad5c50 SHA512 3213e112aad44118209733960523d459bf74a07b7a1cc1b1b86d5938af2052fc298c8d2b28237cd7186751bdfcf791741a82fdf461c02b58f7e98461b794ef95 diff --git a/app-emulation/box64/box64-0.2.2.ebuild b/app-emulation/box64/box64-0.2.2.ebuild new file mode 100644 index 000000000..cab0a0b2a --- /dev/null +++ b/app-emulation/box64/box64-0.2.2.ebuild @@ -0,0 +1,39 @@ +# Copyright 2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake optfeature + +DESCRIPTION="Linux Userspace x86_64 Emulator with a twist" +HOMEPAGE="https://box86.org" +SRC_URI="https://github.com/ptitSeb/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~arm64 ~ppc64" +IUSE="aot" +REQUIRED_USE="aot? ( arm64 )" + +DEPEND="" +RDEPEND="${DEPEND}" +BDEPEND="" + +src_configure() { + local -a mycmakeargs=( + -DNOGIT=1 + -DARM_DYNAREC=$(usex jit) + ) + + use ppc64 && mycmakeargs+=( -DPPC64LE=1 ) + use riscv && mycmakeargs+=( -DRV64=1 ) + use loong && mycmakeargs+=( -DLARCH64=1 ) + use amd64 && mycmakeargs+=( -DLD80BITS=1 -DNOALIGN=1 ) + + cmake_src_configure +} + +pkg_postinst() { + optfeature "OpenGL for GLES devices" \ + "media-libs/gl4es" +} diff --git a/app-emulation/box64/metadata.xml b/app-emulation/box64/metadata.xml new file mode 100644 index 000000000..a14dd74f9 --- /dev/null +++ b/app-emulation/box64/metadata.xml @@ -0,0 +1,15 @@ + + + + + rrogalski@tutanota.com + Richard Rogalski + + + + Enables the dynamic ahead of time recompiler for increased performance on ARM + + + ptitSeb/box64 + +