Package Details: bisq 1.9.18-1

Git Clone URL: https://aur.archlinux.org/bisq.git (read-only, click to copy)
Package Base: bisq
Description: Cross-platform desktop application that allows users to trade national currency (dollars, euros, etc) for bitcoin without relying on centralized exchanges
Upstream URL: https://bisq.network
Licenses: AGPL3
Conflicts: bisq-bin, bisq-git
Provides: bisq
Submitter: dmp1ce
Maintainer: dmp1ce (nojo)
Last Packager: nojo
Votes: 67
Popularity: 0.32
First Submitted: 2017-07-05 14:43 (UTC)
Last Updated: 2024-12-21 12:01 (UTC)

Latest Comments

« First ‹ Previous 1 .. 3 4 5 6 7 8 9 10 11 12 13 Next › Last »

dsche-cyber commented on 2020-06-21 21:27 (UTC) (edited on 2020-06-21 21:54 (UTC) by dsche-cyber)

@sylphio thanks for the quick response and the hint. Was searching for it a long time and 10 min after the post I found it, this happens all the time...

Got my full node connected the following way:
1. Custom Node under settings with:
127.0.0.1 (No [] and since port 8333 is set per default no port)
2. restart (you get prompted to do so)
3. Uncheck on tor.
4. restart (you get prompted to do so)

But I got a question: The connected peers shown in bisq are not the same as the ones from bitcoin-cli getpeerinfo. Why is that and is it normal?

sylphio commented on 2020-06-21 20:48 (UTC)

@dsche-cyber The files you are looking for are likely in $HOME/.local/share/Bisq (particularly btc_mainnet). You may want to back it up, since it contains important data that you may not be able to recover otherwise (wallet, keys, etc.).

dsche-cyber commented on 2020-06-21 20:25 (UTC)

How can I fully deinstall this? sudo pacman -R bisq is not enough. I want to reinstall it, and start it as i never touched it. But after pacman -R bisq, new git clone and build I am stuck with the same problems, bisq not getting the connected to the network (after 3/4) "connection problems". I know that there is still data not deleted as it starts in dark mode even though it is not the default (after new install).

sylphio commented on 2020-06-21 14:39 (UTC) (edited on 2020-06-21 14:39 (UTC) by sylphio)

@kwacorn Thanks for the feedback. I hope one of the maintainers will find the time to fix the PKGBUILD.

@jamesjon My post describes modifications of the file PKGBUILD: the lines begun by a + are to be added; the rest is just context to locate the place in the file. I guess you use an AUR helper (probably yay, the default in Manjaro). There should be an option to edit the PKGBUILD, but I am not familiar with yay. Here is the manual process:

  1. Download the PKGBUILD file. You can get it directly on this page (direct link). Alternatively, I think yay -G bisq does exactly that. Do not change the file's name; it has to be named PKGBUILD.

  2. Edit the PKGBUILD file as I describe: find the line git clone [...] and add below the three lines marked by a + (do not write the +).

  3. In the same directory as the PKGBUILD (you may want an empty directory for this), run the command makepkg --syncdeps --install. This will follow the instructions in the PKGBUILD file: install any missing dependency (--syncdeps); download the source files; build the package; install it (--install). The purpose of the lines I propose to add is to download the missing files that caused the error you got; it is simply what the error message suggested to do.

  4. If you get another error, report the error message so that someone can help you.

This 'manual' process, and everything you need to know about it, is described in the ArchWiki page on makepkg (particularly the usage section). The AUR helpers do the same thing, they just automate it for convenience. When you need to fix something, understanding the installation process helps.

jomocu commented on 2020-06-21 13:43 (UTC)

@sylphio Where am I supposed to put that? How do I install it "manually"? Thank you

kwacorn commented on 2020-06-20 20:03 (UTC)

@sylphio I am happy to report that your suggested changes to PKGBUILD have worked and I have a successful build and install of bisq 1.3.5-1, thank you.

sylphio commented on 2020-06-20 16:46 (UTC)

@jamesjon Did you try my suggested fix (see my message just below yours)? If you did and still get this error, please share the full error message until BUILD FAILED (as kwacorn did below) so that people can try to help you.

jomocu commented on 2020-06-20 16:09 (UTC)

It doesn't work, it gives error in manjaro ...

Task :p2p:processResources FAILED

FAILURE: Build failed with an exception.

sylphio commented on 2020-06-19 22:57 (UTC)

@kwacorn this change to the PKGBUILD fixed it for me:

--- a/PKGBUILD
+++ b/PKGBUILD
@@ -20,6 +20,9 @@ provides=("bisq")
 prepare() {
   rm -rf "${srcdir}/${pkgname}-${pkgver}"
   git clone --depth=1 --branch=v${pkgver} https://github.com/bisq-network/bisq.git ${pkgname}-${pkgver}
+  cd ${pkgname}-${pkgver}
+  git lfs install
+  git lfs pull
 }

kwacorn commented on 2020-06-19 11:20 (UTC)

I thought I had better report this error I am getting with the 2020-06-18 10:06 update when running pamac build bisq, here is the latter part of the output:

> Task :p2p:processResources FAILED

FAILURE: Build failed with an exception.

* Where:
Build file '/var/tmp/pamac-build-kw/bisq/src/bisq-1.3.5/build.gradle' line: 280

* What went wrong:
Execution failed for task ':p2p:processResources'.
> p2p data store files have not been synchronized. To fix this, ensure you have Git LFS installed and run `git lfs pull`. See docs/build.md for more information.

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.

* Get more help at https://help.gradle.org

BUILD FAILED in 39s
27 actionable tasks: 14 executed, 13 up-to-date
==> ERROR: A failure occurred in build().
    Aborting...

A few days ago I got the other git lfs error, as already reported by others, but this one is different.