From nobody Tue Feb 17 22:57:45 2026 X-Original-To: freebsd-pkg@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4fFw5y6X73z6SDbv; Tue, 17 Feb 2026 22:57:58 +0000 (UTC) (envelope-from vermaden@interia.pl) Received: from smtpo49.interia.pl (smtpo49.interia.pl [217.74.67.49]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-SHA256 (128/128 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4fFw5y30Cwz4H3Q; Tue, 17 Feb 2026 22:57:58 +0000 (UTC) (envelope-from vermaden@interia.pl) Authentication-Results: mx1.freebsd.org; none Date: Tue, 17 Feb 2026 23:57:45 +0100 From: vermaden Subject: Re: debugging 15.0-RELEASE kernel on 15.0p3? To: Colin Percival , Alan Somers , Michael W. Lucas Cc: "stable@freebsd.org" , freebsd-pkg@freebsd.org X-Mailer: interia.pl/pf09 In-Reply-To: <0100019c6d403fd1-da0238e5-482d-4425-831a-e07fc73d1edc-000000@email.amazonses.com> References: <0100019c6d403fd1-da0238e5-482d-4425-831a-e07fc73d1edc-000000@email.amazonses.com> X-Originating-IP: 45.148.42.20 Message-Id: List-Id: Binary package management and package tools discussion List-Archive: https://lists.freebsd.org/archives/freebsd-pkg List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-pkg@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=interia.pl; s=dk; t=1771369070; bh=5q7+C62cYQYkKRd4QrMtI8CHe5WkcOpdp8tzwC1JI5o=; h=Date:From:Subject:To:Message-Id:MIME-Version:Content-Type; b=SgilDJNZlcn9dJCQKi8roBuwQ9RETKc7QWvMnjtn+j9O8XhRySBMw1GkMC5mqmuyB 5mLmpl5CM31jDqu6nSJdHlcK0lC4i+vzTa19dBFOXvm5bcBgMedn8fJ44XRTWiDl5k fuxXroKC3rYLW6PKqzvi9X1WuPtUPFnkW+XE8Eug= X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[]; ASN(0.00)[asn:16138, ipnet:217.74.64.0/22, country:PL] X-Rspamd-Queue-Id: 4fFw5y30Cwz4H3Q X-Spamd-Bar: ---- Hi, > pkg: No SRV record found for the repo 'FreeBSD-base' Generally this switch helps to overcome that (if its not DNS issue): - url: "pkg+https://pkg.FreeBSD.org/${ABI}/base_release_${VERSION_MINOR}", + url: "https://pkg.FreeBSD.org/${ABI}/base_release_${VERSION_MINOR}", - mirror_type: "srv", + mirror_type: "none", Details here: - https://vermaden.wordpress.com/2026/01/07/freebsd-and-poudriere-in-high-s= ecurity-environments/ > The older packages are actually still there, but there's no way for you t= o find them. I would consider enabling 'dirlisting' for all pkg(8) related repositories = ... this 'blindness' does not help - it has been reported many times that h= ow many 'workarounds' one needs to do to manually fetch needed pkg(8) packa= ge. Regards, vermaden Temat: Re: debugging 15.0-RELEASE kernel on 15.0p3? Data: 2026-02-17 21:17 Nadawca: "Colin Percival" <cperciva@tarsnap.com> Adresat: "Alan Somers" <asomers@freebsd.org>; "Michael W. Lucas" <mwl= @mwl.io>;=20 DW: stable@freebsd.org;=20 >=20 >> On 2/17/26 11:41, Alan Somers wrote: >> On Tue, Feb 17, 2026 at 12:37=E2=80=AFPM Michael W. Lucas=20 wrote: >>> This host didn't have kernel debug symbols. I went to install them and >>> discovered my host needed updates. Thoughtlessly, I grabbed the new >>> kernel and the new symbols. >>> >>> Oops. You can't debug a 15.0 kernel on 15.0p3. >>> >>> bucket/var/crash;kgdb -n 0 >>> kgdb: couldn't find a suitable kernel image >>> >>> I have a 15.0 boot environment I could boot into, if there's a way to >>> install the debugging symbols? Or is there a way to pull the old >>> kernel and debug symbols down on the current BE? >>> >>> On dch's advice I tried setting the pkg.conf URL: >>> url: >>> "pkg+https://cloudfront.aws.pkgbase.freebsd.org/FreeBSD:15:amd64/base_relea= se_ >>> 0/" >>> but got: >>> pkg: No SRV record found for the repo 'FreeBSD-base' >=20 > That isn't going to work because pkg+https says "look up SRV records" and the > cloudfront.aws.pkgbase.freebsd.org endpoint is *what the SRV record points > at*. You could have used pkg+https://pkg.freebsd.org/, but that wasn't going > to work anyway since the repo will give you the latest packages (aka the -p3 > kernel). >=20 > The older packages are actually still there, but there's no way for you to > find them. >=20 >> You can probably install the symbols from the DVD image. They're in >> the kernel-dbg.txz dist set. That should work for you, since your >> crash happened in 15.0. But the same technique wouldn't work if you >> had crashed at, say, 15.0-p1. >=20 > The DVD image is the way to go. Either from kernel-dbg.txz or from the > pkgbase repo on the DVD image. But as Alan notes, this only works because > you crashed on the original release. >=20 > We should probably consider creating a separate stash of kernel debug packages > so people can fetch a not-most-recent version if needed. I never thought > about this until now. >=20 > Oh, a third option is to boot up an EC2 15.0-RELEASE-p1 image ("base" or > "cloud-init"; "small" doesn't have debug symbols). But I'm guessing you'd > prefer to look at your panic locally. >=20 > --=20 > Colin Percival > FreeBSD Release Engineering Lead & EC2 platform maintainer > Founder, Tarsnap | www.tarsnap.com | Online backups for the truly paranoid >=20 >=20 >=20 >=20 From nobody Thu Feb 19 23:48:01 2026 X-Original-To: pkg@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4fH96n16lrz6Sgny for ; Thu, 19 Feb 2026 23:48:01 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R12" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 4fH96n0Qhrz4LGX for ; Thu, 19 Feb 2026 23:48:01 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=freebsd.org; s=dkim; t=1771544881; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=KaPdcNyDHks1+zCuY3XXRzoNL80JbR9SsZh9DNqVx8A=; b=Ju+Ha44Pq4wLrji+UyAAypKb4OwGgnJwCPiDjyPn2bf0X3Ssit8OXBzclL+RaZgK618dEi qkefptDcCPFLhCWXZIFzgpe9ITorRpkbW0y88fODPNM8Lc6v5AwXTcGyvEE5BS1i9fAbxe V6MIA9mYwyIKxD7E0ZFz7m1wf9zm0H44JCbb9RghscMHj+2l/09KXb79OkBM4I65M+p0HS eaK+3/yQGGuMozVU4VII4UGUtjlP2yfYAZZqY3nniUGGemr95gXJvv8ZwN34cYSElhJ0Cc kb3Bp5Uoyo7MxVHtfq7yLn5XzgTJSUalsgEKUYQYQd14ifb7qqoV6g4LS9IjrQ== ARC-Seal: i=1; s=dkim; d=freebsd.org; t=1771544881; a=rsa-sha256; cv=none; b=ay3mb6/oe9nes0op+1xauCEk+7A6H/1sgp7xpiA3OAA0qTNgT206L1/wkyhXU4aTJ5qk9n bf/o/Dt9SMk7UZLxu5fh7hAcDxvjx1SzeeQNQSc499o8VOSG3IT5I7I4wkffxm7wjcIZA2 aZvhII0jrxqCiZTZV0z6Fqw8pvsb9ICfFUnw44+z0Yv4/rIfnq8FcB17QoCvbEucRnyEST iVEO1wHy0yMelj8dAajKmMVzVQ9Lr+c7A74TIGLPjg0+5n14bAs0RsIQRXOjWnw8y3FsiV Nzr6w4GgvWNr6IOUFtaCkHQPwvMdEFGKYUAGysblHsec/KBc0+TleT1/toZpDg== ARC-Authentication-Results: i=1; mx1.freebsd.org; none ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=freebsd.org; s=dkim; t=1771544881; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=KaPdcNyDHks1+zCuY3XXRzoNL80JbR9SsZh9DNqVx8A=; b=rLFCF67XLzzh7CmbayjGJ+WcRKZS6cl0SABEslFK7bPpFzl/00mV268h2IMhrK7eNhmAEc Ev0K6tPCHrsI7fxNym5S4QbO36fgKZzI3Bip/Zs7ChB3sCeRrSLgfIe4BOhgX6kXCtRldB QHGwGpmncWqLBufEFwBKSNu0NUgJrCMXzAOHs/xrimsaN+jk4A5zzgLuCxnBmPXn/JN5uN jrcl9yc10Q4bX2CYnMC1nbP14cjFXbnugYcdPPbWa/OKog4NcE/o1OQYf8DzLmcmdRvHCS cYSsxR5iB9YiLR+M0y6Th3JTT9xTUrm5LPgSEH9OKk0p4YsnznmbcyNs+zNjYw== Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2610:1c1:1:606c::50:1d]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4fH96m72zCz13v8 for ; Thu, 19 Feb 2026 23:48:00 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.5]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id 61JNm0Uo030319 for ; Thu, 19 Feb 2026 23:48:00 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id 61JNm0ti030318 for pkg@FreeBSD.org; Thu, 19 Feb 2026 23:48:00 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: pkg@FreeBSD.org Subject: [Bug 293297] PkgBase: FreeBSD-zfs-dev libzfs.h header is useless Date: Thu, 19 Feb 2026 23:48:01 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: Unspecified X-Bugzilla-Keywords: pkgbase X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: pkg@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords assigned_to Message-ID: In-Reply-To: References: Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="UTF-8" X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated List-Id: Binary package management and package tools discussion List-Archive: https://lists.freebsd.org/archives/freebsd-pkg List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-pkg@FreeBSD.org MIME-Version: 1.0 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D293297 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |pkgbase Assignee|bugs@FreeBSD.org |pkg@FreeBSD.org --=20 You are receiving this mail because: You are the assignee for the bug.= From nobody Fri Feb 20 00:29:46 2026 X-Original-To: pkg@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4fHB2y4nB8z6SkQG for ; Fri, 20 Feb 2026 00:29:46 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R12" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 4fHB2y47D6z4Qjl for ; Fri, 20 Feb 2026 00:29:46 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=freebsd.org; s=dkim; t=1771547386; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=eVLHg3WjP3WfMzCKbWsbK8ysGbi+23hMnrsjeb/yDpY=; b=dxPhuSMzPJ39ZOEEFVzIuzjIm7nrR1a2tEAZ3UICG7WeXWiSJ4BPWUF05vymBxUS8V5Q64 mi76sIwt/tuCKWuIV3X8EwpanW52KnwICdWb2T+OA22p2ms/6t5a6tOBeKqlEHWD0TCSJI EaQemQfcDZ+SMNZgVqLLQGuwuogjSBUN1eum4J4z2deR1LGLUHF2+QF5e5wFBnCx/8gNLE PqsASeS1SqxVbeExbAe4nJKshYLIlrPqwjAzTEqDIoChBrfdCzkHvL5lyKBrFK2i7N1/i/ hxF+hUF8HSADSFfp5cojqVpPHvfrfeEOcuBgBcbwQ+t9cTQZlSJ/CHE5NMB67A== ARC-Seal: i=1; s=dkim; d=freebsd.org; t=1771547386; a=rsa-sha256; cv=none; b=DxxvbsTOOHj36ipBg13eqFmr2gT3OD/4/VC+R/wZw/t2E3Cnpl3EtRupr9AkfUCeBu6mSU OCF1JWTQQ387Hpc9RmrBIKbtenAkPonRjr5gY3zxPWmiSDLZl1SXIqCO/LwNMeknHAeEG/ KFdjCAlC6iHniE4RBwHeJIMGwWUBKFiE98VIExlRnIsKbdoOvIaztkLMCvAIAQqGpnHIAt CfpOG62ztrmQgZErNgEC8w6tAl5ysQWNb0xtHwWvpwML0ug5Rm/6Tb/cP4z0aDdGqa2EwN bHQFlmtn34o9Pxy7v3TSybvCCoBdUuY9m2VKaaB+QHpIX5mu/4Lt5Tg2PY0gQw== ARC-Authentication-Results: i=1; mx1.freebsd.org; none ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=freebsd.org; s=dkim; t=1771547386; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=eVLHg3WjP3WfMzCKbWsbK8ysGbi+23hMnrsjeb/yDpY=; b=fSUg3QLLCxTLKxyEd3IgA0mscaTZJwy/5n48jsl0Lp2kV2+1qJvzOS4Z+k3kQDiC4D2h++ T5vgdxVQTDSC8e1uWmnwEWAmjbAQ8G616D/92LUzxEhGq6CnfCQ8IA6OIpiFaPYYPFY1C0 pupWFjzgp4tl3T3gNl8+hDCO8qCdcZeRc3rL1c/tf+vZy4wMf6xHlYYvkPvGdB/ZZBGIcy S9x2AheOAZyyokdgHlRprIc2iShh3H8MTwstQGZ9lDquCxi0DEcVJaMMnwqF0EJcCMmSvu 4CjoGZ/dCnd+Rwa8AKCo9Cp0obLFj9ds1pyBKwXFg2IxZfNd1/dRyzZce4eJLA== Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2610:1c1:1:606c::50:1d]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4fHB2y3Qy3z14QQ for ; Fri, 20 Feb 2026 00:29:46 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.5]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id 61K0Tklw005321 for ; Fri, 20 Feb 2026 00:29:46 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id 61K0Tk3J005319 for pkg@FreeBSD.org; Fri, 20 Feb 2026 00:29:46 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: pkg@FreeBSD.org Subject: [Bug 293297] PkgBase: FreeBSD-zfs-dev libzfs.h header is useless Date: Fri, 20 Feb 2026 00:29:46 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: Unspecified X-Bugzilla-Keywords: pkgbase X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: ivy@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: pkg@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="UTF-8" X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated List-Id: Binary package management and package tools discussion List-Archive: https://lists.freebsd.org/archives/freebsd-pkg List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-pkg@FreeBSD.org MIME-Version: 1.0 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D293297 Lexi Winter changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |asomers@FreeBSD.org, | |ivy@FreeBSD.org --- Comment #1 from Lexi Winter --- i don't think this is a pkgbase issue: pkgbase has no influence over which files are installed as part of "world", it simply divides those files into packages. that means if libzfs.h is installed, we have to package it somewhere, and if libshare.h or libzfs.pc aren't installed, we can't conjure them up out of nowhere. both of those things need to be fixed in ZFS first (if appropriat= e), then pkgbase should automatically pick up the changes. adding asomers@ since i believe he knows about libzfs. --=20 You are receiving this mail because: You are the assignee for the bug.= From nobody Fri Feb 20 01:11:54 2026 X-Original-To: pkg@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4fHBzZ5TYJz6QL7x for ; Fri, 20 Feb 2026 01:11:54 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R12" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 4fHBzZ24gDz3F4l for ; Fri, 20 Feb 2026 01:11:54 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=freebsd.org; s=dkim; t=1771549914; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=s9UA146hTeUO5mMH2bWB4KDTHbARe9R2Zq1Br64A+io=; b=RDiyHoAB+BvIxg6B864rL/I5bjOkfG9NySuIUUeJO5V9+N2hN7CZYERoq6Kp2TEMkc+1Hr itYUGvXa9/sgxL5VynIIiyLcLhC1s/NifRmnaOFpoiVaJyB8lNEWMjlu236APrerIZVax6 fnp1qtl3NRfhOgqLIkPxQFV/rRbze5GdspLw43p7o1NGCOs23njhjp6d8Lc7/431z8n6pO TvvaWp8zs3SOovmEXXS5x4yZCDp03gMAZ8o74h7K8/BjtO4usGaib2hf3ehM240ehjgow0 2TiABBu/ojfoo/iyUHXdT3DQxKwtDGcf5Qf/Kn52834TF8HwPSgbxKSZwKzQqA== ARC-Seal: i=1; s=dkim; d=freebsd.org; t=1771549914; a=rsa-sha256; cv=none; b=JuechZ/KmAvSdgPl6TU2EMrAG19bixQIfOKaAEmqeffkc4mEcBdZ+3630ZDC63jduYguSH qZzGm+o6TuwccR4cwOeTn8wFydFqAlLo5cbOLELRQNj/gzam0UQuyAigdBWrI2K+VpDTis o27PofriR1RLmErDsNBYfMcdqmzk+B4fyV+OF/zp7K5DFB24wztZTBNY8j8Ytz6GzlSSda W5p3mxREz8j8PbFhnkuwJ8x1tEMbLNxXZ1kJTQFrD+mHLy5p1tpoo54V3Cv0sEVpD28Rcj nbY/QpgU57x8FJPcuyGINfSasNpddbLhW7k7CNXtBYpUzGOFnSrd5gz1gigwJw== ARC-Authentication-Results: i=1; mx1.freebsd.org; none ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=freebsd.org; s=dkim; t=1771549914; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=s9UA146hTeUO5mMH2bWB4KDTHbARe9R2Zq1Br64A+io=; b=n/gO9f30I9ReHZCkVT1wjuv6SNDLl7ZyWs6C1Kf5N+ooGsYFoGqspwPlRGrePEUnkAPgGR RrIjnwelpsbz535+FN5CnQztM4iQHxq3Fwy9iCygeS9zoUKFyBFb5/lWZhiO4oLBKcGBGB 6PBs2Egmp0B4L6bk/rZkbaFHkwQ67mENt7gIVSH4fLEjU4b4HFZAf1bamH0/E4IdS5tQxv LhI1DmDOwAC1cC1c3X95Nzssxb716I8fSAJo0+I7H288HkQsCj/q4HqnFbeITb7iqfkTDI Bcyk5YB1Tjkd1DccgHypX3+crBj94DY+1+an9lmdmqx0Ss7ouubwyqLWmWtGpg== Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2610:1c1:1:606c::50:1d]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4fHBzZ1WM3z15f3 for ; Fri, 20 Feb 2026 01:11:54 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.5]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id 61K1BsWX081291 for ; Fri, 20 Feb 2026 01:11:54 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id 61K1Bs74081290 for pkg@FreeBSD.org; Fri, 20 Feb 2026 01:11:54 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: pkg@FreeBSD.org Subject: [Bug 293297] PkgBase: FreeBSD-zfs-dev libzfs.h header is useless Date: Fri, 20 Feb 2026 01:11:54 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: Unspecified X-Bugzilla-Keywords: pkgbase X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: asomers@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: fs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to Message-ID: In-Reply-To: References: Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="UTF-8" X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated List-Id: Binary package management and package tools discussion List-Archive: https://lists.freebsd.org/archives/freebsd-pkg List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-pkg@FreeBSD.org MIME-Version: 1.0 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D293297 Alan Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|pkg@FreeBSD.org |fs@FreeBSD.org --- Comment #2 from Alan Somers --- Looking at the history, libshare.h only appeared in 14.0. So probably the Makefiles weren't adjusted to install it at that time. And openzfs has del= eted libshare.h, so it won't be present any longer in 16.0 (and maybe not in 15.= 1, either). But there's still time to fix it for 14.4. What application are you trying to build that requires libzfs.h? --=20 You are receiving this mail because: You are the assignee for the bug.= From nobody Sun Feb 22 21:00:10 2026 X-Original-To: pkg@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4fJxFl0wfCz6S1gK for ; Sun, 22 Feb 2026 21:00:11 +0000 (UTC) (envelope-from bugzilla-noreply@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R12" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 4fJxFk5yqqz3PKL for ; Sun, 22 Feb 2026 21:00:10 +0000 (UTC) (envelope-from bugzilla-noreply@FreeBSD.org) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=freebsd.org; s=dkim; t=1771794010; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=wwNqe/zkXubRDFpFYK0l7RscMvTKpSzNq1F9kDgPlhI=; b=OFyUma4jQJU0UV+KVeNA6NWYc2ybwHZePmJqKr+KbcmqtoWcRev+4TCAxZRidVoUEyQtXB BcHHLP9gBMCEyYVWUCnm9JfK6JAtPsCKNJLxOFVyYSbcEcqbHP5PioBznCQ4E8/UDw4E1+ AjRWG7wNKmWebQwQMVilo7+SizIMBV3M73qJh3RG2XDqCZG0JubpV74AAiu4jNpRYwcUjF 2ZifHBIyvXe/LRyMNqdtwiGspMJRSgjG1wSvtG266VHBfDa/6QJzdNrsPAsHfz1RPx8sln uF2hJpdzS8C9AmpeI1yIy2SiaHj6WA3h37goqpGiALRBPUpPjm5CADWGwRYaYA== ARC-Seal: i=1; s=dkim; d=freebsd.org; t=1771794010; a=rsa-sha256; cv=none; b=B8DI6hOV+dIEMTfGoLVt96LmisrwgQwcN8vdqc8WNbAIvnNtmVfgJgZBhNhdKr2HHsseY/ 9fUi4Te7Tr31mUOg7Rl4mKhYEpp+4X+LRakTQQ3wSO0gtKpI6eQDc8XZjuqrDiXs7O9oj+ Iwen6rMgAIx3Qn4cSZ/GCm26K2RoLmPUDER8EWgiB4rsgvm5xnTaCZWoviarpwf8ozOnq0 ExJGr+bL+XZyp9B+jxzh2clFBHmr76xcDsNjFXS/0ie5j7YVT1chs24485SlBD352UqkBA d8c63NR6HHJpihH3QdaNb1YC/cjeNtVAWGTgvflD7W0ndi9/RGZCN/dn1ubRlg== ARC-Authentication-Results: i=1; mx1.freebsd.org; none ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=freebsd.org; s=dkim; t=1771794010; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=wwNqe/zkXubRDFpFYK0l7RscMvTKpSzNq1F9kDgPlhI=; b=VW+5f0Px0M6D7sVRf2ViXZKPe1LEPfokp75yGgPDOddC4R6Mj5h32c4w6EtT00FvW5QvyT qVkmzHwgYrd8f86xmNJt/VdferlP8VSIi0T1VVbab15SJXRDXiWf86Ui1QpJOhE0mUNY61 NnLgFY/l6GL/TmWxzwGPcFcqANHirTilWGTHu0mKFQqxX0RTX1iNnSs0xIUNd2tcsSRdqL gIj0GMsm9yILvJV41i49zES06u9zUZYz1eXn3+X0qFe/Yu+X5c2oz2km+zcTDyEvUV6pgt 6y9MQm7+n2yiJYMhE6hD1+PVyCxZk0AtJ73zPDZU4cdcuhAquvxaj0MVO9a/XA== Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2610:1c1:1:606c::50:1d]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4fJxFk5X8yz10h8 for ; Sun, 22 Feb 2026 21:00:10 +0000 (UTC) (envelope-from bugzilla-noreply@FreeBSD.org) Received: from kenobi.freebsd.org ([127.0.1.5]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id 61ML0ASO026085 for ; Sun, 22 Feb 2026 21:00:10 GMT (envelope-from bugzilla-noreply@FreeBSD.org) Received: (from bugzilla@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id 61ML0AN1026083 for pkg@FreeBSD.org; Sun, 22 Feb 2026 21:00:10 GMT (envelope-from bugzilla-noreply@FreeBSD.org) Message-Id: <202602222100.61ML0AN1026083@kenobi.freebsd.org> X-Authentication-Warning: kenobi.freebsd.org: bugzilla set sender to bugzilla-noreply@FreeBSD.org using -f From: bugzilla-noreply@FreeBSD.org To: pkg@FreeBSD.org Subject: Problem reports for pkg@FreeBSD.org that need special attention Date: Sun, 22 Feb 2026 21:00:10 +0000 List-Id: Binary package management and package tools discussion List-Archive: https://lists.freebsd.org/archives/freebsd-pkg List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-pkg@FreeBSD.org MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="17717940102.9FAC4a.23780" Content-Transfer-Encoding: 7bit --17717940102.9FAC4a.23780 Date: Sun, 22 Feb 2026 21:00:10 +0000 MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" To view an individual PR, use: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=(Bug Id). The following is a listing of current problems submitted by FreeBSD users, which need special attention. These represent problem reports covering all versions including experimental development code and obsolete releases. Status | Bug Id | Description ------------+-----------+--------------------------------------------------- Open | 220049 | ports-mgmt/pkg installs unneeded packages Open | 219036 | ports-mgmt/pkg: pkg confused, installs older ver New | 284263 | ports-mgmt/pkg: [1.21.3] --raw-format is broken w Open | 268296 | ports-mgmt/pkg: pip-audit regularly shows vulnera In Progress | 287989 | ports-mgmt/pkg: packages version recognizing erro New | 290829 | ports-mgmt/portmaster: removes directories preven Open | 264962 | ports-mgmt/pkg 1.18.2: 'pkg-static: pkg_checksum_ 7 problems total for which you should take action. --17717940102.9FAC4a.23780 Date: Sun, 22 Feb 2026 21:00:10 +0000 MIME-Version: 1.0 Content-Type: text/html; charset="UTF-8"
The following is a listing of current problems submitted by FreeBSD users,
which need special attention. These represent problem reports covering
all versions including experimental development code and obsolete releases.

Status      |    Bug Id | Description
------------+-----------+---------------------------------------------------
Open        |    220049 | ports-mgmt/pkg installs unneeded packages
Open        |    219036 | ports-mgmt/pkg:  pkg confused, installs older ver
New         |    284263 | ports-mgmt/pkg: [1.21.3] --raw-format is broken w
Open        |    268296 | ports-mgmt/pkg: pip-audit regularly shows vulnera
In Progress |    287989 | ports-mgmt/pkg: packages version recognizing erro
New         |    290829 | ports-mgmt/portmaster: removes directories preven
Open        |    264962 | ports-mgmt/pkg 1.18.2: 'pkg-static: pkg_checksum_

7 problems total for which you should take action.
--17717940102.9FAC4a.23780--