diff options
author | V3n3RiX <venerix@koprulu.sector> | 2022-11-25 01:11:37 +0000 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2022-11-25 01:11:37 +0000 |
commit | b1b0997aac1e7f68389ed3e0f95d3ea9d92277e2 (patch) | |
tree | 11a204a4a8687d1677d7b04ddda4a236c755528e /net-wireless/gr-osmosdr | |
parent | 73f18fd49d6fabbb1dc8721e38adaa18d55b8c95 (diff) |
gentoo auto-resync : 25:11:2022 - 01:11:36
Diffstat (limited to 'net-wireless/gr-osmosdr')
-rw-r--r-- | net-wireless/gr-osmosdr/Manifest | 1 | ||||
-rw-r--r-- | net-wireless/gr-osmosdr/files/gr-osmosdr-0.2.3-use_xtrx_open_string.patch | 23 |
2 files changed, 0 insertions, 24 deletions
diff --git a/net-wireless/gr-osmosdr/Manifest b/net-wireless/gr-osmosdr/Manifest index b40f32e5d3b1..205d1a7b65de 100644 --- a/net-wireless/gr-osmosdr/Manifest +++ b/net-wireless/gr-osmosdr/Manifest @@ -1,4 +1,3 @@ -AUX gr-osmosdr-0.2.3-use_xtrx_open_string.patch 931 BLAKE2B 21df3d2ef163f7216ad8b34c86877b65b4909523bd80bf1d1a7ab86fa1676f777a49a670a456a2b4babdcbbee7063e6fd8b6a24a025b92d43632d580fa8ab329 SHA512 0d763dbbd510f273fbe937bf51a07cda2f2d9e53dcfdb64d210f3c85c51e6995223cf13d81d94b90dc7dc0fddde8fc8ea6f30d23b652edf8945fee08c494b1f0 AUX gr-osmosdr-0.2.3_p20210128-fix-enable-python.patch 342 BLAKE2B fe7b93a8679eb11959560e41c8c9675d94f27578c98926327329139cab87cdab1d8556605809347a894a6cf66b44f9d585ace9c3edf51d938558cab0a7da67ef SHA512 dab43caa06b4073cc6832076b58a938f6ad0ea023870279c2f49588d88d2b208465d4788f6d0ed9d02a11a6678e21974a982a23565fcecbf72d841ea6b1a18a6 DIST gr-osmosdr-0.2.3_p20210128.tar.gz 257938 BLAKE2B 1bdb3b57ec6a2f942769770c34d41b4e3db5b62f8c337d724b0099f9a2fe5bdb7231bc0727dfe4bd01cd62918b4847ea2f8780208c0960bced5853c716ec6f02 SHA512 4dcb6b2c10eeb2252111ba691be179fe5b6dc9598fa7e6129a3b214ee74d43ca2d67ab5eafa73cea2abb25729c24be0592585d149e13c7285f2ce330e52a6470 EBUILD gr-osmosdr-0.2.3_p20210128-r1.ebuild 2395 BLAKE2B 03543ef1fafc69ce763c19f0d9af45c736ceff8c75fe0222d6262f97361aad9bc59f2926f3ea1bfe6c44de570bcc0089d84210a7083add74b8184d2085bd3ef9 SHA512 7bb41acc73a8cb321fe5c395832ec1ac0a109c0944cec5d9374846732e7bda57fc304821568126ae46b6c8614e44e7fc27befb42962ea621814ae9d9de1accfb 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; |