1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-09 06:51:44 +00:00

net-p2p/litecoin: Update to 0.21.4 and unbreak with recent Boost

Signed-off-by: Christopher Hall <hsw@bitmark.com>

Differential Revision: https://reviews.freebsd.org/D47700

PR:		282875
This commit is contained in:
Christopher Hall 2024-11-27 15:19:45 +03:00 committed by Gleb Popov
parent 695b5b4a31
commit 880b364108
4 changed files with 36 additions and 7 deletions

View File

@ -1,7 +1,7 @@
PORTNAME= litecoin
DISTVERSIONPREFIX= v
DISTVERSION= 0.21.3
PORTREVISION= 5
DISTVERSION= 0.21.4
PORTREVISION= 0
CATEGORIES= net-p2p finance
MAINTAINER= hsw@bitmark.com
@ -10,8 +10,6 @@ WWW= https://www.litecoin.org/
LICENSE= MIT
BROKEN= fails to build with boost-1.85+
LIB_DEPENDS= libboost_date_time.so:devel/boost-libs \
libfmt.so:devel/libfmt \
libevent.so:devel/libevent

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1711952975
SHA256 (litecoin-project-litecoin-v0.21.3_GH0.tar.gz) = e08642fb1d4ca3891981e6fd39f8c9fbc995d0db8b6b1c3f8f8671de8e120f9a
SIZE (litecoin-project-litecoin-v0.21.3_GH0.tar.gz) = 6531067
TIMESTAMP = 1731380372
SHA256 (litecoin-project-litecoin-v0.21.4_GH0.tar.gz) = ba0922213f69c1b1a1d6c3441c5ea3696b538437533555ab74268f075f0de5d3
SIZE (litecoin-project-litecoin-v0.21.4_GH0.tar.gz) = 6533051

View File

@ -0,0 +1,11 @@
--- src/wallet/bdb.cpp 2024-03-28 17:05:26.000000000 +0000
+++ src/wallet/bdb.cpp 2024-11-20 13:23:51.628575000 +0000
@@ -627,7 +627,7 @@
return false;
}
- fs::copy_file(pathSrc, pathDest, fs::copy_option::overwrite_if_exists);
+ fs::copy_file(pathSrc, pathDest, fs::copy_options::overwrite_existing);
LogPrintf("copied %s to %s\n", strFile, pathDest.string());
return true;
} catch (const fs::filesystem_error& e) {

View File

@ -0,0 +1,20 @@
--- src/wallet/walletutil.cpp 2024-03-28 17:05:26.000000000 +0000
+++ src/wallet/walletutil.cpp 2024-11-20 13:28:06.157704000 +0000
@@ -58,7 +58,7 @@
(ExistsBerkeleyDatabase(it->path()) || ExistsSQLiteDatabase(it->path()))) {
// Found a directory which contains wallet.dat btree file, add it as a wallet.
paths.emplace_back(path);
- } else if (it.level() == 0 && it->symlink_status().type() == fs::regular_file && ExistsBerkeleyDatabase(it->path())) {
+ } else if (it.depth() == 0 && it->symlink_status().type() == fs::regular_file && ExistsBerkeleyDatabase(it->path())) {
if (it->path().filename() == "wallet.dat") {
// Found top-level wallet.dat btree file, add top level directory ""
// as a wallet.
@@ -73,7 +73,7 @@
}
} catch (const std::exception& e) {
LogPrintf("%s: Error scanning %s: %s\n", __func__, it->path().string(), e.what());
- it.no_push();
+ it.disable_recursion_pending();
}
}