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

推荐订阅源

IT之家
IT之家
Recent Announcements
Recent Announcements
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
The GitHub Blog
The GitHub Blog
MyScale Blog
MyScale Blog
爱范儿
爱范儿
GbyAI
GbyAI
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
美团技术团队
Y
Y Combinator Blog
博客园 - 叶小钗
Apple Machine Learning Research
Apple Machine Learning Research
Martin Fowler
Martin Fowler
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
罗磊的独立博客
M
MIT News - Artificial intelligence
博客园 - Franky
V
Visual Studio Blog
I
InfoQ
V
V2EX
Hugging Face - Blog
Hugging Face - Blog
腾讯CDC
博客园 - 司徒正美
L
LangChain 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) - qqc2-desktop-style-git
2026-06-12 · via AUR Newest Packages

Latest Comments

lito commented on 2026-01-11 07:17 (UTC) (edited on 2026-01-11 07:20 (UTC) by lito)

All the git variants of Plasma packages on the AUR depend on the git variants of dependencies
plasma-desktop-git may depend on this package

The keyword here is may. It means this is a possible dependency path, not something that is guaranteed to always occur. That's theory.

But, in practice, kdeconnect-git does depend on it, and this leads to plasma-bigscreen-git failing to compile because pacman attempts to replace this package with the non-git version. If that replacement is accepted, the rest of a plasma-git setup breaks due to incompatible builds being mixed, and leads to an unbootable Plasma session.

For anyone running Plasma from git for development or testing, this currently means having to manually patch this PKGBUILD to add a provides entry so that dependency resolution works correctly. That is, provides=(qqc2-desktop-style) means that it provides what the original package does and so pacman won't break the setup by trying to hard-push the two together and not being able to do so.

That provides line is already how the other Plasma git packages are handled (for example, see kdeconnect-git on the AUR), and this package is currently the only outlier in that regard. This is the only one that doesn't offer itself as a provider of what the non-git version also provides.

Adding it avoids pacman trying to replace this package and prevents a single AUR update from breaking an otherwise consistent plasma-git installation as soon as one logs out from the Plasma session.

User8395 commented on 2026-01-10 13:55 (UTC)

I will not be doing that. All the git variants of Plasma packages on the AUR depend on the git variants of dependencies, e.g. plasma-desktop-git may depend on this package. There is no need for the provides field.

lito commented on 2026-01-10 04:32 (UTC)

Thank you, but it seems like you forgot to add the provides line.

Without it, compiling Plasma from master git fails because it wants to replace this package with the original qqc2-desktop-style. So please add it so this package finally stops conflicting.

User8395 commented on 2026-01-09 20:01 (UTC)

lito commented on 2026-01-09 19:37 (UTC)

Please add as well:

conflicts=('qqc2-desktop-style')
provides=('qqc2-desktop-style')

So it stops conflicting with the original package.

lito commented on 2026-01-08 07:16 (UTC) (edited on 2026-01-08 07:17 (UTC) by lito)

Again, please unhardcode that qqc2-desktop-style name as it causes it to fail building.

Please replace:

cd "qqc2-desktop-style"

with

cd "${pkgname%-git}"

and:

  cmake -B build -S $_pkgname \

with:

  cmake -B build -S "${pkgname%-git}" \

so it stops to fail building and actually builds successfully.

lito commented on 2025-08-09 22:21 (UTC)

In pkgver(), replace cd "$pkgname" with cd "${pkgname%-git}", otherwise it fails to build