惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

WordPress大学
WordPress大学
A
About on SuperTechFans
小众软件
小众软件
Hugging Face - Blog
Hugging Face - Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 叶小钗
博客园 - 聂微东
博客园 - Franky
Apple Machine Learning Research
Apple Machine Learning Research
罗磊的独立博客
量子位
博客园 - 三生石上(FineUI控件)
Recent Announcements
Recent Announcements
The GitHub Blog
The GitHub Blog
B
Blog RSS Feed
T
The Blog of Author Tim Ferriss
GbyAI
GbyAI
云风的 BLOG
云风的 BLOG
Last Week in AI
Last Week in AI
宝玉的分享
宝玉的分享
B
Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Stack Overflow Blog
Stack Overflow Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC

AUR Newest Packages

AUR (en) - linuxqq-clipsync-git AUR (en) - libtslitex-git AUR (en) - libtslitex-git AUR (en) - carton-appimage AUR (en) - veila-git AUR (en) - veila-bin AUR (en) - vigil-baseline AUR (en) - byedroid AUR (en) - neovim-base16-git AUR (en) - pirata AUR (en) - rpi-imager-git-non-root AUR (en) - python-fastapi-sso AUR (en) - tmux-ai-titles AUR (en) - zeed-bin AUR (en) - bclone-bin AUR (en) - dwl-git-azerty AUR (en) - auggie-bin AUR (en) - libspatialaudio-git AUR (en) - libspatialaudio AUR (en) - miniupnpd-iptables-legacy AUR (en) - miniupnpd-nft AUR (en) - jeeves-bin AUR (en) - opennow AUR (en) - rotki AUR (en) - kapi-bin AUR (en) - classfi-bin AUR (en) - classfi-git AUR (en) - classfi AUR (en) - giff-git AUR (en) - budget-tracker-bin
AUR (en) - dbgate-bin
2026-05-31 · via AUR Newest Packages

tee commented on 2026-05-07 08:04 (UTC)

upstream url is now dbgate.io

andradei commented on 2026-04-23 15:22 (UTC)

Can confirm @SoftExpert's solution works.

It points to the same place the files are stored in the prepare() step of PKGBUILD.

SoftExpert commented on 2026-04-23 06:02 (UTC)

7.1.9-1 fails to build with the following error:

==> Starting package()...
cp: cannot stat '/var/tmp/pamac-build-marian/dbgate-bin/src/usr/lib/dbgate/resources/.': No such file or directory
==> ERROR: A failure occurred in package().
    Aborting...

It requires a change in PKGBUILD at line 49: cp -a "${srcdir}/opt/${_pkgname}/resources/". "${pkgdir}/usr/lib/${pkgname%-bin}/"

zxp19821005 commented on 2025-11-26 01:20 (UTC)

@Dominiquini, please carefully check the latest version 6.7.1. It does not have a deb package released—only the premium version has an AppImage file available. Next time, could you first confirm whether the corresponding precompiled version exists before marking it as outdated?

kartibok commented on 2025-10-18 10:21 (UTC) (edited on 2025-10-18 10:39 (UTC) by kartibok)

I had the same issue with the 30Gb download for Electron 30. My new build Arch had V37. With a little ChatGPT help I got it installed:

PKGBUILD

  1. Hardcoded electron30 removed.
  2. Dependency changed to electron37.
  3. sed now replaces @electronversion@ with 37 instead of 30.

dbgate.sh

  1. electron@electronversion@ replaced with electron37.

SHA256SUM

I had to recreate for the dbgate.sh file.

Hope it helps someone.

Asakusa commented on 2025-06-11 10:05 (UTC) (edited on 2025-06-11 10:06 (UTC) by Asakusa)

I always have issues when trying to install dbgate-bin.
I assume it's because of the large size of the Electron package.
How can I fix this?

cysec commented on 2025-04-30 16:01 (UTC)

I have electron 34 and 35 installed, this pkgbuild still tries to install electron 30 from source, and for some reason tries to download in excess of 30GB

gratefultony commented on 2025-03-04 22:25 (UTC)

nodejs-lts-iron-20.18.3-1 and nodejs-23.9.0-1 are in conflict

Can be fixed by upgrading electron to 34

petris commented on 2024-05-08 11:15 (UTC)

I noticed the change to the dbgate.bin script in the latest "fix errors" commit.

A section was added to read flags from a flags file, if it exists:

_FLAGS_FILE="${XDG_CONFIG_HOME}/@appname@-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

And then I assume the intent was to use those flags, however _USER_FLAGS was used instead of flags:

if [[ "${EUID}" -ne 0 ]] || [[ "${ELECTRON_RUN_AS_NODE}" ]]; then
    exec electron@electronversion@ "${_RUNNAME}" "${_OPTIONS}" "${_USER_FLAGS}" "$@" || exit $?
else
    exec electron@electronversion@ "${_RUNNAME}" "${_OPTIONS}" --no-sandbox "${_USER_FLAGS}" "$@" || exit $?
fi

So I'm guessing the declare -a flags and flags+= lines should be _USER_FLAGS instead.

Also, if you were intending these flags to be interpreted as separate command line arguments rather than just using the first line that was found, you need to change the usage of _USER_FLAGS to:

"${_USER_FLAGS[@]}"

Thus the last few lines should look like:

if [[ "${EUID}" -ne 0 ]] || [[ "${ELECTRON_RUN_AS_NODE}" ]]; then
    exec electron@electronversion@ "${_RUNNAME}" "${_OPTIONS}" "${_USER_FLAGS[@]}" "$@" || exit $?
else
    exec electron@electronversion@ "${_RUNNAME}" "${_OPTIONS}" --no-sandbox "${_USER_FLAGS[@]}" "$@" || exit $?
fi