Package Details: deltachat-desktop-git monorepo.testrelease.rc1.r7.gbdca27289-1

Git Clone URL: https://aur.archlinux.org/deltachat-desktop-git.git (read-only, click to copy)
Package Base: deltachat-desktop-git
Description: A privacy oriented chat application built on e-mail
Upstream URL: https://github.com/deltachat/deltachat-desktop
Licenses: GPL
Submitter: Jikstra
Maintainer: Jikstra (link2xt)
Last Packager: link2xt
Votes: 10
Popularity: 0.000000
First Submitted: 2018-12-17 18:10 (UTC)
Last Updated: 2024-10-10 15:30 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 4 Next › Last »

<deleted-account> commented on 2022-04-04 08:04 (UTC)

ln -s "${pkgdir}/opt/DeltaChat/deltachat" "${pkgdir}/usr/bin/deltachat" => ln -s "/opt/DeltaChat/deltachat" "${pkgdir}/usr/bin/deltachat"

<deleted-account> commented on 2022-04-04 08:03 (UTC)

"deltachat-desktop-git::git+ssh://git@github.com/deltachat/deltachat-desktop.git" => "deltachat-desktop-git::git+https://git@github.com/deltachat/deltachat-desktop.git"

voidl commented on 2022-04-01 11:51 (UTC)

Can you update the remote origin to either https or ssh please? The git:// protocol is not supported any more like statet here: https://github.blog/2021-09-01-improving-git-protocol-security-github/

Jikstra commented on 2022-03-29 14:07 (UTC)

@vasya fixed it :) Thanks for pointing it out :)

vasya commented on 2021-03-26 08:10 (UTC) (edited on 2021-03-26 08:11 (UTC) by vasya)

Thanks for the package! I have a few question on the package (that my aur client, RUA, gives me):

In /dev/stdin line 57:
    find "${pkgdir}/opt/DeltaChat/electron_app/node_modules/" -name *.js.map -exec rm {} \;
                                                                    ^------^ SC2061: Quote the parameter to -name so the shell won't interpret it.
                                                                    ^-- SC2035: Use ./*glob* or -- *glob* so names with dashes won't become options.


In /dev/stdin line 65:
    ln -s "${pkdir}/opt/DeltaChat/deltachat" "${pkgdir}/usr/bin/deltachat"
           ^------^ SC2154: pkdir is referenced but not assigned (did you mean 'pkgdir'?).

In human words, it seems that there's a typo with "pkdir" instead of "pkgdir" and that quotes are needed to avoid shell globbing. Can we please fix it? Thanks!

elovin commented on 2020-06-03 09:05 (UTC)

@tercean you are right, it works with python now, no python2 is required

tercean commented on 2020-06-03 08:17 (UTC)

This needs 'python' in makedepends and the prepare-stage is actually the build-stage. After both modifications it builds fine in a clean chroot.

elovin commented on 2020-04-20 11:47 (UTC) (edited on 2020-04-22 09:15 (UTC) by elovin)

@Jikstra thanks for the update, I just did a rebuild on my laptop and noticed that python2 is also required

Jikstra commented on 2020-04-19 10:45 (UTC)

@elovin we are currently depending on compiling the rust core from source on the git master. Normally we have prebuilds and people don't need to have a rust compiler around, but currently we do as we do quite some changes on the node bindings. To fix this it should be enough to install rustup, i recently did it with "sudo pacman -S rustup", you can also install it from https://rustup.rs/. It's like rust version tool, automatically installing the right rust version that's needed.

tl;dr: If creating the package fails because the command cargo isn't found or the rust compiler can't compile, try installing rustup and give it another try.