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

推荐订阅源

博客园 - Franky
有赞技术团队
有赞技术团队
宝玉的分享
宝玉的分享
雷峰网
雷峰网
Hugging Face - Blog
Hugging Face - Blog
V
V2EX
大猫的无限游戏
大猫的无限游戏
博客园 - 司徒正美
D
Docker
T
The Blog of Author Tim Ferriss
罗磊的独立博客
博客园 - 叶小钗
酷 壳 – CoolShell
酷 壳 – CoolShell
Blog — PlanetScale
Blog — PlanetScale
月光博客
月光博客
J
Java Code Geeks
Jina AI
Jina AI
博客园 - 【当耐特】
C
Check Point Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
腾讯CDC
Last Week in AI
Last Week in AI
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
V
Visual Studio 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) - dotnet-core-8.0-bin
2026-06-16 · via AUR Newest Packages

Latest Comments

Gr3q commented on 2025-11-22 19:44 (UTC) (edited on 2025-11-22 19:44 (UTC) by Gr3q)

@vitaliikuzhdin I see what you mean now. When I started there were no multiple versions of runtimes in the official repos (tbh the official packages didn't actually exist) and people were specifying the version in their dependencies instead.

That did change in the recent year(s) but these packages still don't reflect that. I will make the changes tomorrow.

vitaliikuzhdin commented on 2025-11-22 16:07 (UTC)

@Gr3q, ah, I just noticed you started removing those provides entries on the dotnet-core-bin packages. However, those are correct for the unversioned -bin package and should be brought back. I was only referring to the versioned packages (dotnet-core-x.x*).

vitaliikuzhdin commented on 2025-11-22 16:00 (UTC)

@Gr3q,

I'm not sure what you mean, what exactly is the problem with this package?

You need to remove provides=("dotnet-runtime=${_runtimever}") and similar, because these are incorrect. To provide an up-to-date package means to be a drop-in replacement of the same version, otherwise, errors can occur like the one described above.

You don't even have it installed.

That's false. And how is that even related? Do I need to install packages with incorrect provides to know they have incorrect provides? Or can I simply read the PKGBUILD?

Gr3q commented on 2025-11-22 09:11 (UTC) (edited on 2025-11-22 09:11 (UTC) by Gr3q)

@vitaliikuzhdin I'm not sure what you mean, what exactly is the problem with this package? You don't even have it installed. This package provides dotnet-*-8.0 packages and their exact versions (the thing that actually differs from the official packages in the provides section)

vitaliikuzhdin commented on 2025-11-21 16:56 (UTC) (edited on 2025-11-21 16:56 (UTC) by vitaliikuzhdin)

@Gr3q, so at least the runtime packages shouldn’t have the provides. As for the SDK, it can indeed target older .NET releases for the build, but not for many other functions. For example, running dotnet restore fails if the version is mismatched:

The command could not be loaded, possibly because:
  * You intended to execute a .NET application:
      The application 'restore' does not exist.
  * You intended to execute a .NET SDK command:
      A compatible .NET SDK was not found.

Requested SDK version: 8.0.405
global.json file: (...)/global.json

Installed SDKs:
9.0.306 [/usr/share/dotnet/sdk]

Install the [8.0.405] .NET SDK or update [(...)/global.json] to match an installed SDK.

Learn about SDK resolution:
https://aka.ms/dotnet/sdk-not-found

Arch packages that claim to provide another package should be drop-in replacements for what they are providing, which is clearly not the case here. I guess this is also the reason the official versioned .NET packages do not have provides. I don’t think deviating from the official packages is a great choice.

Gr3q commented on 2025-11-16 19:26 (UTC)

vitaliikuzhdin commented on 2025-11-15 23:48 (UTC)

Is there a reason your versioned .NET packages claim to provide their newer counterparts? For example, if I try to build a 8.0 project using the 9.0 SDK, it fails, and the same applies when running projects that depend on an older runtime with a newer runtime. The official source-built packages don’t provide this either. Or am I missing something?