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

推荐订阅源

N
Netflix TechBlog - Medium
博客园 - 三生石上(FineUI控件)
Martin Fowler
Martin Fowler
博客园 - 【当耐特】
雷峰网
雷峰网
宝玉的分享
宝玉的分享
IT之家
IT之家
J
Java Code Geeks
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Jina AI
Jina AI
博客园 - 叶小钗
V
Visual Studio Blog
Engineering at Meta
Engineering at Meta
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
月光博客
月光博客
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
云风的 BLOG
云风的 BLOG
美团技术团队
爱范儿
爱范儿
T
The Blog of Author Tim Ferriss
L
LangChain Blog
U
Unit 42
有赞技术团队
有赞技术团队
博客园_首页

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