Package Details: litecoin-qt 0.21.4-1

Git Clone URL: https://aur.archlinux.org/litecoin-qt.git (read-only, click to copy)
Package Base: litecoin-qt
Description: Peer-to-peer network based digital currency (Qt)
Upstream URL: https://www.litecoin.org/
Licenses: MIT
Conflicts: litecoin
Provides: litecoin
Submitter: Flink
Maintainer: a821
Last Packager: a821
Votes: 86
Popularity: 0.73
First Submitted: 2013-03-22 17:37 (UTC)
Last Updated: 2024-10-30 08:28 (UTC)

Latest Comments

1 2 3 4 5 6 .. 8 Next › Last »

epicycle6 commented on 2024-09-14 12:32 (UTC)

I get the following error and cannot build. Is this a bug?

wallet/bdb.cpp: In member function 'virtual bool BerkeleyDatabase::Backup(const std::string&) const':
wallet/bdb.cpp:630:58: error: 'fs::copy_option' has not been declared
  630 |                     fs::copy_file(pathSrc, pathDest, fs::copy_option::overwrite_if_exists);
      |                                                          ^~~~~~~~~~~

mrxx commented on 2024-05-29 23:28 (UTC)

Disowning package, feel free to adopt it.

<deleted-account> commented on 2024-03-14 18:50 (UTC)

The following error message appears:

configure: error: libdb_cxx missing, Litecoin Core requires this library for wallet functionality (--disable-wallet to disable wallet functionality)

Is this a broken dependency?

chappjc commented on 2023-06-12 16:56 (UTC) (edited on 2023-06-12 17:01 (UTC) by chappjc)

The following patch is currently needed with GCC 13:

diff --git a/src/support/lockedpool.cpp b/src/support/lockedpool.cpp
index 26de780f2..9e6a68d42 100644
--- a/src/support/lockedpool.cpp
+++ b/src/support/lockedpool.cpp
@@ -21,6 +21,7 @@
 #include <unistd.h> // for sysconf
 #endif

+#include <stdexcept>
 #include <algorithm>
 #ifdef ARENA_DEBUG
 #include <iomanip>
diff --git a/src/util/bip32.h b/src/util/bip32.h
index 347e83db9..6ef051c48 100644
--- a/src/util/bip32.h
+++ b/src/util/bip32.h
@@ -6,6 +6,7 @@
 #define BITCOIN_UTIL_BIP32_H

 #include <attributes.h>
+#include <cstdint>
 #include <string>
 #include <vector>

diff --git a/src/util/string.h b/src/util/string.h
index a0c87bd00..f73c1bb9f 100644
--- a/src/util/string.h
+++ b/src/util/string.h
@@ -9,7 +9,9 @@

 #include <algorithm>
 #include <array>
+#include <cstdint>
 #include <cstring>
+#include <iterator>
 #include <locale>
 #include <sstream>
 #include <string>

div72 commented on 2023-03-24 14:08 (UTC)

Needs db5.3 dependency and BDB_LIBS="-ldb_cxx-5.3" BDB_CFLAGS="-I/usr/include/db5.3" for the configure. Crashes when creating a new wallet otherwise.

<deleted-account> commented on 2022-11-02 03:49 (UTC)

The build fails with the following error. How can I build?

checking whether the Boost::Thread library is available... ./configure:break:33533: not in while, until, select, or repeat loop

rpodgorny commented on 2022-10-09 17:09 (UTC)

builds fine without chroot. patches to make it chroot-compatible welcome.

RubenKelevra commented on 2022-10-09 15:35 (UTC)

Does not build in a chroot:

==> Retrieving sources...
  -> Found litecoin-0.21.2.1.tar.gz
  -> Found boost1770.patch
  -> Found litecoin-qt.desktop
  -> Found litecoin128.png
==> WARNING: Skipping all source file integrity checks.
==> Extracting sources...
  -> Extracting litecoin-0.21.2.1.tar.gz with bsdtar
==> Sources are ready.
litecoin-qt-0.21.2.1-1: parsing pkg list...
==> Making package: litecoin-qt 0.21.2.1-1 (Sun 09 Oct 2022 05:34:12 PM CEST)
==> Retrieving sources...
  -> Found litecoin-0.21.2.1.tar.gz
  -> Found boost1770.patch
  -> Found litecoin-qt.desktop
  -> Found litecoin128.png
==> Validating source files with sha256sums...
    litecoin-0.21.2.1.tar.gz ... Passed
    boost1770.patch ... Passed
    litecoin-qt.desktop ... Passed
    litecoin128.png ... Passed
==> Making package: litecoin-qt 0.21.2.1-1 (Sun Oct  9 17:34:14 2022)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> WARNING: Using existing $srcdir/ tree
==> Starting build()...
/startdir/PKGBUILD: line 26: cd: /build/litecoin-qt/src/litecoin-0.21.2.1: No such file or directory
==> ERROR: A failure occurred in build().
    Aborting...

czk commented on 2022-06-07 15:41 (UTC)

@rpodgorny

(...)
checking for ZMQ... yes
checking for main in -lfmt... no
configure: error: libfmt missing
==> ERROR: A failure occurred in build().
    Aborting...

Installing fmt fixes this. Can you add it to depends?