public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Arthur Zamarin" <arthurzam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-p2p/retroshare/files/
Date: Sat,  6 Jul 2024 08:18:00 +0000 (UTC)	[thread overview]
Message-ID: <1720253817.9f2da161ce9cdeefee50565d407493cd9704e8d6.arthurzam@gentoo> (raw)

commit:     9f2da161ce9cdeefee50565d407493cd9704e8d6
Author:     Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Sat Jul  6 07:43:34 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Jul  6 08:16:57 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f2da161

net-p2p/retroshare: remove unused patch(es)

Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 .../retroshare-0.6.6-fix-cxx17-compilation.patch   | 58 ----------------------
 1 file changed, 58 deletions(-)

diff --git a/net-p2p/retroshare/files/retroshare-0.6.6-fix-cxx17-compilation.patch b/net-p2p/retroshare/files/retroshare-0.6.6-fix-cxx17-compilation.patch
deleted file mode 100644
index 73c5e1d18cc8..000000000000
--- a/net-p2p/retroshare/files/retroshare-0.6.6-fix-cxx17-compilation.patch
+++ /dev/null
@@ -1,58 +0,0 @@
-https://github.com/RetroShare/RetroShare/commit/8bed99cc9f3763269b6b1aada45a43c9993d7b80
-From: Gioacchino Mazzurco <gio@eigenlab.org>
-Date: Fri, 6 Aug 2021 12:15:34 +0200
-Subject: [PATCH] Fix compilation with C++17
---- a/libretroshare/src/util/rsdir.cc
-+++ b/libretroshare/src/util/rsdir.cc
-@@ -64,6 +64,26 @@
-  * #define RSDIR_DEBUG 1
-  ****/
- 
-+#if __cplusplus < 201703L
-+bool std::filesystem::create_directories(const std::string& path)
-+{
-+	for( std::string::size_type lastIndex = 0; lastIndex < std::string::npos;
-+	     lastIndex = path.find('/', lastIndex) )
-+	{
-+		std::string&& curDir = path.substr(0, ++lastIndex);
-+		if(!RsDirUtil::checkCreateDirectory(curDir))
-+		{
-+			RsErr() << __PRETTY_FUNCTION__ << " failure creating: " << curDir
-+			        << " of: " << path << std::endl;
-+			return false;
-+		}
-+	}
-+	return true;
-+}
-+#else
-+#	include <filesystem>
-+#endif // __cplusplus < 201703L
-+
- std::string 	RsDirUtil::getTopDir(const std::string& dir)
- {
- 	std::string top;
-@@ -528,24 +548,6 @@ bool RsDirUtil::checkCreateDirectory(const std::string& dir)
- 	return true;
- }
- 
--#if __cplusplus < 201703L
--bool std::filesystem::create_directories(const std::string& path)
--{
--	for( std::string::size_type lastIndex = 0; lastIndex < std::string::npos;
--	     lastIndex = path.find('/', lastIndex) )
--	{
--		std::string&& curDir = path.substr(0, ++lastIndex);
--		if(!RsDirUtil::checkCreateDirectory(curDir))
--		{
--			RsErr() << __PRETTY_FUNCTION__ << " failure creating: " << curDir
--			        << " of: " << path << std::endl;
--			return false;
--		}
--	}
--	return true;
--}
--#endif // __cplusplus < 201703L
--
- std::string RsDirUtil::removeSymLinks(const std::string& path)
- {
- #if defined(WINDOWS_SYS) || defined(__APPLE__) || defined(__ANDROID__)


             reply	other threads:[~2024-07-06  8:18 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-07-06  8:18 Arthur Zamarin [this message]
  -- strict thread matches above, loose matches on Subject: below --
2021-08-07  5:51 [gentoo-commits] repo/gentoo:master commit in: net-p2p/retroshare/files/ Ionen Wolkens

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1720253817.9f2da161ce9cdeefee50565d407493cd9704e8d6.arthurzam@gentoo \
    --to=arthurzam@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox