summaryrefslogtreecommitdiff
path: root/app-misc/tmux-mem-cpu-load
diff options
context:
space:
mode:
authorPetr Vaněk <arkamar@gentoo.org>2024-12-23 12:25:40 +0100
committerPetr Vaněk <arkamar@gentoo.org>2024-12-23 13:14:14 +0100
commit40b29f743cec30dd03b61d1749fb27ff9dbbd623 (patch)
tree3a5f93cf54b01ebb4a7ef9726f5a1d5db6af339a /app-misc/tmux-mem-cpu-load
parent15de43225e72dafe479fd049aac19a7fe4137fdb (diff)
downloadgentoo-40b29f743cec30dd03b61d1749fb27ff9dbbd623.tar.gz
gentoo-40b29f743cec30dd03b61d1749fb27ff9dbbd623.tar.bz2
gentoo-40b29f743cec30dd03b61d1749fb27ff9dbbd623.zip
app-misc/tmux-mem-cpu-load: drop 3.7.0
Signed-off-by: Petr Vaněk <arkamar@gentoo.org>
Diffstat (limited to 'app-misc/tmux-mem-cpu-load')
-rw-r--r--app-misc/tmux-mem-cpu-load/Manifest1
-rw-r--r--app-misc/tmux-mem-cpu-load/files/tmux-mem-cpu-load-3.7.0-gcc13.patch24
-rw-r--r--app-misc/tmux-mem-cpu-load/tmux-mem-cpu-load-3.7.0.ebuild26
3 files changed, 0 insertions, 51 deletions
diff --git a/app-misc/tmux-mem-cpu-load/Manifest b/app-misc/tmux-mem-cpu-load/Manifest
index f1f394862815..c5dec7c29fd9 100644
--- a/app-misc/tmux-mem-cpu-load/Manifest
+++ b/app-misc/tmux-mem-cpu-load/Manifest
@@ -1,2 +1 @@
-DIST tmux-mem-cpu-load-3.7.0.tar.gz 23374 BLAKE2B 61dfd556b22afd37d7011c2f31e1c1ee2632921c590ac273e92baf18f018d09eaffc628490d8c2bca973fc73dba67f83dfd380792c70f7fac8335cc9c732d7c3 SHA512 0a87d91e2d7ea0b687b0610b913aa782813fc80cc689c6f42fa2e1537715b7b2307edbfabf231fc0e13fe5aeaca1c0ffa4500ce338b37365ba0ac7a8b69e7385
DIST tmux-mem-cpu-load-3.8.1.tar.gz 35253 BLAKE2B 5f67822e828376e94d991cb07fddcddfada20738507741fa8b84628d2a67c00772796e95376aa18e6b3b822975f709bd4b0d55e6db5b7976079992a8a9a66743 SHA512 e02f01df563091ac39c5bb4a07cca096a5ee3c2509561d42547b65e5dcc419ae3f1f306f58245592f06469f420e82435f0570ee2a84693d3897ea67bf2b96656
diff --git a/app-misc/tmux-mem-cpu-load/files/tmux-mem-cpu-load-3.7.0-gcc13.patch b/app-misc/tmux-mem-cpu-load/files/tmux-mem-cpu-load-3.7.0-gcc13.patch
deleted file mode 100644
index 77e905aa8fb9..000000000000
--- a/app-misc/tmux-mem-cpu-load/files/tmux-mem-cpu-load-3.7.0-gcc13.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-https://github.com/thewtex/tmux-mem-cpu-load/pull/95
-
-From 59cca005e4c6d2fe9f90574a99afe78dcb6d8539 Mon Sep 17 00:00:00 2001
-From: Sam James <sam@gentoo.org>
-Date: Tue, 18 Apr 2023 04:25:00 +0100
-Subject: [PATCH] Fix build with GCC 13
-
-GCC 13 (as usual for new compiler releases) shuffles around some internal includes so some
-are no longer transitively included.
-
-See https://gnu.org/software/gcc/gcc-13/porting_to.html.
-
-Bug: https://bugs.gentoo.org/895304
---- a/common/cpu.h
-+++ b/common/cpu.h
-@@ -19,6 +19,7 @@
- #ifndef CPU_H_
- #define CPU_H_
-
-+#include <cstdint>
- #include <sys/types.h>
-
- #if defined(__APPLE__) && defined(__MACH__)
-
diff --git a/app-misc/tmux-mem-cpu-load/tmux-mem-cpu-load-3.7.0.ebuild b/app-misc/tmux-mem-cpu-load/tmux-mem-cpu-load-3.7.0.ebuild
deleted file mode 100644
index 03f1b370a747..000000000000
--- a/app-misc/tmux-mem-cpu-load/tmux-mem-cpu-load-3.7.0.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-if [[ ${PV} == *9999* ]]; then
- EGIT_REPO_URI="https://github.com/thewtex/tmux-mem-cpu-load.git"
- inherit git-r3
-else
- SRC_URI="https://github.com/thewtex/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="amd64 arm64 ppc64 ~riscv x86"
-fi
-
-DESCRIPTION="CPU, RAM memory, and load monitor for use with tmux"
-HOMEPAGE="https://github.com/thewtex/tmux-mem-cpu-load"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-
-DOCS=( AUTHORS README.rst )
-
-PATCHES=(
- "${FILESDIR}"/${PN}-3.7.0-gcc13.patch
-)