summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2022-11-24 17:58:27 +0100
committerConrad Kostecki <conikost@gentoo.org>2022-11-24 19:14:36 +0100
commit08b6ad9a9d09604790884bd97e99e9dcc98c96a2 (patch)
tree82e2bc9d2b9c5f51885b590502445ae8c864b45d /net-wireless/gr-osmosdr
parentsys-libs/tevent: remove unused patch(es) (diff)
downloadgentoo-08b6ad9a9d09604790884bd97e99e9dcc98c96a2.tar.gz
gentoo-08b6ad9a9d09604790884bd97e99e9dcc98c96a2.tar.bz2
gentoo-08b6ad9a9d09604790884bd97e99e9dcc98c96a2.zip
net-wireless/gr-osmosdr: remove unused patch
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/28416 Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'net-wireless/gr-osmosdr')
-rw-r--r--net-wireless/gr-osmosdr/files/gr-osmosdr-0.2.3-use_xtrx_open_string.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/net-wireless/gr-osmosdr/files/gr-osmosdr-0.2.3-use_xtrx_open_string.patch b/net-wireless/gr-osmosdr/files/gr-osmosdr-0.2.3-use_xtrx_open_string.patch
deleted file mode 100644
index 7699c81fed32..000000000000
--- a/net-wireless/gr-osmosdr/files/gr-osmosdr-0.2.3-use_xtrx_open_string.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-From ecca19615c588f771a131432f7161156efc274c2 Mon Sep 17 00:00:00 2001
-From: lain <code@hacktheinter.net>
-Date: Tue, 30 Jul 2019 15:59:38 -0700
-Subject: [PATCH] Quick patch to use xtrx_open_string() instead of the removed
- xtrx_open_list().
-
----
- lib/xtrx/xtrx_obj.cc | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/lib/xtrx/xtrx_obj.cc b/lib/xtrx/xtrx_obj.cc
-index 1d58de5..5c73259 100644
---- a/lib/xtrx/xtrx_obj.cc
-+++ b/lib/xtrx/xtrx_obj.cc
-@@ -68,7 +68,7 @@ xtrx_obj::xtrx_obj(const std::string &path, unsigned loglevel, bool lmsreset)
- unsigned xtrxflag = (loglevel & XTRX_O_LOGLVL_MASK) | ((lmsreset) ? XTRX_O_RESET : 0);
- std::cerr << "xtrx_obj::xtrx_obj = " << xtrxflag << std::endl;
-
-- int res = xtrx_open_list(path.c_str(), NULL, &_obj);
-+ int res = xtrx_open_string(path.c_str(), &_obj);
- if (res < 0) {
- std::stringstream message;
- message << "Couldn't open " ": Error: " << -res;