public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: games-emulation/conty/
@ 2024-03-10  9:22 Vitaly Zdanevich
  0 siblings, 0 replies; 7+ messages in thread
From: Vitaly Zdanevich @ 2024-03-10  9:22 UTC (permalink / raw
  To: gentoo-commits

commit:     c886d9c89d64c55614076b2224376d86e956ba6d
Author:     Vitaly Zdanevich <zdanevich.vitaly <AT> ya <DOT> ru>
AuthorDate: Sun Mar 10 09:22:34 2024 +0000
Commit:     Vitaly Zdanevich <zdanevich.vitaly <AT> ya <DOT> ru>
CommitDate: Sun Mar 10 09:22:34 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c886d9c8

games-emulation/conty: new package

Signed-off-by: Vitaly Zdanevich <zdanevich.vitaly <AT> ya.ru>

 games-emulation/conty/Manifest            |  1 +
 games-emulation/conty/conty-1.25.1.ebuild | 36 +++++++++++++++++++++++++++++++
 games-emulation/conty/metadata.xml        | 27 +++++++++++++++++++++++
 3 files changed, 64 insertions(+)

diff --git a/games-emulation/conty/Manifest b/games-emulation/conty/Manifest
new file mode 100644
index 0000000000..aebbe62200
--- /dev/null
+++ b/games-emulation/conty/Manifest
@@ -0,0 +1 @@
+DIST conty_lite_dwarfs.sh 1406491989 BLAKE2B 5106200f9b9e565044b8c525fb53349235ba78207e00b69dfdd0071439fef1eac55f204c89a9f0949b416c5d07d7e22f589062de57ba34b5a106cd0723b345e6 SHA512 3f74ac40583e362ee7bc05684aa7d2f77f7d2b908f98d179539a714cd9a83cc58948c12352fd948df9b446bb9119c078c6ffae874a9bdbf726167fb1e45ed8ee

diff --git a/games-emulation/conty/conty-1.25.1.ebuild b/games-emulation/conty/conty-1.25.1.ebuild
new file mode 100644
index 0000000000..45b0f880d3
--- /dev/null
+++ b/games-emulation/conty/conty-1.25.1.ebuild
@@ -0,0 +1,36 @@
+# 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
+
+SRC_URI="https://github.com/Kron4ek/Conty/releases/download/${PV}/${PN}_lite_dwarfs.sh"
+KEYWORDS="~amd64"
+
+LICENSE="MIT"
+SLOT="0"
+RESTRICT="strip"
+
+RDEPEND="sys-fs/fuse:0"
+
+S="${WORKDIR}"
+
+QA_PREBUILT="*"
+
+CONFIG_CHECK="IA32_EMULATION"
+
+src_install() {
+	dobin "${DISTDIR}/${PN}_lite_dwarfs.sh"
+}
+
+pkg_postinst() {
+	einfo "How to use: $ ./conty.sh [command] [command_arguments]"
+	einfo "For example: ./conty.sh steam"
+	einfo "or"
+	einfo "WINEPREFIX=$HOME/wine-conty ./conty.sh gamescope -f -- wine ./game.exe"
+
+}

diff --git a/games-emulation/conty/metadata.xml b/games-emulation/conty/metadata.xml
new file mode 100644
index 0000000000..c1ffd91500
--- /dev/null
+++ b/games-emulation/conty/metadata.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<name>Vitaly Zdanevich</name>
+		<email>zdanevich.vitaly@ya.ru</email>
+	</maintainer>
+	<longdescription>
+This is an easy to use compressed unprivileged Linux container packed into a single executable. It is designed to be as simple and user-friendly as possible. You can use it to run any applications, including games (Vulkan and OpenGL).
+
+Includes, among others, these apps: Wine-GE, Steam, Lutris, PlayOnLinux, GameHub, Minigalaxy, Legendary, Bottles, MultiMC, MangoHud, Gamescope, RetroArch, Sunshine.
+
+Based on Arch Linux.
+
+All applications that you run with Conty read and store their configs in your HOME directory as if you weren't using the container at all.
+
+No performance overhead. Since it's just a container, there is virtually no performance overhead, all applications will run at full speed. Regarding memory usage, Conty uses a bit more memory due to compression and because applications from the container can't share libraries with your system apps.
+
+Supports Xorg, Wayland and XWayland.
+
+Supports Chaotic-AUR and ALHP repositories. AUR is also supported.
+	</longdescription>
+	<upstream>
+		<remote-id type="github">Kron4ek/Conty</remote-id>
+		<bugs-to>https://github.com/Kron4ek/Conty/issues</bugs-to>
+	</upstream>
+</pkgmetadata>


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: games-emulation/conty/
@ 2024-03-11  5:42 Vitaly Zdanevich
  0 siblings, 0 replies; 7+ messages in thread
From: Vitaly Zdanevich @ 2024-03-11  5:42 UTC (permalink / raw
  To: gentoo-commits

commit:     308a5510df8a218870f4d0c4c1197b860ea5b177
Author:     Vitaly Zdanevich <zdanevich.vitaly <AT> ya <DOT> ru>
AuthorDate: Mon Mar 11 05:42:33 2024 +0000
Commit:     Vitaly Zdanevich <zdanevich.vitaly <AT> ya <DOT> ru>
CommitDate: Mon Mar 11 05:42:33 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=308a5510

games-emulation/conty: fix einfo executable name

Signed-off-by: Vitaly Zdanevich <zdanevich.vitaly <AT> ya.ru>

 games-emulation/conty/conty-1.25.1.ebuild | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/games-emulation/conty/conty-1.25.1.ebuild b/games-emulation/conty/conty-1.25.1.ebuild
index 45b0f880d3..6a850dbc54 100644
--- a/games-emulation/conty/conty-1.25.1.ebuild
+++ b/games-emulation/conty/conty-1.25.1.ebuild
@@ -8,7 +8,9 @@ HOMEPAGE="https://github.com/Kron4ek/Conty"
 
 inherit linux-info
 
-SRC_URI="https://github.com/Kron4ek/Conty/releases/download/${PV}/${PN}_lite_dwarfs.sh"
+NAME="${PN}_lite_dwarfs.sh"
+
+SRC_URI="https://github.com/Kron4ek/Conty/releases/download/${PV}/${NAME}"
 KEYWORDS="~amd64"
 
 LICENSE="MIT"
@@ -28,9 +30,9 @@ src_install() {
 }
 
 pkg_postinst() {
-	einfo "How to use: $ ./conty.sh [command] [command_arguments]"
-	einfo "For example: ./conty.sh steam"
+	einfo "How to use: $ ${NAME} [command] [command_arguments]"
+	einfo "For example: ${NAME} steam"
 	einfo "or"
-	einfo "WINEPREFIX=$HOME/wine-conty ./conty.sh gamescope -f -- wine ./game.exe"
+	einfo "WINEPREFIX=$HOME/wine-conty ${NAME} gamescope -f -- wine ./game.exe"
 
 }


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: games-emulation/conty/
@ 2024-03-11 15:52 Vitaly Zdanevich
  0 siblings, 0 replies; 7+ messages in thread
From: Vitaly Zdanevich @ 2024-03-11 15:52 UTC (permalink / raw
  To: gentoo-commits

commit:     9de82cf84fd860acd171bc5a4aa08b400c8552a8
Author:     Vitaly Zdanevich <zdanevich.vitaly <AT> ya <DOT> ru>
AuthorDate: Mon Mar 11 15:52:06 2024 +0000
Commit:     Vitaly Zdanevich <zdanevich.vitaly <AT> ya <DOT> ru>
CommitDate: Mon Mar 11 15:52:06 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9de82cf8

games-emulation/conty: add check that kernel has CONFIG_USER_NS

Signed-off-by: Vitaly Zdanevich <zdanevich.vitaly <AT> ya.ru>

 games-emulation/conty/conty-1.25.1.ebuild | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/games-emulation/conty/conty-1.25.1.ebuild b/games-emulation/conty/conty-1.25.1.ebuild
index 6a850dbc54..ea6a7c08b3 100644
--- a/games-emulation/conty/conty-1.25.1.ebuild
+++ b/games-emulation/conty/conty-1.25.1.ebuild
@@ -23,7 +23,10 @@ S="${WORKDIR}"
 
 QA_PREBUILT="*"
 
-CONFIG_CHECK="IA32_EMULATION"
+CONFIG_CHECK="
+	IA32_EMULATION
+	CONFIG_USER_NS
+"
 
 src_install() {
 	dobin "${DISTDIR}/${PN}_lite_dwarfs.sh"


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: games-emulation/conty/
@ 2024-03-11 15:52 Vitaly Zdanevich
  0 siblings, 0 replies; 7+ messages in thread
From: Vitaly Zdanevich @ 2024-03-11 15:52 UTC (permalink / raw
  To: gentoo-commits

commit:     400d1b350b69b95fa3e49fc3aa2db72317c81371
Author:     Vitaly Zdanevich <zdanevich.vitaly <AT> ya <DOT> ru>
AuthorDate: Mon Mar 11 15:52:54 2024 +0000
Commit:     Vitaly Zdanevich <zdanevich.vitaly <AT> ya <DOT> ru>
CommitDate: Mon Mar 11 15:52:54 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=400d1b35

games-emulation/conty: Kernel check: remove CONFIG_ prefix

Signed-off-by: Vitaly Zdanevich <zdanevich.vitaly <AT> ya.ru>

 games-emulation/conty/conty-1.25.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-emulation/conty/conty-1.25.1.ebuild b/games-emulation/conty/conty-1.25.1.ebuild
index ea6a7c08b3..eb20204d54 100644
--- a/games-emulation/conty/conty-1.25.1.ebuild
+++ b/games-emulation/conty/conty-1.25.1.ebuild
@@ -25,7 +25,7 @@ QA_PREBUILT="*"
 
 CONFIG_CHECK="
 	IA32_EMULATION
-	CONFIG_USER_NS
+	USER_NS
 "
 
 src_install() {


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: games-emulation/conty/
@ 2024-03-19 21:42 Vitaly Zdanevich
  0 siblings, 0 replies; 7+ messages in thread
From: Vitaly Zdanevich @ 2024-03-19 21:42 UTC (permalink / raw
  To: gentoo-commits

commit:     0d4c5ba2b199f3b849409a9bc0d15f49f80c614c
Author:     Vitaly Zdanevich <zdanevich.vitaly <AT> ya <DOT> ru>
AuthorDate: Tue Mar 19 21:42:13 2024 +0000
Commit:     Vitaly Zdanevich <zdanevich.vitaly <AT> ya <DOT> 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 <zdanevich.vitaly <AT> 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"
+
+}


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: games-emulation/conty/
@ 2024-03-20 14:22 Vitaly Zdanevich
  0 siblings, 0 replies; 7+ messages in thread
From: Vitaly Zdanevich @ 2024-03-20 14:22 UTC (permalink / raw
  To: gentoo-commits

commit:     12fce83847989247b8bed7f972a267f3129794db
Author:     Vitaly Zdanevich <zdanevich.vitaly <AT> ya <DOT> ru>
AuthorDate: Wed Mar 20 14:21:56 2024 +0000
Commit:     Vitaly Zdanevich <zdanevich.vitaly <AT> ya <DOT> ru>
CommitDate: Wed Mar 20 14:21:56 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=12fce838

games-emulation/conty: every version - executable name different

Closes: https://bugs.gentoo.org/927326
Signed-off-by: Vitaly Zdanevich <zdanevich.vitaly <AT> ya.ru>

 games-emulation/conty/Manifest            | 3 ++-
 games-emulation/conty/conty-1.25.1.ebuild | 4 ++--
 games-emulation/conty/conty-1.25.2.ebuild | 4 ++--
 3 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/games-emulation/conty/Manifest b/games-emulation/conty/Manifest
index aebbe62200..79f7a26fec 100644
--- a/games-emulation/conty/Manifest
+++ b/games-emulation/conty/Manifest
@@ -1 +1,2 @@
-DIST conty_lite_dwarfs.sh 1406491989 BLAKE2B 5106200f9b9e565044b8c525fb53349235ba78207e00b69dfdd0071439fef1eac55f204c89a9f0949b416c5d07d7e22f589062de57ba34b5a106cd0723b345e6 SHA512 3f74ac40583e362ee7bc05684aa7d2f77f7d2b908f98d179539a714cd9a83cc58948c12352fd948df9b446bb9119c078c6ffae874a9bdbf726167fb1e45ed8ee
+DIST conty-1.25.1 1406491989 BLAKE2B 5106200f9b9e565044b8c525fb53349235ba78207e00b69dfdd0071439fef1eac55f204c89a9f0949b416c5d07d7e22f589062de57ba34b5a106cd0723b345e6 SHA512 3f74ac40583e362ee7bc05684aa7d2f77f7d2b908f98d179539a714cd9a83cc58948c12352fd948df9b446bb9119c078c6ffae874a9bdbf726167fb1e45ed8ee
+DIST conty-1.25.2 1400806116 BLAKE2B 2cb6fffe4603a5f147cbdf802277b0c0ea73924151397463484aa3e715dc3c42ce25961811b51a898af5ed8a3289d7e4e3b32a9b4c864c47852880f6c9e511e4 SHA512 1cdc34f689b04d44504b57fa93665e9a27546f16ebc1541889212b0612d76ecac654384be5ffe694c59336bd2bdcd9498bf591957f5f721c4de2e238f049485a

diff --git a/games-emulation/conty/conty-1.25.1.ebuild b/games-emulation/conty/conty-1.25.1.ebuild
index eb20204d54..00680ba83f 100644
--- a/games-emulation/conty/conty-1.25.1.ebuild
+++ b/games-emulation/conty/conty-1.25.1.ebuild
@@ -10,7 +10,7 @@ inherit linux-info
 
 NAME="${PN}_lite_dwarfs.sh"
 
-SRC_URI="https://github.com/Kron4ek/Conty/releases/download/${PV}/${NAME}"
+SRC_URI="https://github.com/Kron4ek/Conty/releases/download/${PV}/${NAME} -> $P"
 KEYWORDS="~amd64"
 
 LICENSE="MIT"
@@ -29,7 +29,7 @@ CONFIG_CHECK="
 "
 
 src_install() {
-	dobin "${DISTDIR}/${PN}_lite_dwarfs.sh"
+	dobin "${DISTDIR}/${P}"
 }
 
 pkg_postinst() {

diff --git a/games-emulation/conty/conty-1.25.2.ebuild b/games-emulation/conty/conty-1.25.2.ebuild
index eb20204d54..00680ba83f 100644
--- a/games-emulation/conty/conty-1.25.2.ebuild
+++ b/games-emulation/conty/conty-1.25.2.ebuild
@@ -10,7 +10,7 @@ inherit linux-info
 
 NAME="${PN}_lite_dwarfs.sh"
 
-SRC_URI="https://github.com/Kron4ek/Conty/releases/download/${PV}/${NAME}"
+SRC_URI="https://github.com/Kron4ek/Conty/releases/download/${PV}/${NAME} -> $P"
 KEYWORDS="~amd64"
 
 LICENSE="MIT"
@@ -29,7 +29,7 @@ CONFIG_CHECK="
 "
 
 src_install() {
-	dobin "${DISTDIR}/${PN}_lite_dwarfs.sh"
+	dobin "${DISTDIR}/${P}"
 }
 
 pkg_postinst() {


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: games-emulation/conty/
@ 2024-08-19  0:33 John M. Harris, Jr.
  0 siblings, 0 replies; 7+ messages in thread
From: John M. Harris, Jr. @ 2024-08-19  0:33 UTC (permalink / raw
  To: gentoo-commits

commit:     98f9b78a40a26e29aab5c08de5c2290bb0ed024d
Author:     John M. Harris Jr. <johnmh <AT> johnmh <DOT> me>
AuthorDate: Mon Aug 19 00:28:01 2024 +0000
Commit:     John M. Harris, Jr. <johnmh <AT> johnmh <DOT> me>
CommitDate: Mon Aug 19 00:33:24 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=98f9b78a

games-emulation/conty: treeclean

This package contains a SquashFS image of Arch Linux.

The license for code written as part of conty is MIT, but
each package installed in the bundled SquashFS image has a
different license.

Signed-off-by: John M. Harris Jr. <johnmh <AT> johnmh.me>

 games-emulation/conty/Manifest            |  2 --
 games-emulation/conty/conty-1.25.1.ebuild | 41 -------------------------------
 games-emulation/conty/conty-1.25.2.ebuild | 41 -------------------------------
 games-emulation/conty/metadata.xml        | 27 --------------------
 4 files changed, 111 deletions(-)

diff --git a/games-emulation/conty/Manifest b/games-emulation/conty/Manifest
deleted file mode 100644
index 79f7a26fe..000000000
--- a/games-emulation/conty/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST conty-1.25.1 1406491989 BLAKE2B 5106200f9b9e565044b8c525fb53349235ba78207e00b69dfdd0071439fef1eac55f204c89a9f0949b416c5d07d7e22f589062de57ba34b5a106cd0723b345e6 SHA512 3f74ac40583e362ee7bc05684aa7d2f77f7d2b908f98d179539a714cd9a83cc58948c12352fd948df9b446bb9119c078c6ffae874a9bdbf726167fb1e45ed8ee
-DIST conty-1.25.2 1400806116 BLAKE2B 2cb6fffe4603a5f147cbdf802277b0c0ea73924151397463484aa3e715dc3c42ce25961811b51a898af5ed8a3289d7e4e3b32a9b4c864c47852880f6c9e511e4 SHA512 1cdc34f689b04d44504b57fa93665e9a27546f16ebc1541889212b0612d76ecac654384be5ffe694c59336bd2bdcd9498bf591957f5f721c4de2e238f049485a

diff --git a/games-emulation/conty/conty-1.25.1.ebuild b/games-emulation/conty/conty-1.25.1.ebuild
deleted file mode 100644
index 879bc6a36..000000000
--- a/games-emulation/conty/conty-1.25.1.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit linux-info
-
-NAME="${PN}_lite_dwarfs.sh"
-
-DESCRIPTION="Easy to use unprivileged Linux container packed in a single portable executable"
-HOMEPAGE="https://github.com/Kron4ek/Conty"
-SRC_URI="https://github.com/Kron4ek/Conty/releases/download/${PV}/${NAME} -> $P"
-
-S="${WORKDIR}"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-
-RESTRICT="strip"
-
-RDEPEND="sys-fs/fuse:0"
-
-QA_PREBUILT="*"
-
-CONFIG_CHECK="
-	IA32_EMULATION
-	USER_NS
-"
-
-src_install() {
-	dobin "${DISTDIR}/${P}"
-}
-
-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"
-
-}

diff --git a/games-emulation/conty/conty-1.25.2.ebuild b/games-emulation/conty/conty-1.25.2.ebuild
deleted file mode 100644
index f0b4dce33..000000000
--- a/games-emulation/conty/conty-1.25.2.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit linux-info
-
-NAME="${PN}_lite_dwarfs.sh"
-
-DESCRIPTION="Easy to use unprivileged Linux container packed in a single portable executable"
-HOMEPAGE="https://github.com/Kron4ek/Conty"
-SRC_URI="https://github.com/Kron4ek/Conty/releases/download/${PV}/${NAME} -> ${P}"
-
-S="${WORKDIR}"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-
-RESTRICT="strip"
-
-RDEPEND="sys-fs/fuse:0"
-
-QA_PREBUILT="*"
-
-CONFIG_CHECK="
-	IA32_EMULATION
-	USER_NS
-"
-
-src_install() {
-	dobin "${DISTDIR}/${P}"
-}
-
-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"
-
-}

diff --git a/games-emulation/conty/metadata.xml b/games-emulation/conty/metadata.xml
deleted file mode 100644
index c1ffd9150..000000000
--- a/games-emulation/conty/metadata.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-	<maintainer type="person">
-		<name>Vitaly Zdanevich</name>
-		<email>zdanevich.vitaly@ya.ru</email>
-	</maintainer>
-	<longdescription>
-This is an easy to use compressed unprivileged Linux container packed into a single executable. It is designed to be as simple and user-friendly as possible. You can use it to run any applications, including games (Vulkan and OpenGL).
-
-Includes, among others, these apps: Wine-GE, Steam, Lutris, PlayOnLinux, GameHub, Minigalaxy, Legendary, Bottles, MultiMC, MangoHud, Gamescope, RetroArch, Sunshine.
-
-Based on Arch Linux.
-
-All applications that you run with Conty read and store their configs in your HOME directory as if you weren't using the container at all.
-
-No performance overhead. Since it's just a container, there is virtually no performance overhead, all applications will run at full speed. Regarding memory usage, Conty uses a bit more memory due to compression and because applications from the container can't share libraries with your system apps.
-
-Supports Xorg, Wayland and XWayland.
-
-Supports Chaotic-AUR and ALHP repositories. AUR is also supported.
-	</longdescription>
-	<upstream>
-		<remote-id type="github">Kron4ek/Conty</remote-id>
-		<bugs-to>https://github.com/Kron4ek/Conty/issues</bugs-to>
-	</upstream>
-</pkgmetadata>


^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2024-08-19  0:33 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-19 21:42 [gentoo-commits] repo/proj/guru:dev commit in: games-emulation/conty/ Vitaly Zdanevich
  -- strict thread matches above, loose matches on Subject: below --
2024-08-19  0:33 John M. Harris, Jr.
2024-03-20 14:22 Vitaly Zdanevich
2024-03-11 15:52 Vitaly Zdanevich
2024-03-11 15:52 Vitaly Zdanevich
2024-03-11  5:42 Vitaly Zdanevich
2024-03-10  9:22 Vitaly Zdanevich

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox