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 3E69E158041 for ; Tue, 19 Mar 2024 21:42:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 782A4E29B7; Tue, 19 Mar 2024 21:42:29 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 51670E29B7 for ; Tue, 19 Mar 2024 21:42:29 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2ECB933BEE9 for ; Tue, 19 Mar 2024 21:42:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8AFCC1520 for ; Tue, 19 Mar 2024 21:42:26 +0000 (UTC) From: "Vitaly Zdanevich" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Vitaly Zdanevich" Message-ID: <1710884533.0d4c5ba2b199f3b849409a9bc0d15f49f80c614c.zdanevich.vitaly@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: games-emulation/conty/ X-VCS-Repository: repo/proj/guru X-VCS-Files: games-emulation/conty/conty-1.25.2.ebuild X-VCS-Directories: games-emulation/conty/ X-VCS-Committer: zdanevich.vitaly X-VCS-Committer-Name: Vitaly Zdanevich X-VCS-Revision: 0d4c5ba2b199f3b849409a9bc0d15f49f80c614c X-VCS-Branch: dev Date: Tue, 19 Mar 2024 21:42:26 +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: 8f6f0316-ad6c-4424-9506-5b0fec86a0ec X-Archives-Hash: ec4f038d4ffd30921ac4165299bcb116 commit: 0d4c5ba2b199f3b849409a9bc0d15f49f80c614c Author: Vitaly Zdanevich ya ru> AuthorDate: Tue Mar 19 21:42:13 2024 +0000 Commit: Vitaly Zdanevich ya ru> CommitDate: Tue Mar 19 21:42:13 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0d4c5ba2 games-emulation/conty: bump Signed-off-by: Vitaly Zdanevich ya.ru> games-emulation/conty/conty-1.25.2.ebuild | 41 +++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/games-emulation/conty/conty-1.25.2.ebuild b/games-emulation/conty/conty-1.25.2.ebuild new file mode 100644 index 0000000000..eb20204d54 --- /dev/null +++ b/games-emulation/conty/conty-1.25.2.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2024 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Easy to use unprivileged Linux container packed in a single portable executable" +HOMEPAGE="https://github.com/Kron4ek/Conty" + +inherit linux-info + +NAME="${PN}_lite_dwarfs.sh" + +SRC_URI="https://github.com/Kron4ek/Conty/releases/download/${PV}/${NAME}" +KEYWORDS="~amd64" + +LICENSE="MIT" +SLOT="0" +RESTRICT="strip" + +RDEPEND="sys-fs/fuse:0" + +S="${WORKDIR}" + +QA_PREBUILT="*" + +CONFIG_CHECK=" + IA32_EMULATION + USER_NS +" + +src_install() { + dobin "${DISTDIR}/${PN}_lite_dwarfs.sh" +} + +pkg_postinst() { + einfo "How to use: $ ${NAME} [command] [command_arguments]" + einfo "For example: ${NAME} steam" + einfo "or" + einfo "WINEPREFIX=$HOME/wine-conty ${NAME} gamescope -f -- wine ./game.exe" + +}