diff options
author | Kostadin Shishmanov <kocelfc@tutanota.com> | 2024-08-24 16:37:00 +0300 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2024-08-30 10:32:41 +0300 |
commit | 9152a4fb96cfea57cb3041f25f966e32538abe1b (patch) | |
tree | eba5ded2495a12d3fba70626e6f69eed1e28fc36 | |
parent | games-util/gamemode: update postinst message for 9999 (diff) | |
download | gentoo-9152a4fb96cfea57cb3041f25f966e32538abe1b.tar.gz gentoo-9152a4fb96cfea57cb3041f25f966e32538abe1b.tar.bz2 gentoo-9152a4fb96cfea57cb3041f25f966e32538abe1b.zip |
games-util/gamemode: drop 1.7
Signed-off-by: Kostadin Shishmanov <kocelfc@tutanota.com>
Closes: https://github.com/gentoo/gentoo/pull/38280
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
-rw-r--r-- | games-util/gamemode/Manifest | 1 | ||||
-rw-r--r-- | games-util/gamemode/files/gamemode-1.7-glibc-2.36.patch | 20 | ||||
-rw-r--r-- | games-util/gamemode/files/gamemode-1.7-static-libs.patch | 29 | ||||
-rw-r--r-- | games-util/gamemode/gamemode-1.7.ebuild | 128 |
4 files changed, 0 insertions, 178 deletions
diff --git a/games-util/gamemode/Manifest b/games-util/gamemode/Manifest index c316b357dca6..9e677943b4ab 100644 --- a/games-util/gamemode/Manifest +++ b/games-util/gamemode/Manifest @@ -1,3 +1,2 @@ -DIST gamemode-1.7.tar.xz 73264 BLAKE2B 81957a1989cf49532b0d80fc9b96a75d8205e7f148125309f3cae601f6fe125e8d839d4b92bea418a229a6e2658eaa55db2b3bbdb5e7efb26d278e2b22ab8269 SHA512 1fc91367af37d18e0042831b377cafec122c603ab699ecc314b0ded11410aab1bd739712e7305e497796fda25bee88d34438d5f3751595bf579dcbeb7335d15b DIST gamemode-1.8.1.tar.xz 78284 BLAKE2B de78c97b61cebd1f4cc29f0ab5c353e8db668eca3d6d8c65fa0cdbc167b1b172d3371e85bcb4cb193c043f0917127bc3a76ebd7de158555af6d145b1e8eb93d7 SHA512 7bfe7d34b422a87c2f53e69b44649a1aca7eba9fb08daa52e7e2f521fea0744e8f03b666c4dd684ad85ccadde20bc2edfb716d67a103629baa690051b8836554 DIST gamemode-1.8.2.tar.xz 78724 BLAKE2B e7c0ed0b76231721f851048f77c7148b08cce098ea15232c3e91916a4b3cbe3925186b14e0110ab5773f5db3f4e017fe6930d62169892b048e1d15ae60b0e05a SHA512 eb33f3b7a2d6811aeb13370b0c5ba60fc7630d2f2e59beea059f7d301c57f23b492541c9a128f0e357820ffe5370731d78031df4e392682acba4b232b7778450 diff --git a/games-util/gamemode/files/gamemode-1.7-glibc-2.36.patch b/games-util/gamemode/files/gamemode-1.7-glibc-2.36.patch deleted file mode 100644 index bb305afd5a35..000000000000 --- a/games-util/gamemode/files/gamemode-1.7-glibc-2.36.patch +++ /dev/null @@ -1,20 +0,0 @@ -https://github.com/FeralInteractive/gamemode/commit/4934191b1928ef695c3e8af21e75781f8591745f -https://bugs.gentoo.org/863995 - -From: =?UTF-8?q?Nyikos=20Zolt=C3=A1n?= <nyikoszoltan0@gmail.com> -Date: Wed, 10 Aug 2022 19:56:59 +0200 -Subject: [PATCH] Fix building when pidfd_open is available - -On glibc2.36 pidfd_open was made available, but it needs an include ---- a/common/common-pidfds.c -+++ b/common/common-pidfds.c -@@ -58,6 +58,8 @@ static int pidfd_open(pid_t pid, unsigned int flags) - { - return (int)syscall(__NR_pidfd_open, pid, flags); - } -+#else -+#include <sys/pidfd.h> - #endif - - /* pidfd functions */ - diff --git a/games-util/gamemode/files/gamemode-1.7-static-libs.patch b/games-util/gamemode/files/gamemode-1.7-static-libs.patch deleted file mode 100644 index 89fd0ba3d70a..000000000000 --- a/games-util/gamemode/files/gamemode-1.7-static-libs.patch +++ /dev/null @@ -1,29 +0,0 @@ -From d339709cc42fe0b78b881d760003845010f5a7c1 Mon Sep 17 00:00:00 2001 -From: James Le Cuirot <chewi@gentoo.org> -Date: Sat, 6 Aug 2022 14:42:27 +0100 -Subject: [PATCH] Don't force installation of static libgamemodeauto - -Defining the library with `library` rather than `both_libraries` allows the user -to choose which type they want to install using `-Ddefault_library`. - -Closes: https://github.com/FeralInteractive/gamemode/issues/287 ---- - lib/meson.build | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/lib/meson.build b/lib/meson.build -index e810509..7cdcf8a 100644 ---- a/lib/meson.build -+++ b/lib/meson.build -@@ -25,7 +25,7 @@ gamemode_headers_includes = [ - ] - - # Small library to automatically use gamemode --libgamemodeauto = both_libraries( -+libgamemodeauto = library( - 'gamemodeauto', - sources: [ - 'client_loader.c', --- -2.35.1 - diff --git a/games-util/gamemode/gamemode-1.7.ebuild b/games-util/gamemode/gamemode-1.7.ebuild deleted file mode 100644 index c54619d5b953..000000000000 --- a/games-util/gamemode/gamemode-1.7.ebuild +++ /dev/null @@ -1,128 +0,0 @@ -# Copyright 2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -MULTILIB_COMPAT=( abi_x86_{32,64} ) - -inherit meson-multilib systemd - -DESCRIPTION="Optimise Linux system performance on demand" -HOMEPAGE="https://github.com/FeralInteractive/gamemode" - -if [[ ${PV} == "9999" ]] ; then - EGIT_REPO_URI="https://github.com/FeralInteractive/gamemode.git" - GAMEMODE_GIT_PTR="master" - inherit git-r3 -else - GAMEMODE_GIT_PTR="${PV}" - SRC_URI="https://github.com/FeralInteractive/gamemode/releases/download/${GAMEMODE_GIT_PTR}/${P}.tar.xz" - KEYWORDS="~amd64 ~x86" -fi - -LICENSE="BSD" -SLOT="0" -IUSE="systemd elogind" - -REQUIRED_USE="^^ ( systemd elogind )" - -RDEPEND=" - acct-group/gamemode - >=dev-libs/inih-53 - sys-apps/dbus[${MULTILIB_USEDEP},systemd(+)=,elogind(-)=] - sys-auth/polkit - sys-libs/libcap -" -DEPEND="${RDEPEND}" - -PATCHES=( - "${FILESDIR}"/${PN}-1.7-static-libs.patch - "${FILESDIR}"/${P}-glibc-2.36.patch -) - -DOCS=( - CHANGELOG.md - LICENSE.txt - README.md - example/gamemode.ini -) - -pkg_pretend() { - elog - elog "GameMode needs a kernel capable of SCHED_ISO to use its soft realtime" - elog "feature. Example of a kernel providing that is sys-kernel/pf-sources." - elog - elog "Support for soft realtime is completely optional. It may provide the" - elog "following benefits with systems having at least four CPU cores:" - elog - elog " * more CPU shares allocated exclusively to the game" - elog " * reduced input lag and reduced thread latency" - elog " * more consistent frame times resulting in less microstutters" - elog - elog "You probably won't benefit from soft realtime mode and thus don't need" - elog "SCHED_ISO if:" - elog - elog " * Your CPU has less than four cores because the game may experience" - elog " priority inversion with the graphics driver (thus heuristics" - elog " automatically disable SCHED_ISO usage then)" - elog " * Your game uses busy-loops to interface with the graphics driver" - elog " but you may still force SCHED_ISO per configuation file, YMMV," - elog " it depends on the graphics driver implementation, i.e. usage of" - elog " __GL_THREADED_OPTIMIZATIONS or similar." - elog " * If your game causes more than 70% CPU usage across all cores," - elog " SCHED_ISO automatically turns off and on depending on usage and" - elog " is processed with higher-than-normal priority then (renice)." - elog " This auto-switching may result in a lesser game experience." - elog - elog "For more info look at:" - elog "https://github.com/FeralInteractive/gamemode/blob/${GAMEMODE_GIT_PTR}/README.md" - elog -} - -multilib_src_configure() { - local emesonargs=( - -Dwith-systemd-user-unit-dir="$(systemd_get_userunitdir)" - ) - if multilib_is_native_abi; then - emesonargs+=( - -Dwith-sd-bus-provider=$(usex systemd systemd elogind) - -Dwith-util=true - ) - else - emesonargs+=( - -Dwith-sd-bus-provider=no-daemon - -Dwith-pam-group=gamemode - -Dwith-examples=false - -Dwith-util=false - ) - fi - - meson_src_configure -} - -pkg_postinst() { - elog - elog "GameMode has optional support for adjusting nice and ioprio of games" - elog "running with it. You may need to adjust your PAM limits to make use" - elog "of this. You need to be in the gamemode group for this to work." - elog - elog "Run the following command as root to add your user:" - elog "# gpasswd -a USER gamemode # with USER = your user name" - elog - elog "You can run the following command to test your settings:" - elog - elog "# gamemoded -t" - elog - elog "GameMode supports GPU optimizations. It defaults to OFF. Any" - elog "damage resulting from usage of this is your own responsibility." - elog - elog "systemd user sessions will automatically run the daemon on demand," - elog "it does not need to be enabled explicitly. Games not supporting" - elog "GameMode natively can still make use of it, just add" - elog - elog "gamemoderun %command%" - elog - elog "to the start options of any steam game to enable optimizations" - elog "automatically as you start the game." - elog -} |