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

推荐订阅源

Martin Fowler
Martin Fowler
有赞技术团队
有赞技术团队
博客园_首页
H
Help Net Security
GbyAI
GbyAI
aimingoo的专栏
aimingoo的专栏
V
Visual Studio Blog
The Cloudflare Blog
腾讯CDC
Jina AI
Jina AI
Last Week in AI
Last Week in AI
月光博客
月光博客
博客园 - 叶小钗
Google DeepMind News
Google DeepMind News
B
Blog RSS Feed
Blog — PlanetScale
Blog — PlanetScale
人人都是产品经理
人人都是产品经理
Engineering at Meta
Engineering at Meta
Y
Y Combinator Blog
Hugging Face - Blog
Hugging Face - Blog
博客园 - 聂微东
爱范儿
爱范儿
N
Netflix TechBlog - Medium
F
Fortinet All Blogs

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