summaryrefslogtreecommitdiff
path: root/net-p2p/litecoin/files (follow)
Commit message (Collapse)AuthorAgeFilesLines
* net-p2p/litecoin: update to 0.21.2Christopher Hall2022-05-241-0/+15
| | | | | | | | Summary: Update litecoin and associated ports to 0.21.2 Reviewed by: diizzy, arrowd Differential Revision: https://reviews.freebsd.org/D35210
* all: Remove all other $FreeBSD keywords.Mathieu Arnold2021-04-061-1/+0
|
* - Update to 0.18.1Li-Wen Hsu2020-06-151-1/+1
| | | | | | | | Submitted by: Christopher Hall <hsw@bitmark.com> (maintainer) Differential Revision: https://reviews.freebsd.org/D25276 Notes: svn path=/head/; revision=538890
* net-p2p/litecoin: prepare for Qt5-5.15Tobias C. Berner2020-05-301-0/+10
| | | | Notes: svn path=/head/; revision=537071
* net-p2p/litecoin: fix build on GCC architecturesPiotr Kubaj2019-12-201-0/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Recent upgrade of some dependency causes GCC to fail to build this port: httpserver.cpp:74:10: error: 'deque' in namespace 'std' does not name a template type 74 | std::deque<std::unique_ptr<WorkItem>> queue; | ^~~~~ httpserver.cpp:33:1: note: 'std::deque' is defined in header '<deque>'; did you forget to '#include <deque>'? 32 | #include <support/events.h> +++ |+#include <deque> 33 | httpserver.cpp: In member function 'bool WorkQueue<WorkItem>::Enqueue(WorkItem*)': httpserver.cpp:92:13: error: 'queue' was not declared in this scope; did you mean 'Enqueue'? 92 | if (queue.size() >= maxDepth) { | ^~~~~ | Enqueue httpserver.cpp:95:9: error: 'queue' was not declared in this scope; did you mean 'Enqueue'? 95 | queue.emplace_back(std::unique_ptr<WorkItem>(item)); | ^~~~~ | Enqueue httpserver.cpp: In member function 'void WorkQueue<WorkItem>::Run()': httpserver.cpp:106:35: error: 'queue' was not declared in this scope; did you mean 'Enqueue'? 106 | while (running && queue.empty()) | ^~~~~ | Enqueue httpserver.cpp:110:31: error: 'queue' was not declared in this scope; did you mean 'Enqueue'? 110 | i = std::move(queue.front()); | ^~~~~ | Enqueue Include deque in httpserver.c to fix it. PR: 242722 Approved by: hsw@bitmark.com (maintainer) Notes: svn path=/head/; revision=520502
* net-p2p/litecoin: fix build on big-endian architecturesPiotr Kubaj2019-09-211-0/+11
| | | | | | | | | | | | | | | | | | | | Include sys/endian.h in src/crypto/scrypt.cpp, big-endian architectures need it: crypto/scrypt.cpp:157:3: error: 'be32enc' was not declared in this scope 157 | be32enc(ivec, (uint32_t)(i + 1)); | ^~~~~~~ crypto/scrypt.cpp: In function 'void scrypt_1024_1_1_256_sp_generic(const char*, char*, char*)': crypto/scrypt.cpp:269:10: error: 'le32dec' was not declared in this scope 269 | X[k] = le32dec(&B[4 * k]); | ^~~~~~~ crypto/scrypt.cpp:285:3: error: 'le32enc' was not declared in this scope 285 | le32enc(&B[4 * k], X[k]); | ^~~~~~~ PR: 240695 Approved by: hsw@bitmark.com (maintainer), linimon (mentor) Notes: svn path=/head/; revision=512525
* Update to 0.17.1 release and add the option (default enabled) to useAlex Dupre2019-08-273-44/+157
| | | | | | | | | | | a newer BDB version (sync with bitcoin port). PR: 240058 Submitted by: ale Approved by: maintainer Notes: svn path=/head/; revision=510014
* Remove compatibility code for FreeBSD < 11.2 from all ports.Rene Ladan2018-11-022-59/+0
| | | | | | | | | | Simplify some ports where DragonFlyBSD no longer needs to be special-cased. Submitted by: rene Reviewed by: bapt, jbeich Differential Revision: https://reviews.freebsd.org/D17724 Notes: svn path=/head/; revision=483807
* net-p2p/litecoin: update to 0.15.1Steve Wills2018-05-232-9/+13
| | | | Notes: svn path=/head/; revision=470710
* net-p2p/litecoin: update to 0.14.2Steve Wills2017-09-171-0/+62
| | | | | | | | | | While here, add rc script for litecoin-daemon PR: 222343 Submitted by: Christopher Hall <hsw@bitmark.com> (with changes) Notes: svn path=/head/; revision=449977
* net-p2p/litecoin: Update to 0.10.2.2Steve Wills2015-08-055-49/+19
| | | | | | | | | | While here, clean up and add a litecoin-utils port PR: 201154 Submitted by: Andriy Voskoboinyk <s3erios@gmail.com> Notes: svn path=/head/; revision=393586
* - Update to 0.8.6.2Steve Wills2014-02-105-58/+68
| | | | | | | | - Improve USE_QT4 - Fix build after boost update Notes: svn path=/head/; revision=343576
* - Support stage dirSteve Wills2014-01-171-4/+4
| | | | | | | - Install icon and desktop file Notes: svn path=/head/; revision=340012
* - Update to 0.8.6.1Steve Wills2013-12-172-22/+47
| | | | Notes: svn path=/head/; revision=336721
* - Update to 0.8.5.1Steve Wills2013-09-241-0/+22
| | | | | | | - Fix build on 10.0-ALPHA2 Notes: svn path=/head/; revision=328086
* - Fix build when GUI is disabledSteve Wills2013-08-241-3/+9
| | | | | | | | Reported by: "Sam Fourman Jr." <sfourman@gmail.com> Obtained from: https://github.com/bitcoin/bitcoin/issues/2521#issuecomment-17364844 Notes: svn path=/head/; revision=325284
* - Update to 0.8.3.7Steve Wills2013-08-102-12/+11
| | | | Notes: svn path=/head/; revision=324464
* - Fix patch mistake, prevent 100% CPU usageSteve Wills2013-07-231-2/+2
| | | | Notes: svn path=/head/; revision=323507
* - Update to 0.6.9.2Steve Wills2013-07-211-12/+11
| | | | Notes: svn path=/head/; revision=323409
* Litecoin is a peer-to-peer Internet currency that enables instant payments toSteve Wills2013-05-302-0/+35
anyone in the world. It is based on the Bitcoin protocol but differs from Bitcoin in that it can be efficiently mined with consumer-grade hardware. Litecoin provides faster transaction confirmations (2.5 minutes on average) and uses memory-hard, scrypt-based mining proof-of-work algorithm to target the regular computers and GPUs most people already have. The Litecoin network is scheduled to produce 84 million currency units. One of the aims of Litecoin was to provide a mining algorithm that could run at the same time, on the same hardware used to mine bitcoins. With the rise of specialized ASICs for Bitcoin, Litecoin continues to satisfy these goals. It is unlikely for ASIC mining to be developed for Litecoin until the currency is widely used. WWW: http://www.litecoin.org/ Notes: svn path=/head/; revision=319403