Package Details: electron26-bin 26.6.10-1

Git Clone URL: https://aur.archlinux.org/electron26-bin.git (read-only, click to copy)
Package Base: electron26-bin
Description: Build cross platform desktop apps with web technologies — prebuilt
Upstream URL: https://electronjs.org
Keywords: node nodejs
Licenses: custom, MIT
Conflicts: electron26
Provides: electron, electron26
Submitter: yurikoles
Maintainer: yurikoles
Last Packager: yurikoles
Votes: 3
Popularity: 0.182829
First Submitted: 2023-07-05 15:35 (UTC)
Last Updated: 2024-02-24 23:36 (UTC)

Dependencies (11)

Required by (267)

Sources (4)

Latest Comments

alerque commented on 2024-03-04 14:15 (UTC) (edited on 2024-03-05 07:47 (UTC) by alerque)

This and all other elecronNN-bin packages should NOT have provides=(electron), only provides=(electronNN). Please remove these as they are causing a mess all over the Electron ecosystem since the upstream change to the electron meta package approach. This may have originally made sense, but it definitely does not now. The only package that should provide that from the AUR is the electron-bin package which is a direct replacement for electron without a version. That provision on these versioned package is going to lock people using anything that does want the sliding version of Electron into whatever version they happen to have installed and also in some cases block installing multiple Electron apps that require different versions. Additionally it is screwing up AUR helpers trying to resolve dependencies.

carsme commented on 2023-12-12 07:20 (UTC)

Hey, would you mind packaging this like the official Electron packages are? I.e. add the following launcher script that reads config files, among other things:

$ cat /usr/bin/electron25
#!/usr/bin/bash

set -euo pipefail

name=electron25
flags_file="${XDG_CONFIG_HOME:-$HOME/.config}/${name}-flags.conf"

declare -a flags

if [[ -f "${flags_file}" ]]; then
    mapfile -t < "${flags_file}"
fi

for line in "${MAPFILE[@]}"; do
    if [[ ! "${line}" =~ ^[[:space:]]*#.* ]] && [[ -n "${line}" ]]; then
        flags+=("${line}")
    fi
done

exec /usr/lib/${name}/electron "${flags[@]}" "$@"

Feel free to add me as co-maintainer if you'd like me to do it.

yochananmarqos commented on 2023-11-22 19:30 (UTC)

@yurikoles: If you can't be bothered to update your Electron packages in a timely manner, then please orphan them so others can do it. A binary package version bump takes no time at all.

MarsSeed commented on 2023-07-10 20:09 (UTC)

Hi,

You should be aware that the current version of 26.0.0.beta.2 is considered newer by pacman than the future stable version of 26.0.0.

The following is true as per pacman's vercmp:

26.0.0beta < 26.0.0 < 26.0.0.beta