Package Details: ledger-live-bin 2.79.1-1

Git Clone URL: https://aur.archlinux.org/ledger-live-bin.git (read-only, click to copy)
Package Base: ledger-live-bin
Description: Maintain your Ledger devices
Upstream URL: https://www.ledger.com/ledger-live
Keywords: bitcoin cryptocurrency wallet
Licenses: MIT
Conflicts: ledger-live
Provides: ledger-live
Submitter: DescartesHorse
Maintainer: phnx47
Last Packager: phnx47
Votes: 51
Popularity: 1.26
First Submitted: 2018-07-10 01:52 (UTC)
Last Updated: 2024-04-25 08:21 (UTC)

Latest Comments

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

phnx47 commented on 2021-02-08 19:00 (UTC)

@agkbill When you try run AppImage without aur, is it work?

agkbill commented on 2021-02-08 18:29 (UTC) (edited on 2021-02-08 18:31 (UTC) by agkbill)

No ledger-live-bin-2.20.0-2 does not work. I install, and the from the promt run "ledger-live-desktop".

> ledger-live-desktop                                                                                                                   
Ledger Live 2.20.0
(node:5738) UnhandledPromiseRejectionWarning: SyntaxError: Unexpected end of JSON input
    at JSON.parse (<anonymous>)
    at load (/opt/ledger-live-desktop/resources/app.asar/.webpack/main.bundle.js:3688:14)
    at async ensureNSLoaded (/opt/ledger-live-desktop/resources/app.asar/.webpack/main.bundle.js:3716:5)
    at async Object.getKey (/opt/ledger-live-desktop/resources/app.asar/.webpack/main.bundle.js:3791:3)
    at async App.<anonymous> (/opt/ledger-live-desktop/resources/app.asar/.webpack/main.bundle.js:4071:20)
(node:5738) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async f a promise which was not handled with .catch(). To terminate the node process on unhandled promise rejection, use the CLI flag `--unhand/api/cli.html#cli_unhandled_rejections_mode). (rejection id: 1)
(node:5738) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not haa non-zero exit code.

phnx47 commented on 2021-02-08 06:31 (UTC)

@arpspoof @agkbill I can't reproduce error...

arpspoof commented on 2021-02-08 02:09 (UTC)

@phnx47: Does latest 2.20.0-2 AppImage work for you? I've had no luck trying to install in fresh.

In research I've run into this update being problematic across multiple distros and requiring a downgrade to 2.19 to get working again.

agkbill commented on 2021-02-06 13:44 (UTC) (edited on 2021-02-08 18:30 (UTC) by agkbill)

Updated to 2.20.0-2 today on my Archlinux, but get following error.

Ledger Live 2.20.0
(node:13489) UnhandledPromiseRejectionWarning: SyntaxError: Unexpected end of JSON input
    at JSON.parse (<anonymous>)
    at load (/opt/ledger-live-desktop/resources/app.asar/.webpack/main.bundle.js:3688:14)
    at async ensureNSLoaded (/opt/ledger-live-desktop/resources/app.asar/.webpack/main.bundle.js:3716:5)
    at async Object.getKey (/opt/ledger-live-desktop/resources/app.asar/.webpack/main.bundle.js:3791:3)
    at async App.<anonymous> (/opt/ledger-live-desktop/resources/app.asar/.webpack/main.bundle.js:4071:20)

phnx47 commented on 2020-12-22 19:19 (UTC)

@dlq84 fixed!

dlq84 commented on 2020-12-22 19:05 (UTC) (edited on 2020-12-22 19:05 (UTC) by dlq84)

You've made a mistake in the PKGBUILD file

"pkgrel=1u"

==> ERROR: pkgrel must be of the form 'integer[.integer]', not 1u.

phnx47 commented on 2020-10-09 07:43 (UTC) (edited on 2020-12-22 19:20 (UTC) by phnx47)

@s83 I read more about pkgver(). It is good only for VCS package. In current package I use AppImage.

phnx47 commented on 2020-09-30 19:18 (UTC)

@s83 Hi! I not used pkgver() before. I tried, but it doesn't work properly in my laptop. Feel free create Merge Request: https://gitlab.com/phnx47-aur/ledger-live-bin and I will test it.

s83 commented on 2020-09-30 13:30 (UTC) (edited on 2020-09-30 13:31 (UTC) by s83)

Hi thank you for maintaining these packages. Can you implement please a dynamic versioning from upstream using pkgver() function. That way you can stay synced to the latest version. Best, Samuel

pkgver() {
  cd "${_gitname}"
  ( set -o pipefail
  git describe --long --tags 2>/dev/null | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g' ||
  printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
  )
}