Re: stable/15 pkgs seems to be broken

From: void <void_at_f-m.fm>
Date: Tue, 14 Oct 2025 12:42:16 UTC
On Tue, Oct 14, 2025 at 12:42:01PM +0100, Lexi Winter wrote:
>void wrote in <aO42cqlFUAjpgF3a@int21h>:
>> stable/15 pkgs seems to be broken. Is this expected?
>
>> Updating FreeBSD repository catalogue...
>> pkg: packagesite URL error for pkg+https://pkg.FreeBSD.org/FreeBSD:15:amd64/latest/meta.conf -- pkg+:// implies SRV mirror type
>> pkg: packagesite URL error for pkg+https://pkg.FreeBSD.org/FreeBSD:15:amd64/latest/meta.txz -- pkg+:// implies SRV mirror type
>
>please show your pkg(8) repository configuration file(s) for this
>repository.

%  cat /etc/pkg/FreeBSD.conf 

FreeBSD: {
   url: "pkg+https://pkg.FreeBSD.org/${ABI}/latest",
   mirror_type: "srv",
   signature_type: "fingerprints",
   fingerprints: "/usr/share/keys/pkg",
   enabled: yes
}
FreeBSD-kmods: {
   url: "pkg+https://pkg.FreeBSD.org/${ABI}/kmods_latest",
   mirror_type: "srv",
   signature_type: "fingerprints",
   fingerprints: "/usr/share/keys/pkg",
   enabled: yes
}

poudriere.conf has the following:

# Set to always attempt to fetch packages or dependencies before building.
# XXX: This is subject to change
# Default: off; requires -b <branch> for bulk or testport.
PACKAGE_FETCH_BRANCH=latest

# The branch will be appended to the URL:
PACKAGE_FETCH_URL=pkg+https://pkg.FreeBSD.org/\${ABI}

--