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

推荐订阅源

B
Blog RSS Feed
WordPress大学
WordPress大学
博客园_首页
罗磊的独立博客
D
Docker
N
Netflix TechBlog - Medium
博客园 - Franky
Hugging Face - Blog
Hugging Face - Blog
D
DataBreaches.Net
I
InfoQ
L
LangChain Blog
GbyAI
GbyAI
V
V2EX
博客园 - 聂微东
P
Proofpoint News Feed
博客园 - 【当耐特】
腾讯CDC
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
量子位
Martin Fowler
Martin Fowler
有赞技术团队
有赞技术团队
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) - python-glyphsets
2026-06-27 · via AUR Newest Packages

Same issue, but with setuptools scm 8.2.0 now.

python-setuptools-scm was updated to 8.1.0 which glyphsets explicitly excludes in its setup.py, consequently, this PKGBUILD fails. However, I found that builds succeed just fine if the setup.py is patched:

diff --unified --recursive --text a/setup.py b/setup.py
--- a/setup.py  2024-05-03 11:49:24.000000000 +0200
+++ b/setup.py  2024-05-20 09:27:00.893688795 +0200
@@ -60,7 +60,7 @@
         "Programming Language :: Python :: 3",
     ],
     python_requires=">=3.8",
-    setup_requires=["setuptools_scm>=8.0.4,<8.1"],
+    setup_requires=["setuptools_scm>=8.0.4"],
     install_requires=[
         "requests",
         "setuptools",

Could you update the PKGBUILD? Thanks!