You are not logged in.

#1 2025-11-22 19:04:13

loqs
Member
Registered: 2014-03-06
Posts: 18,722

Updating dotnet packages

seth if you have time could you please try try building dot-net with the following patch applied:

diff --git a/PKGBUILD b/PKGBUILD
index ed4a2b8..a7e8cd7 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -14,14 +14,14 @@ pkgname=(
  aspnet-targeting-pack
  dotnet-source-built-artifacts
 )
-pkgver=9.0.9.sdk110
+pkgver=10.0.0.sdk100
 pkgrel=1
 arch=(x86_64)
 url=https://dotnet.microsoft.com
 license=(MIT)
 makedepends=(
   bash
-  clang
+  clang20
   cmake
   dotnet-sdk
   dotnet-source-built-artifacts
@@ -32,7 +32,7 @@ makedepends=(
   libunwind
   libxml2
   lldb
-  llvm
+  llvm20
   lttng-ust2.12
   nodejs
   openssl
@@ -44,9 +44,9 @@ options=(
   !lto
   staticlibs
 )
-_tag=999243871ad8799c178193bb2d384dfbcfd94ce6
+_tag=b0f34d51fccc69fd334253924abd8d6853fad7aa
 source=(git+https://github.com/dotnet/dotnet.git#tag=${_tag})
-b2sums=('0e6f3593e6c6ff32be64e89d1483a7fc629b19f76d1eca573f8322956ee865969406ccdf4571f8189446aa3b1064c786813375d522341a1cb39bb9b1be220237')
+b2sums=('0742a7412aaf03a6217cbbed5324c3dbb981fc8bea3f164b15808c43e8eee1b5b7cf15af8fad99ae72a9f5ad8286531a01785c8f440fb9d334841cc0e8450256')
 
 prepare() {
   cd dotnet
@@ -68,12 +68,12 @@ prepare() {
 pkgver() {
   cd dotnet
 
-  if [[ $(git describe --tags) != v9.0.* ]]; then
+  if [[ $(git describe --tags) != v10.0.* ]]; then
     msg "Invalid SDK version"
     exit 1
   fi
 
-  local _standardver=$(xmllint --xpath "//*[local-name()='NETStandardLibraryRefPackageVersion']/text()" src/sdk/eng/Versions.props)
+  local _standardver=$(xmllint --xpath "//*[local-name()='NETStandardLibraryRefPackageVersion']/text()" src/sdk/eng/Version.Details.props)
 
   if [[ $_standardver != 2.1.0 ]]; then
     msg "Invalid Standard version"
@@ -93,7 +93,7 @@ build() {
   export VERBOSE=1
   export OPENSSL_ENABLE_SHA1_SIGNATURES=1
 
-  export PATH="/usr/lib/llvm18/bin:$PATH"
+  export PATH="/usr/lib/llvm20/bin:$PATH"
 
   # this uses malloc_usable_size, which is incompatible with fortification level 3
   CFLAGS="${CFLAGS/_FORTIFY_SOURCE=3/_FORTIFY_SOURCE=2}"

Is it an expected change that all the generated packaged have -dev added to the names compared with dotnet 9?

Offline

#2 2025-11-22 20:07:35

seth
Member
From: Don't DM me only for attention
Registered: 2012-09-03
Posts: 71,512

Re: Updating dotnet packages

I don't even have any dotnet installed lol
What's the problem, do you get build errors?

The pkgver() is dynamically generated, https://gitlab.archlinux.org/archlinux/ … =heads#L83
Do those functions spit out the -dev ?

Offline

#3 2025-11-22 20:36:56

loqs
Member
Registered: 2014-03-06
Posts: 18,722

Re: Updating dotnet packages

No the pkgver works as expected after changing v9 to v10 the issue is in the first of the split package functions

bsdtar: Error opening archive: Failed to open 'dotnet/artifacts/assets/Release/dotnet-sdk-10.0.100-arch-*.tar.gz'

Which does not match dotnet/artifacts/assets/Release/dotnet-sdk-10.0.100-dev-arch-x64.tar.gz built in build due to the -dev between 100 and arch. See also https://gitlab.archlinux.org/archlinux/ … requests/7.

Offline

#4 2025-11-22 21:05:22

seth
Member
From: Don't DM me only for attention
Registered: 2012-09-03
Posts: 71,512

Re: Updating dotnet packages

https://github.com/dotnet/source-build/issues/5186
https://gitlab.archlinux.org/archlinux/ … =heads#L65 is likely to fail and you're just left with some unrelated stale version from the days of yore?

Offline

#5 2025-11-22 21:22:02

loqs
Member
Registered: 2014-03-06
Posts: 18,722

Re: Updating dotnet packages

seth wrote:

https://gitlab.archlinux.org/archlinux/ … =heads#L65 is likely to fail and you're just left with some unrelated stale version from the days of yore?

What do suggest?

Offline

#6 2025-11-22 21:30:45

seth
Member
From: Don't DM me only for attention
Registered: 2012-09-03
Posts: 71,512

Re: Updating dotnet packages

stat dotnet/artifacts/assets/Release/dotnet-sdk-10.0.100-dev-arch-x64.tar.gz

to check it's age
You could also just hit the "$_bootstrapver == $_previousver" so I'd just inject some debug statements to check what's going on there (the if condition and the status of the /prep-source-build.sh call)

This all of course hinges on the assumption that you're not rebuilding clean.

Offline

#7 2025-11-22 21:32:50

loqs
Member
Registered: 2014-03-06
Posts: 18,722

Re: Updating dotnet packages

seth wrote:

This all of course hinges on the assumption that you're not rebuilding clean.

It is a clean build using `pkgctl build` which reaches the split package then fails.

Offline

#8 2025-11-22 22:02:59

seth
Member
From: Don't DM me only for attention
Registered: 2012-09-03
Posts: 71,512

Re: Updating dotnet packages

ls /usr/share/dotnet/source-built-artifacts/Private.SourceBuilt.Artifacts.*.tar.gz

If it's not that at all somehow
"set -x", "set +x" around ./prep-source-build.sh and ./build.sh will hopefully at least show where the -dev is coming from (it's not your local /etc/os-release, right?)

Offline

#9 2025-11-22 23:12:30

loqs
Member
Registered: 2014-03-06
Posts: 18,722

Re: Updating dotnet packages

dotnet-core-10.0.0.sdk100-1-x86_64-prepare.log (could not see -dev in it)

+ ./prep-source-build.sh
  Installing .NET SDK 10.0.100-rc.2.25502.107
Downloading 'https://builds.dotnet.microsoft.com/dotnet/scripts/v1/dotnet-install.sh'
  Attempting to install 'sdk v10.0.100-rc.2.25502.107' from public_location.
dotnet-install: Attempting to download using primary link https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-rc.2.25502.107/dotnet-sdk-10.0.100-rc.2.25502.107-linux-x64.tar.gz
dotnet-install: Remote file https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-rc.2.25502.107/dotnet-sdk-10.0.100-rc.2.25502.107-linux-x64.tar.gz size is 238718991 bytes.
dotnet-install: Extracting archive from https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-rc.2.25502.107/dotnet-sdk-10.0.100-rc.2.25502.107-linux-x64.tar.gz
dotnet-install: Downloaded file size is 238718991 bytes.
dotnet-install: The remote and local file sizes are equal.
dotnet-install: Installed version is 10.0.100-rc.2.25502.107
dotnet-install: Adding to current process PATH: `/build/dotnet-core/src/dotnet/.dotnet`. Note: This change will be visible only when sourcing script.
dotnet-install: Note that the script does not resolve dependencies during installation.
dotnet-install: To check the list of dependencies, go to https://learn.microsoft.com/dotnet/core/install, select your operating system and check the "Dependencies" section.
dotnet-install: Installation finished successfully.
  Downloading previously source-built artifacts from https://builds.dotnet.microsoft.com/dotnet/source-build/Private.SourceBuilt.Artifacts.10.0.100-rc.2.25502.107.centos.10-x64.tar.gz...
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed

  0     0   0     0   0     0     0     0  --:--:-- --:--:-- --:--:--     0
  0     0   0     0   0     0     0     0  --:--:-- --:--:-- --:--:--     0
  0  1348M   0  8230k   0     0  7642k     0   0:03:00  0:00:01  0:02:59  7642k
  1  1348M   1 17735k   0     0  8538k     0   0:02:41  0:00:02  0:02:39  8538k
  1  1348M   1 27227k   0     0  8848k     0   0:02:36  0:00:03  0:02:33  8845k
  2  1348M   2 36747k   0     0  9012k     0   0:02:33  0:00:04  0:02:29  9011k
  3  1348M   3 46446k   0     0  9147k     0   0:02:30  0:00:05  0:02:25  9296k
  4  1348M   4 56082k   0     0  9228k     0   0:02:29  0:00:06  0:02:23  9570k
  4  1348M   4 65552k   0     0  9262k     0   0:02:29  0:00:07  0:02:22  9563k
  5  1348M   5 74423k   0     0  9213k     0   0:02:29  0:00:08  0:02:21  9439k
  6  1348M   6 83704k   0     0  9221k     0   0:02:29  0:00:09  0:02:20  9391k
  6  1348M   6 93435k   0     0  9272k     0   0:02:28  0:00:10  0:02:18  9397k
  7  1348M   7  98.2M   0     0  9081k     0   0:02:32  0:00:11  0:02:21  8902k
  7  1348M   7 107.6M   0     0  9128k     0   0:02:31  0:00:12  0:02:19  8939k
  8  1348M   8 116.9M   0     0  9160k     0   0:02:30  0:00:13  0:02:17  9074k
  9  1348M   9 126.0M   0     0  9169k     0   0:02:30  0:00:14  0:02:16  9074k
 10  1348M  10 135.7M   0     0  9218k     0   0:02:29  0:00:15  0:02:14  9111k
 10  1348M  10 144.4M   0     0  9202k     0   0:02:30  0:00:16  0:02:14  9470k
 11  1348M  11 153.3M   0     0  9194k     0   0:02:30  0:00:17  0:02:13  9353k
 12  1348M  12 161.9M   0     0  9176k     0   0:02:30  0:00:18  0:02:12  9216k
 12  1348M  12 170.6M   0     0  9158k     0   0:02:30  0:00:19  0:02:11  9127k
 13  1348M  13 179.2M   0     0  9142k     0   0:02:31  0:00:20  0:02:11  8910k
 13  1348M  13 186.1M   0     0  9044k     0   0:02:32  0:00:21  0:02:11  8537k
 14  1348M  14 194.6M   0     0  9029k     0   0:02:32  0:00:22  0:02:10  8467k
 15  1348M  15 203.6M   0     0  9037k     0   0:02:32  0:00:23  0:02:09  8534k
 15  1348M  15 212.3M   0     0  9031k     0   0:02:32  0:00:24  0:02:08  8545k
 16  1348M  16 222.5M   0     0  9087k     0   0:02:31  0:00:25  0:02:06  8868k
 17  1348M  17 231.6M   0     0  9096k     0   0:02:31  0:00:26  0:02:05  9315k
 17  1348M  17 240.7M   0     0  9105k     0   0:02:31  0:00:27  0:02:04  9442k
 18  1348M  18 251.6M   0     0  9179k     0   0:02:30  0:00:28  0:02:02  9836k
 19  1348M  19 263.8M   0     0  9290k     0   0:02:28  0:00:29  0:01:59 10540k
 20  1348M  20 273.0M   0     0  9297k     0   0:02:28  0:00:30  0:01:58 10348k
 20  1348M  20 280.9M   0     0  9257k     0   0:02:29  0:00:31  0:01:58 10096k
 21  1348M  21 289.6M   0     0  9246k     0   0:02:29  0:00:32  0:01:57 10010k
 22  1348M  22 298.9M   0     0  9255k     0   0:02:29  0:00:33  0:01:56  9682k
 22  1348M  22 309.7M   0     0  9307k     0   0:02:28  0:00:34  0:01:54  9401k
 23  1348M  23 321.7M   0     0  9392k     0   0:02:27  0:00:35  0:01:52  9962k
 24  1348M  24 333.4M   0     0  9465k     0   0:02:25  0:00:36  0:01:49 10759k
 25  1348M  25 345.9M   0     0  9553k     0   0:02:24  0:00:37  0:01:47 11517k
 26  1348M  26 356.9M   0     0  9598k     0   0:02:23  0:00:38  0:01:45 11866k
 27  1348M  27 369.4M   0     0  9678k     0   0:02:22  0:00:39  0:01:43 12208k
 28  1348M  28 380.4M   0     0  9721k     0   0:02:22  0:00:40  0:01:42 12032k
 28  1348M  28 389.9M   0     0  9721k     0   0:02:22  0:00:41  0:01:41 11568k
 29  1348M  29 396.8M   0     0  9659k     0   0:02:22  0:00:42  0:01:40 10443k
 30  1348M  30 406.2M   0     0  9657k     0   0:02:23  0:00:43  0:01:40 10103k
 30  1348M  30 415.4M   0     0  9652k     0   0:02:23  0:00:44  0:01:39  9447k
 31  1348M  31 424.6M   0     0  9616k     0   0:02:23  0:00:45  0:01:38  8797k
 32  1348M  32 434.2M   0     0  9649k     0   0:02:23  0:00:46  0:01:37  9064k
 32  1348M  32 443.5M   0     0  9647k     0   0:02:23  0:00:47  0:01:36  9548k
 33  1348M  33 452.9M   0     0  9647k     0   0:02:23  0:00:48  0:01:35  9567k
 34  1348M  34 462.3M   0     0  9647k     0   0:02:23  0:00:49  0:01:34  9602k
 34  1348M  34 471.7M   0     0  9646k     0   0:02:23  0:00:50  0:01:33  9923k
 35  1348M  35 481.1M   0     0  9646k     0   0:02:23  0:00:51  0:01:32  9611k
 36  1348M  36 490.6M   0     0  9646k     0   0:02:23  0:00:52  0:01:31  9644k
 37  1348M  37 499.9M   0     0  9644k     0   0:02:23  0:00:53  0:01:30  9612k
 37  1348M  37 509.1M   0     0  9640k     0   0:02:23  0:00:54  0:01:29  9573k
 38  1348M  38 518.3M   0     0  9637k     0   0:02:23  0:00:55  0:01:28  9552k
 39  1348M  39 527.5M   0     0  9633k     0   0:02:23  0:00:56  0:01:27  9502k
 39  1348M  39 537.2M   0     0  9638k     0   0:02:23  0:00:57  0:01:26  9544k
 40  1348M  40 547.8M   0     0  9658k     0   0:02:22  0:00:58  0:01:24  9809k
 41  1348M  41 559.8M   0     0  9703k     0   0:02:22  0:00:59  0:01:23 10384k
 42  1348M  42 573.1M   0     0  9769k     0   0:02:21  0:01:00  0:01:21 11223k
 43  1348M  43 586.9M   0     0  9840k     0   0:02:20  0:01:01  0:01:19 12164k
 44  1348M  44 598.6M   0     0  9874k     0   0:02:19  0:01:02  0:01:17 12578k
 45  1348M  45 610.6M   0     0  9913k     0   0:02:19  0:01:03  0:01:16 12875k
 45  1348M  45 620.3M   0     0  9914k     0   0:02:19  0:01:04  0:01:15 12400k
 46  1348M  46 632.5M   0     0  9952k     0   0:02:18  0:01:05  0:01:13 12151k
 47  1348M  47 641.9M   0     0  9947k     0   0:02:18  0:01:06  0:01:12 11260k
 48  1348M  48 651.1M   0     0  9940k     0   0:02:18  0:01:07  0:01:11 10757k
 48  1348M  48 660.5M   0     0  9935k     0   0:02:19  0:01:08  0:01:11 10213k
 49  1348M  49 669.8M   0     0  9929k     0   0:02:19  0:01:09  0:01:10 10124k
 50  1348M  50 678.6M   0     0  9917k     0   0:02:19  0:01:10  0:01:09  9457k
 50  1348M  50 687.5M   0     0  9906k     0   0:02:19  0:01:11  0:01:08  9353k
 51  1348M  51 696.6M   0     0  9897k     0   0:02:19  0:01:12  0:01:07  9310k
 52  1348M  52 704.9M   0     0  9869k     0   0:02:19  0:01:13  0:01:06  8973k
 52  1348M  52 714.0M   0     0  9869k     0   0:02:19  0:01:14  0:01:05  9042k
 53  1348M  53 721.8M   0     0  9845k     0   0:02:20  0:01:15  0:01:05  8841k
 54  1348M  54 732.5M   0     0  9860k     0   0:02:20  0:01:16  0:01:04  9215k
 54  1348M  54 741.5M   0     0  9851k     0   0:02:20  0:01:17  0:01:03  9197k
 55  1348M  55 751.2M   0     0  9852k     0   0:02:20  0:01:18  0:01:02  9610k
 56  1348M  56 760.4M   0     0  9846k     0   0:02:20  0:01:19  0:01:01  9511k
 57  1348M  57 771.6M   0     0  9867k     0   0:02:19  0:01:20  0:00:59 10195k
 58  1348M  58 783.3M   0     0  9893k     0   0:02:19  0:01:21  0:00:58 10387k
 58  1348M  58 792.3M   0     0  9885k     0   0:02:19  0:01:22  0:00:57 10413k
 59  1348M  59 802.4M   0     0  9890k     0   0:02:19  0:01:23  0:00:56 10473k
 60  1348M  60 811.7M   0     0  9886k     0   0:02:19  0:01:24  0:00:55 10504k
 60  1348M  60 818.7M   0     0  9854k     0   0:02:20  0:01:25  0:00:55  9657k
 61  1348M  61 829.6M   0     0  9870k     0   0:02:19  0:01:26  0:00:53  9493k
 62  1348M  62 838.6M   0     0  9862k     0   0:02:20  0:01:27  0:00:53  9484k
 62  1348M  62 847.7M   0     0  9856k     0   0:02:20  0:01:28  0:00:52  9292k
 63  1348M  63 856.7M   0     0  9848k     0   0:02:20  0:01:29  0:00:51  9218k
 64  1348M  64 865.5M   0     0  9839k     0   0:02:20  0:01:30  0:00:50  9576k
 64  1348M  64 874.5M   0     0  9832k     0   0:02:20  0:01:31  0:00:49  9190k
 65  1348M  65 883.9M   0     0  9830k     0   0:02:20  0:01:32  0:00:48  9260k
 66  1348M  66 895.0M   0     0  9847k     0   0:02:20  0:01:33  0:00:47  9684k
 67  1348M  67 904.5M   0     0  9845k     0   0:02:20  0:01:34  0:00:46  9794k
 67  1348M  67 911.0M   0     0  9812k     0   0:02:20  0:01:35  0:00:45  9319k
 68  1348M  68 920.1M   0     0  9807k     0   0:02:20  0:01:36  0:00:44  9343k
 68  1348M  68 929.6M   0     0  9806k     0   0:02:20  0:01:37  0:00:43  9377k
 69  1348M  69 938.7M   0     0  9800k     0   0:02:20  0:01:38  0:00:42  8940k
 70  1348M  70 947.6M   0     0  9794k     0   0:02:21  0:01:39  0:00:42  8831k
 70  1348M  70 956.4M   0     0  9785k     0   0:02:21  0:01:40  0:00:41  9289k
 71  1348M  71 966.3M   0     0  9789k     0   0:02:21  0:01:41  0:00:40  9448k
 72  1348M  72 976.6M   0     0  9797k     0   0:02:20  0:01:42  0:00:38  9614k
 73  1348M  73 986.9M   0     0  9804k     0   0:02:20  0:01:43  0:00:37  9882k
 73  1348M  73 996.8M   0     0  9808k     0   0:02:20  0:01:44  0:00:36 10075k
 74  1348M  74  1005M   0     0  9800k     0   0:02:20  0:01:45  0:00:35 10097k
 75  1348M  75  1014M   0     0  9796k     0   0:02:20  0:01:46  0:00:34  9945k
 75  1348M  75  1023M   0     0  9792k     0   0:02:21  0:01:47  0:00:34  9686k
 76  1348M  76  1033M   0     0  9790k     0   0:02:21  0:01:48  0:00:33  9497k
 77  1348M  77  1042M   0     0  9790k     0   0:02:21  0:01:49  0:00:32  9435k
 78  1348M  78  1052M   0     0  9791k     0   0:02:21  0:01:50  0:00:31  9605k
 78  1348M  78  1063M   0     0  9805k     0   0:02:20  0:01:51  0:00:29  9986k
 79  1348M  79  1077M   0     0  9842k     0   0:02:20  0:01:52  0:00:28 10926k
 80  1348M  80  1090M   0     0  9877k     0   0:02:19  0:01:53  0:00:26 11760k
 81  1348M  81  1104M   0     0  9910k     0   0:02:19  0:01:54  0:00:25 12509k
 82  1348M  82  1117M   0     0  9941k     0   0:02:18  0:01:55  0:00:23 13243k
 83  1348M  83  1129M   0     0  9968k     0   0:02:18  0:01:56  0:00:22 13593k
 84  1348M  84  1138M   0     0  9960k     0   0:02:18  0:01:57  0:00:21 12595k
 85  1348M  85  1148M   0     0  9958k     0   0:02:18  0:01:58  0:00:20 11793k
 85  1348M  85  1158M   0     0  9961k     0   0:02:18  0:01:59  0:00:19 11134k
 86  1348M  86  1169M   0     0  9974k     0   0:02:18  0:02:00  0:00:18 10728k
 87  1348M  87  1180M   0     0  9982k     0   0:02:18  0:02:01  0:00:17 10317k
 88  1348M  88  1192M   0     0 10005k     0   0:02:18  0:02:02  0:00:16 11056k
 89  1348M  89  1206M   0     0 10036k     0   0:02:17  0:02:03  0:00:14 11870k
 90  1348M  90  1219M   0     0 10066k     0   0:02:17  0:02:04  0:00:13 12569k
 91  1348M  91  1232M   0     0 10091k     0   0:02:16  0:02:05  0:00:11 12889k
 92  1348M  92  1245M   0     0 10115k     0   0:02:16  0:02:06  0:00:10 13324k
 93  1348M  93  1255M   0     0 10119k     0   0:02:16  0:02:07  0:00:09 12907k
 93  1348M  93  1267M   0     0 10130k     0   0:02:16  0:02:08  0:00:08 12440k
 94  1348M  94  1276M   0     0 10124k     0   0:02:16  0:02:09  0:00:07 11561k
 95  1348M  95  1287M   0     0 10139k     0   0:02:16  0:02:10  0:00:06 11335k
 96  1348M  96  1301M   0     0 10165k     0   0:02:15  0:02:11  0:00:04 11427k
 97  1348M  97  1314M   0     0 10192k     0   0:02:15  0:02:12  0:00:03 12044k
 98  1348M  98  1327M   0     0 10218k     0   0:02:15  0:02:13  0:00:02 12474k
 99  1348M  99  1341M   0     0 10246k     0   0:02:14  0:02:14 --:--:-- 13392k
100  1348M 100  1348M   0     0 10259k     0   0:02:14  0:02:14 --:--:-- 13693k
  Building bootstrap from /build/dotnet-core/src/dotnet/prereqs/packages/archive/
  Extracting PackageVersions.props from /build/dotnet-core/src/dotnet/prereqs/packages/archive/Private.SourceBuilt.Artifacts.10.0.100-rc.2.25502.107.centos.10-x64.tar.gz

Welcome to .NET 10.0!
---------------------
SDK Version: 10.0.100-rc.2.25502.107

Telemetry
---------
The .NET tools collect usage data in order to help us improve your experience. It is collected by Microsoft and shared with the community. You can opt-out of telemetry by setting the DOTNET_CLI_TELEMETRY_OPTOUT environment variable to '1' or 'true' using your favorite shell.

Read more about .NET CLI Tools telemetry: https://aka.ms/dotnet-cli-telemetry

----------------
Installed an ASP.NET Core HTTPS development certificate.
To trust the certificate, run 'dotnet dev-certs https --trust'
Learn about HTTPS: https://aka.ms/dotnet-https

----------------
Write your first app: https://aka.ms/dotnet-hello-world
Find out what's new: https://aka.ms/dotnet-whats-new
Explore documentation: https://aka.ms/dotnet-docs
Report issues and find source on GitHub: https://github.com/dotnet/core
Use 'dotnet --help' to see available commands or visit: https://aka.ms/dotnet-cli
--------------------------------------------------------------------------------------

  Determining projects to restore...
  Restored /build/dotnet-core/src/dotnet/artifacts/prep-bootstrap/buildBootstrapPreviouslySB.csproj (in 20.31 sec).
    Unpacking existing tarball from /build/dotnet-core/src/dotnet/prereqs/packages/archive/Private.SourceBuilt.Artifacts.10.0.100-rc.2.25502.107.centos.10-x64.tar.gz
    Deleting existing tarball: /build/dotnet-core/src/dotnet/prereqs/packages/archive/Private.SourceBuilt.Artifacts.10.0.100-rc.2.25502.107.centos.10-x64.tar.gz
    Replacing restored files in /build/dotnet-core/src/dotnet/artifacts/prep-bootstrap/artifacts/unpacked/
    Repacking tarball to /build/dotnet-core/src/dotnet/prereqs/packages/archive/Private.SourceBuilt.Artifacts.Bootstrap.tar.gz
  No prebuilts found to download...
  Extracting previously source-built to /tmp/tmp.C2XcWc4cfr
  Unpacking Private.SourceBuilt.Artifacts.*.tar.gz into /tmp/tmp.C2XcWc4cfr
Initializing source-only toolset...
NuGet packages cache: '/build/dotnet-core/src/dotnet/.packages/'
Found bootstrap versions: SDK 10.0.100-rc.2.25502.107, Arcade 10.0.0-beta.25502.107, NoTargets 3.7.0 and Traversal 3.4.0
Shutting down MSBuild server...
MSBuild server shut down successfully.

  Determining projects to restore...
  Restored /build/dotnet-core/src/dotnet/eng/tools/tasks/Microsoft.DotNet.UnifiedBuild.MSBuildSdkResolver/Microsoft.DotNet.UnifiedBuild.MSBuildSdkResolver.csproj (in 181 ms).
  Microsoft.DotNet.UnifiedBuild.MSBuildSdkResolver -> /build/dotnet-core/src/dotnet/artifacts/bin/Microsoft.DotNet.UnifiedBuild.MSBuildSdkResolver/Release/Microsoft.DotNet.UnifiedBuild.MSBuildSdkResolver.dll

Build succeeded.
    0 Warning(s)
    0 Error(s)

Time Elapsed 00:00:05.58
Shutting down MSBuild server...
MSBuild server shut down successfully.
Source-only toolset initialization complete

  Determining projects to restore...
  Restored /build/dotnet-core/src/dotnet/eng/init-detect-binaries.proj (in 63 ms).
  Restored /build/dotnet-core/src/dotnet/eng/tools/BinaryToolKit/BinaryToolKit.csproj (in 233 ms).
  BinaryToolKit -> /build/dotnet-core/src/dotnet/artifacts/bin/BinaryToolKit/Release/BinaryToolKit.dll
  Starting binary tool at 11/22/2025 22:23:36 in Clean mode
  Detecting binaries in '/build/dotnet-core/src/dotnet' not listed in '/build/dotnet-core/src/dotnet/eng/allowed-sb-binaries.txt'...
      Updated allowed binaries file 'allowed-sb-binaries.txt' written to '/build/dotnet-core/src/dotnet/artifacts/log/Release/binary-report/Updatedallowed-sb-binaries.txt'
  Finished binary detection.
  Removing binaries from '/build/dotnet-core/src/dotnet'...
  Finished binary removal. Removed 743 binaries.
  Finished all binary tasks. Took 10.3925035 seconds.

Build succeeded.
    0 Warning(s)
    0 Error(s)

Time Elapsed 00:00:11.77
+ set +x

dotnet-core-10.0.0.sdk100-1-x86_64-build.log
(first instance appears to be)

  [22:25:25.30] Building arcade...done
  New artifact(s) after building arcade:
    -> Microsoft.Arcade.Common/10.0.0-dev

Offline

#10 2025-11-22 23:54:07

seth
Member
From: Don't DM me only for attention
Registered: 2012-09-03
Posts: 71,512

Re: Updating dotnet packages

trace gets dropped by the nested interpreter roll
However just

Installing .NET SDK 10.0.100-rc.2.25502.107
Downloading 'https://builds.dotnet.microsoft.com/dotnet/scripts/v1/dotnet-install.sh'
…
NuGet packages cache: '/build/dotnet-core/src/dotnet/.packages/'
Found bootstrap versions: SDK 10.0.100-rc.2.25502.107, Arcade 10.0.0-beta.25502.107, NoTargets 3.7.0 and Traversal 3.4.0

looks overly suspicious
https://github.com/dotnet/dotnet/tree/v … .25502.107

https://github.com/dotnet/dotnet/compar … .v10.0.100 rc.2.25502.107 is from october 2nd, 10.0.100 from october 24th

Showing 2,025 changed files with 155,573 additions and 26,346 deletions

Where's the old version coming from?

https://github.com/dotnet/dotnet/blob/c … ld.sh#L215

expectedSdkVersion=$(GetXmlPropertyValue "PrivateSourceBuiltSdkVersion" "$REPO_ROOT/eng/Versions.props")
if [ "$installDotnet" == true ] && [ -d "$REPO_ROOT/.dotnet" ]; then
  installedVersions=$("$REPO_ROOT/.dotnet/dotnet" --list-sdks | awk '{print $1}')
  if grep -qx "$expectedSdkVersion" <<< "${installedVersions[*]}"; then
    echo "  Skipping SDK installation - version $expectedSdkVersion detected"
    installDotnet=false
  fi
fi

# Check for the version of dotnet to install
if [ "$installDotnet" == true ]; then
  echo "  Installing .NET SDK $expectedSdkVersion"
  use_installed_dotnet_cli=false
  (source ./eng/common/tools.sh && InitializeDotNetCli true)
fi

https://github.com/dotnet/dotnet/blob/m … ions.props
https://github.com/dotnet/dotnet/pull/3056
https://github.com/dotnet/dotnet/pull/3 … 39e370a4f2 shows a wild mix of versions?? WTF?

Edit: someone else figured, https://github.com/dotnet/dotnet/issues/3507

Last edited by seth (2025-11-22 23:54:37)

Offline

#11 2025-11-23 14:43:52

WorMzy
Administrator
From: Scotland
Registered: 2010-06-16
Posts: 13,178
Website

Re: Updating dotnet packages

Mod note: split from https://bbs.archlinux.org/viewtopic.php?id=310301 on request


Sakura:-
Mobo: MSI MAG X570S TORPEDO MAX // Processor: AMD Ryzen 9 5950X @4.9GHz // GFX: AMD Radeon RX 5700 XT // RAM: 32GB (4x 8GB) Corsair DDR4 (@ 3000MHz) // Storage: 1x 3TB HDD, 6x 1TB SSD, 2x 120GB SSD, 1x 275GB M2 SSD

Making lemonade from lemons since 2015.

Offline

Board footer

Powered by FluxBB