Package Details: dogecoin-qt 1.14.6-4

Git Clone URL: https://aur.archlinux.org/dogecoin-qt.git (read-only, click to copy)
Package Base: dogecoin-qt
Description: Cryptocurrency
Upstream URL: http://dogecoin.com/
Licenses: MIT
Provides: dogecoin-cli, dogecoin-daemon, dogecoin-tx
Submitter: Thermi
Maintainer: gee (bReally)
Last Packager: gee
Votes: 50
Popularity: 0.000070
First Submitted: 2014-02-01 16:57 (UTC)
Last Updated: 2022-12-17 00:12 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 8 .. 10 Next › Last »

HolyKrapp commented on 2021-05-23 15:22 (UTC) (edited on 2021-05-23 15:26 (UTC) by HolyKrapp)

protobuf>=3.16 breaks dogecoin-qt. Need to revert to previous version (3.15.8). To do so:

sudo pacman -U /var/cache/pacman/pkg/protobuf-3.15.8-1-x86_64.pkg.tar.zst

If you don't have the cached package, can download from the archive:

sudo wget https://archive.archlinux.org/packages/p/protobuf/protobuf-3.15.8-1-x86_64.pkg.tar.zst -O /var/cache/pacman/pkg/protobuf-3.15.8-1-x86_64.pkg.tar.zst

and then run the pacman command on top again.

mike2208 commented on 2021-04-17 19:29 (UTC)

@varun1 Hi, There's a config file at ~/.config/Dogecoin/Dogecoin-Qt.conf. Under the [General] tab, there's an option called

strDataDir=<Data Directory>

Just to be safe, you may have to add a file called dogecoin.conf in the new <Data Directory>, with the option

datadir=<Data Directory>

varungarg commented on 2021-04-17 17:49 (UTC)

hello,

Firstly,this is great! does anyone know from where it us picking config from? I wanted to change my data directory (.dogecoin) but can't find the config.

gee commented on 2021-03-13 19:07 (UTC)

I'm honored to say that upstream has accepted my patches and so now we're back to a PKGBUILD with no additional patches to build this!

gee commented on 2021-01-03 21:45 (UTC)

Done!

mike2208 commented on 2021-01-03 13:02 (UTC)

Thanks!

Maybe add

provides=( dogecoin-daemon dogecoin-tx dogecoin-cli )

as dogecoin-qt builds and installs the executables for the above packages?

gee commented on 2020-12-22 13:29 (UTC)

Hello,

I've just updated the PKGBUILD to build on modern Arch. I haven't messed with crypto coins PKGBUILDs in a while so I hope it's all correct.

Please notify if I forgot something.

gizlu commented on 2020-08-19 13:17 (UTC) (edited on 2020-11-19 22:37 (UTC) by gizlu)

Third (and thankfully last) build problem: https://github.com/dogecoin/dogecoin/issues/1642

dirty fix:

diff --git a/PKGBUILD b/PKGBUILD
index 461c3c6..f5238c2 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -22,6 +22,13 @@ install=dogecoin.install
 sha256sums=('416581d0af2df05ededb400b9434765eeaeb1396c9f3ef80a7b59a88c74a90cc'
             '04d41773462ad6609658e291d22b15cd8d58b8eb5e4391a80cd1dae75e7df0e6')

+prepare() {
+    sed -i -e "s/#include <signal.h>/#include <signal.h>\n#include <deque>/g" \
+        ${srcdir}/dogecoin-$pkgver/src/httpserver.cpp
+    sed -i -e "s/#include <QQueue>/#include <QQueue>\n#include <QPainterPath>/g" \
+        ${srcdir}/dogecoin-$pkgver/src/qt/trafficgraphwidget.h
+}
+
 build() {
    cd "${srcdir}/dogecoin-$pkgver/"

Edit: Replace dead pastebin link

gizlu commented on 2020-08-19 01:11 (UTC) (edited on 2020-08-19 02:42 (UTC) by gizlu)

The lack of dogecoin-qt exutable probably wasn't my fault

Warning from configure step (PKGBUILD untouched):

configure: WARNING: LRELEASE not found; dogecoin-qt frontend will not be built
checking whether to build Dogecoin Core GUI... no (Qt5)

Fixed after installing qt5-tools - please update makedepends

gizlu commented on 2020-08-18 23:21 (UTC) (edited on 2020-11-19 22:33 (UTC) by gizlu)

Temporary dirty fix of deque error:

diff --git a/PKGBUILD b/PKGBUILD
index 461c3c6..e4204f1 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -22,6 +22,10 @@ install=dogecoin.install
 sha256sums=('416581d0af2df05ededb400b9434765eeaeb1396c9f3ef80a7b59a88c74a90cc'
             '04d41773462ad6609658e291d22b15cd8d58b8eb5e4391a80cd1dae75e7df0e6')

+prepare() {
+    sed -i -e "s/#include <signal.h>/#include <signal.h>\n#include <deque>/g" ${srcdir}/dogecoin-$pkgver/src/httpserver.cpp
+}
+
 build() {
    cd "${srcdir}/dogecoin-$pkgver/"

Edit: Builds succesfully but there is no degecoin-qt exutable xD. I would blame my shitty fix