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

推荐订阅源

The GitHub Blog
The GitHub Blog
Hugging Face - Blog
Hugging Face - Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
WordPress大学
WordPress大学
Y
Y Combinator Blog
Google DeepMind News
Google DeepMind News
大猫的无限游戏
大猫的无限游戏
Vercel News
Vercel News
V
Visual Studio Blog
Microsoft Azure Blog
Microsoft Azure Blog
MyScale Blog
MyScale Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
罗磊的独立博客
N
Netflix TechBlog - Medium
M
MIT News - Artificial intelligence
G
Google Developers Blog
阮一峰的网络日志
阮一峰的网络日志
P
Proofpoint News Feed
小众软件
小众软件
Engineering at Meta
Engineering at Meta
D
DataBreaches.Net
S
SegmentFault 最新的问题
H
Help Net Security
量子位

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) - hermes-agent
2026-05-30 · via AUR Newest Packages

y0uCeF commented on 2026-05-31 12:09 (UTC)

@Xarth thanks for your feedback and continuous tests. I updated the PKGBUILD in pkgrel 4. Any comments are welcome.

Co-maintaining is open

Xarth commented on 2026-05-31 05:34 (UTC) (edited on 2026-06-01 06:31 (UTC) by Xarth)

Shebang points to the build directory and fails after cleaning the cache.

After install, venv/bin/ scripts have shebangs pointing to the paru build cache:

#!/home/$USER/.cache/paru/clone/hermes-agent/src/.../venv/bin/python3.11

Cleaning the cache breaks the package. This happens because pip install in build() writes shebangs to ${srcdir}, and package() copies them verbatim

Xarth commented on 2026-05-31 05:18 (UTC) (edited on 2026-05-31 05:35 (UTC) by Xarth)

Hi, it seems rsync is required during the build process, but it's missing from makedepends. Please add it to the PKGBUILD:

makedepends=('rsync' ...)

Thanks for your work!

cyx-slps commented on 2026-05-31 02:12 (UTC) (edited on 2026-05-31 08:10 (UTC) by cyx-slps)

I recently built hermes-agent 0.15.2-3 and found that hermes can't run successfully. The root cause seems to be twofold:

  1. pip install -e .[all] in build() hardcodes the $srcdir path into all shebangs and creates an editable finder pointing to the build directory.

  2. No path fixup in package() after copying to /opt/hermes-agent/. I fixed it locally by switching to pip install .[all] (no -e) and adding a sed to rewrite shebangs in package().

y0uCeF commented on 2026-05-30 20:42 (UTC) (edited on 2026-05-30 20:42 (UTC) by y0uCeF)

@Xarth I got it. I did not like how the binary looks for dependencies inside site_packages to begin with. Now, I changed the installation to be consistent with the official install.sh. The package will be copied as-is to /opt/hermes-agent only excluding .git and pycache directories for now.

I bet this will fix a lot of dependencies that were not found inside site_packages, as well as lazy installations.

@zombieagain I also had my laptop fan spin at full speed while compiling Python311. However, if you check zatricky's comment you'll know why uv was changed due to its reliance on build-time paths even after copying everything to /opt. If someone solves this problem or finds a way to create a python 3.11 venv without relying on AUR's python311, it would be great.

zombieagain commented on 2026-05-30 09:19 (UTC)

Hello, thank you for the package and I'm grateful for the effort. I don't know what's best practice but the dependency to aur python is quite heavy. It takes forever to build. It seems very weird to me. uv binaries take seconds. Pardon my ignorance but I can't see how is this an improvement. Thanks in advance for considering my input.

y0uCeF commented on 2026-05-29 17:03 (UTC) (edited on 2026-05-29 17:03 (UTC) by y0uCeF)

Updated to 0.15.2

Package now uses python311 from AUR with python's venv instead of uv (thanks to @zatricky)

Python telegram bot and a few other dependencies are not automatically installed with hermes via pip install .[all] because they are not part of [all] anymore. Instead, they rely on lazy install. @ch4xer

locales and plugins directories are included in the package @kmacleod @Xarth