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

推荐订阅源

GbyAI
GbyAI
The GitHub Blog
The GitHub Blog
小众软件
小众软件
美团技术团队
博客园 - 司徒正美
G
Google Developers Blog
Blog — PlanetScale
Blog — PlanetScale
Hugging Face - Blog
Hugging Face - Blog
博客园_首页
大猫的无限游戏
大猫的无限游戏
罗磊的独立博客
Recent Announcements
Recent Announcements
酷 壳 – CoolShell
酷 壳 – CoolShell
D
Docker
J
Java Code Geeks
Last Week in AI
Last Week in AI
V
Visual Studio Blog
Microsoft Azure Blog
Microsoft Azure Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
P
Proofpoint News Feed
V
V2EX
C
Check Point Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
MyScale Blog
MyScale Blog

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) - ffmpeg-normalize
2026-06-20 · via AUR Newest Packages

Raymo111 commented on 2026-05-27 10:23 (UTC)

maison commented on 2026-05-15 14:08 (UTC)

For me it worked better to install directly from PyPi with pipx; no other dependencies but ffmpeg itself.

willemw commented on 2025-10-12 06:31 (UTC)

@npreining: Thanks again.

npreining commented on 2025-10-11 22:00 (UTC)

@willemw it is still broken in 1.33.1-3 You are missing this

--- a/PKGBUILD
+++ b/PKGBUILD
@@ -22,13 +22,13 @@ sha512sums=('ee83d9ab48cf2a2e4e16e1fb1b9442e9a4b247fb4535de75c03ca823422d24d1a08
 build() {
   cd $pkgname-$pkgver
   #python -m build --no-isolation --wheel
-  uv --no-cache --offline build --no-build-isolation --out-dir=dist --wheel .
+  uv --no-cache --offline --no-managed-python build --no-build-isolation --out-dir=dist --wheel .
 }

 check() {
   cd $pkgname-$pkgver
   uv venv --no-managed-python --system-site-packages
-  uv --no-cache --offline pip install --link-mode=copy --no-deps dist/*.whl
+  uv --no-cache --offline --no-managed-python pip install --link-mode=copy --no-deps dist/*.whl
   PATH=".venv/bin:$PATH" ./.venv/bin/python -m pytest tests
 }

Otherwise it still uses the uv in .local if there is one.

willemw commented on 2025-09-03 09:57 (UTC)

@npreining: Thanks. Will add it.

It would be nice if there are some official packaging guidelines around using "uv".

npreining commented on 2025-09-03 09:41 (UTC) (edited on 2025-09-03 09:43 (UTC) by npreining)

The package fails to build if uv has already some managed python packages installed.

You must call

uv venv --system-site-packages --no-managed-python

to ensure that the system provided python is used, otherwise the one in .local/share/uv/python/ is used.

Adding this --no-managed-python ensures that the system python is used for creating the venv, and then the tests run through.

brainmue commented on 2025-09-02 19:52 (UTC)

I can't confirm that at the moment. It worked for me with version 0.8.13-1. But I didn't have anything from ux installed beforehand. Neither the Python package nor the normal ux, and that was the whole problem for me. Now that it's there, it works with pamac and also with makepkg.

willemw commented on 2025-09-02 19:20 (UTC)

I can confirm. Does not build with the older "uv" 0.8.13-1. Does build with "uv" 0.8.14-1.

willemw commented on 2025-09-02 18:57 (UTC)

Also successfully built the package with pamac-cli. Although pamac-cli skipped running check(), which it should.

I think uv_build is built into "uv". Maybe with "uv" version 0.8.14 the package will build in Manjaro.

I have corrected the prepare() mentioned below, but I probably won't add it to the PKGBUILD file.

brainmue commented on 2025-09-02 16:46 (UTC)

@willemw

I tested a few things again and revisited my initial idea, because Python itself does not recognise uv_build on my system either.

$ python
Python 3.13.7 (main, Aug 15 2025, 12:34:02) [GCC 15.2.1 20250813] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import uv_build as backend
Traceback (most recent call last):
  File "<python-input-0>", line 1, in <module>
    import uv_build as backend
ModuleNotFoundError: No module named 'uv_build'

After that, I have now actually entered the dependency python-uv-build in your current PKGBUILD.

And after that, the build worked without any problems.

So I would suggest that, if you have no objections, you add the dependency.