Package Details: deezer 7.0.80-2

Git Clone URL: https://aur.archlinux.org/deezer.git (read-only, click to copy)
Package Base: deezer
Description: A proprietary music streaming service
Upstream URL: https://www.deezer.com/
Keywords: deezer desktop streaming
Licenses: custom:"Copyright (c) 2006-2025 Deezer S.A."
Provides: deezer
Submitter: IlyaGulya
Maintainer: SibrenVasse
Last Packager: SibrenVasse
Votes: 57
Popularity: 0.000293
First Submitted: 2018-12-12 06:54 (UTC)
Last Updated: 2025-05-29 10:12 (UTC)

Latest Comments

« First ‹ Previous 1 .. 19 20 21 22 23 24 25 26 Next › Last »

SibrenVasse commented on 2019-07-20 17:09 (UTC)

@neuromante yes I know, that's why I changed line #34 in the diff in my previous post.

neuromante commented on 2019-07-20 17:03 (UTC)

@SibrenVasse It will work but you have to change /usr/bin/deezer bash script as well It has to point to electron4

SibrenVasse commented on 2019-07-20 13:51 (UTC)

Can you make this package depend on the package electron4 (4.2.8)? Using this version it does render for me. I think that would be a better solution than using an outdated 'electron'.

diff --git a/PKGBUILD b/PKGBUILD
index 5992dde..d78fb93 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,12 +1,12 @@
 # Maintainer: Ilya Gulya <ilyagulya@gmail.com>
 pkgname="deezer"
-pkgver=4.10.2
+pkgver=4.12.3
 pkgrel=1
 pkgdesc="A proprietary music streaming service"
 arch=('x86_64')
 url="https://www.deezer.com/"
 license=('custom:"Copyright (c) 2006-2018 Deezer S.A."')
-depends=('electron>=3.0.10' 'electron<4.0.0')
+depends=('electron4')
 provides=('deezer')
 options=('!strip')
 makedepends=('p7zip')
@@ -14,7 +14,7 @@ source=(
 "$pkgname-$pkgver-setup.exe::https://www.deezer.com/desktop/download/artifact/win32/x86/$pkgver"
 "$pkgname.desktop"
 )
-md5sums=('74b51845d654091da2caed2a7507b36c'
+md5sums=('afd9472859dc6c7fdd9e41b61a66ac23'
          '98ec5effa2d9a1d8c3c030125a2937c0')

 package() {
@@ -31,7 +31,7 @@ package() {
     7z x -so app-32.7z "resources/build/win/app.ico" > app.ico

     echo "#!/bin/sh" > deezer
-    echo "/usr/bin/electron /usr/share/deezer/app.asar" >> deezer
+    echo "/usr/bin/electron4 /usr/share/deezer/app.asar" >> deezer

     install -Dm644 app.asar "$pkgdir"/usr/share/deezer/app.asar
     install -Dm644 app.ico "$pkgdir"/usr/share/deezer/app.ico

aviranzerioniac commented on 2019-07-15 09:35 (UTC)

@simonorono, you need electron, https://www.archlinux.org/packages/community/x86_64/electron/

but the latest version didn't render for me, so i kept it at 4.1.

simonorono commented on 2019-07-14 12:15 (UTC)

I get this error when trying to update:

==> Error: Could not find all required packages: electron>=3.0.10 electron<4.0.0 (Wanted by: deezer)

What can I do?

aviranzerioniac commented on 2019-07-09 16:09 (UTC) (edited on 2019-07-10 08:04 (UTC) by aviranzerioniac)

I haven't been able to run it after the electron update and even the last update of deezer was the same. Only thing that works is downgrading electron if anyone is having the same problem. Might be helpful.

nCrazed commented on 2019-07-07 20:04 (UTC) (edited on 2019-07-07 20:05 (UTC) by nCrazed)

Why < 4.0.0 when 4.1.4 is known to work?

IlyaGulya commented on 2019-07-05 14:22 (UTC) (edited on 2019-07-05 14:24 (UTC) by IlyaGulya)

@nCrazed from my own research I've figured out that app was tested for running on electron 3.x

I'm not sure what will happen if I will change PKGBUILD to stick to electron 3.x.

Lets find out and I will revert if it will break something.

nCrazed commented on 2019-07-05 13:47 (UTC) (edited on 2019-07-05 13:48 (UTC) by nCrazed)

Downgrading to 4.1.4-1 makes it render again, with a lot more noise in the dev console.

nCrazed commented on 2019-07-05 13:43 (UTC) (edited on 2019-07-05 13:43 (UTC) by nCrazed)

@IlyaGulya

$ electron -v
v5.0.6
$ pacman -Qi electron
Name            : electron
Version         : 5.0.6-1
...