commit: 431630a5197bfa0b9cdc5613820748e2cbde96b6 Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at> AuthorDate: Fri Jan 10 15:59:38 2025 +0000 Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org> CommitDate: Fri Jan 10 21:41:39 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=431630a5
net-news/newsboat: remove unused patch(es) Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/40086 Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org> .../newsboat/files/newsboat-2.30.1-gcc-13.patch | 50 ---------------------- 1 file changed, 50 deletions(-) diff --git a/net-news/newsboat/files/newsboat-2.30.1-gcc-13.patch b/net-news/newsboat/files/newsboat-2.30.1-gcc-13.patch deleted file mode 100644 index 82092f29c037..000000000000 --- a/net-news/newsboat/files/newsboat-2.30.1-gcc-13.patch +++ /dev/null @@ -1,50 +0,0 @@ -https://github.com/newsboat/newsboat/commit/ca1fe3c9fcea89fb9cc0a5ea8740732ae480c6bd -https://github.com/newsboat/newsboat/commit/7ecea2591df830baea41c7b46b3c5d8a2cbd985e - -From ca1fe3c9fcea89fb9cc0a5ea8740732ae480c6bd Mon Sep 17 00:00:00 2001 -From: Sergei Trofimovich <[email protected]> -Date: Sun, 8 Jan 2023 09:31:36 +0000 -Subject: [PATCH] include/listwidgetbackend.h: add missing <cstdint> include - -Upcoming `gcc-13` made `<string>` leaner and does not include `<cstdint>` -implicitly anymore. As a result build fails without the change as: - - include/listwidgetbackend.h:16:37: error: 'std::uint32_t' has not been declared - 16 | void stfl_replace_list(std::uint32_t number_of_lines, std::string stfl); - | ^~~~~~~~ ---- a/include/listwidgetbackend.h -+++ b/include/listwidgetbackend.h -@@ -1,6 +1,7 @@ - #ifndef NEWSBOAT_LISTWIDGETBACKEND_H_ - #define NEWSBOAT_LISTWIDGETBACKEND_H_ - -+#include <cstdint> - #include <string> - - #include "listformatter.h" - -From 7ecea2591df830baea41c7b46b3c5d8a2cbd985e Mon Sep 17 00:00:00 2001 -From: Sergei Trofimovich <[email protected]> -Date: Sun, 8 Jan 2023 09:32:59 +0000 -Subject: [PATCH] include/matcherexception.h: add missing <cstdint> include -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -Upcoming `gcc-13` made `<string>` leaner and does not include `<cstdint>` -implicitly anymore. As a result build fails without the change as: - - include/matcherexception.h:14:14: error: elaborated-type-specifier for a scoped enum must not use the «class» keyword [-Werror] - 14 | enum class Type : std::uint8_t { ATTRIB_UNAVAIL = 0, INVALID_REGEX = 1 }; - | ~~~~ ^~~~~ - | ----- ---- a/include/matcherexception.h -+++ b/include/matcherexception.h -@@ -1,6 +1,7 @@ - #ifndef NEWSBOAT_MATCHEREXCEPTON_H_ - #define NEWSBOAT_MATCHEREXCEPTON_H_ - -+#include <cstdint> - #include <stdexcept> - #include <string> -
