From owner-freebsd-pkgbase@freebsd.org Tue Jul 26 20:05:02 2016 Return-Path: Delivered-To: freebsd-pkgbase@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5DC28BA5FC2 for ; Tue, 26 Jul 2016 20:05:02 +0000 (UTC) (envelope-from list_freebsd@bluerosetech.com) Received: from echo.brtsvcs.net (echo.brtsvcs.net [IPv6:2607:f740:c::4ae]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4D5FC1682 for ; Tue, 26 Jul 2016 20:05:02 +0000 (UTC) (envelope-from list_freebsd@bluerosetech.com) Received: from chombo.houseloki.net (unknown [IPv6:2601:1c2:1402:3a86:21c:c0ff:fe7f:96ee]) by echo.brtsvcs.net (Postfix) with ESMTPS id 2699F50004 for ; Tue, 26 Jul 2016 20:05:01 +0000 (UTC) Received: from [IPv6:2601:1c2:1402:3a86:c5ff:60f1:bd31:a4eb] (unknown [IPv6:2601:1c2:1402:3a86:c5ff:60f1:bd31:a4eb]) by chombo.houseloki.net (Postfix) with ESMTPSA id 3E3E61A21 for ; Tue, 26 Jul 2016 13:05:00 -0700 (PDT) To: freebsd-pkgbase@freebsd.org From: Mel Pilgrim Subject: amd64 vs. x86:64 architecture mismatch in FreeBSD-base repo Message-ID: <0295c3e9-a6ed-9081-ae3d-0668138289d3@bluerosetech.com> Date: Tue, 26 Jul 2016 13:04:59 -0700 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.2.0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-pkgbase@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: "Packaging the FreeBSD base system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Jul 2016 20:05:02 -0000 I'm trying out pkgbase, using the BETA2 release with src checked out at r303326 (current at the time of checkout). I've run the buildworld, buildkernel, and packages targets, and added the appropriate bits to /usr/local/etc/pkg/repos/FreeBSD-base.conf, but when I try to get the catalogue, I ran into a problem with ABI mismatches: # env ABI="FreeBSD:12:amd64" pkg update -r FreeBSD-base pkg: Warning: Major OS version upgrade detected. Running "pkg-static install -f pkg" recommended Updating FreeBSD-base repository catalogue... Fetching meta.txz: 100% 264 B 0.3kB/s 00:01 Fetching packagesite.txz: 100% 48 KiB 49.0kB/s 00:01 Processing entries: 0% pkg: wrong architecture: freebsd:12:x86:64 instead of FreeBSD:12:amd64 pkg: repository FreeBSD-base contains packages with wrong ABI: freebsd:12:x86:64 Processing entries: 100% Unable to update repository FreeBSD-base I fixed that problem by renaming the directory and repointing the "latest" symlink (why wasn't it relative?), but this seems like a bug where one part of the repo building code is using the running system's architecture, and another part is using the src tree's architecture. Why doesn't pkg treat these two labels as equivalent? From owner-freebsd-pkgbase@freebsd.org Wed Jul 27 06:38:09 2016 Return-Path: Delivered-To: freebsd-pkgbase@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EE633BA6DCF for ; Wed, 27 Jul 2016 06:38:09 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from smtp.infracaninophile.co.uk (smtp.infracaninophile.co.uk [IPv6:2001:8b0:151:1:c4ea:bd49:619b:6cb3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "smtp.infracaninophile.co.uk", Issuer "infracaninophile.co.uk" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 992941880 for ; Wed, 27 Jul 2016 06:38:09 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from liminal.local (liminal.infracaninophile.co.uk [IPv6:2001:8b0:151:1:3636:3bff:fed4:b0d6]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) (Authenticated sender: m.seaman@infracaninophile.co.uk) by smtp.infracaninophile.co.uk (Postfix) with ESMTPSA id 82CC684E3 for ; Wed, 27 Jul 2016 06:38:05 +0000 (UTC) Authentication-Results: smtp.infracaninophile.co.uk; dmarc=none header.from=FreeBSD.org Authentication-Results: smtp.infracaninophile.co.uk/82CC684E3; dkim=none; dkim-atps=neutral Subject: Re: amd64 vs. x86:64 architecture mismatch in FreeBSD-base repo To: freebsd-pkgbase@freebsd.org References: <0295c3e9-a6ed-9081-ae3d-0668138289d3@bluerosetech.com> From: Matthew Seaman Message-ID: <4793bae9-9346-300f-b331-96fb54f7d2a0@FreeBSD.org> Date: Wed, 27 Jul 2016 07:37:58 +0100 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:45.0) Gecko/20100101 Thunderbird/45.2.0 MIME-Version: 1.0 In-Reply-To: <0295c3e9-a6ed-9081-ae3d-0668138289d3@bluerosetech.com> Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="kFxI9SJSBEi1BfVcBpmEU3kw7w82BvnBh" X-Spam-Status: No, score=-1.2 required=5.0 tests=BAYES_00,SPF_SOFTFAIL autolearn=no autolearn_force=no version=3.4.1 X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on smtp.infracaninophile.co.uk X-BeenThere: freebsd-pkgbase@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: "Packaging the FreeBSD base system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Jul 2016 06:38:10 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --kFxI9SJSBEi1BfVcBpmEU3kw7w82BvnBh Content-Type: multipart/mixed; boundary="grwkEVoXRVoorP8nw1ajQ7nihM5MbDtIH" From: Matthew Seaman To: freebsd-pkgbase@freebsd.org Message-ID: <4793bae9-9346-300f-b331-96fb54f7d2a0@FreeBSD.org> Subject: Re: amd64 vs. x86:64 architecture mismatch in FreeBSD-base repo References: <0295c3e9-a6ed-9081-ae3d-0668138289d3@bluerosetech.com> In-Reply-To: <0295c3e9-a6ed-9081-ae3d-0668138289d3@bluerosetech.com> --grwkEVoXRVoorP8nw1ajQ7nihM5MbDtIH Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable On 26/07/2016 21:04, Mel Pilgrim wrote: > I'm trying out pkgbase, using the BETA2 release with src checked out at= > r303326 (current at the time of checkout). I've run the buildworld, > buildkernel, and packages targets, and added the appropriate bits to > /usr/local/etc/pkg/repos/FreeBSD-base.conf, but when I try to get the > catalogue, I ran into a problem with ABI mismatches: >=20 > # env ABI=3D"FreeBSD:12:amd64" pkg update -r FreeBSD-base > pkg: Warning: Major OS version upgrade detected. Running "pkg-static > install -f pkg" recommended > Updating FreeBSD-base repository catalogue... > Fetching meta.txz: 100% 264 B 0.3kB/s 00:01 > Fetching packagesite.txz: 100% 48 KiB 49.0kB/s 00:01 > Processing entries: 0% > pkg: wrong architecture: freebsd:12:x86:64 instead of FreeBSD:12:amd64 > pkg: repository FreeBSD-base contains packages with wrong ABI: > freebsd:12:x86:64 > Processing entries: 100% > Unable to update repository FreeBSD-base >=20 > I fixed that problem by renaming the directory and repointing the > "latest" symlink (why wasn't it relative?), but this seems like a bug > where one part of the repo building code is using the running system's > architecture, and another part is using the src tree's architecture. Wh= y > doesn't pkg treat these two labels as equivalent? Interesting. I've just seen exactly the same thing when trying to update my CURRENT VM. It's the transition from FreeBSD:11:amd64 to FreeBSD:12:amd64 which seems to be the root cause. The old 'freebsd:12:x86:64' ABI style is something that pkg(8) moved away from many years ago. It appears in the package metadata as 'arch': # pkg info -RF FreeBSD-lib-12.0.s20160727061717.txz | head -10 name: "FreeBSD-lib" origin: "base" version: "12.0.s20160727061717" comment: "lib package" maintainer: "re@FreeBSD.org" www: "https://www.FreeBSD.org" abi: "FreeBSD:12:amd64" arch: "freebsd:12:x86:64" <<<----*** prefix: "/" flatsize: 106186 which I believe is more significant for certain ARM and MIPS architectures: i386 and amd64 only have one architecture variant apiece. Still, curious about how to get over this major version number bump. Cheers, Matthew --grwkEVoXRVoorP8nw1ajQ7nihM5MbDtIH-- --kFxI9SJSBEi1BfVcBpmEU3kw7w82BvnBh Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- iQJ8BAEBCgBmBQJXmFbNXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ2NTNBNjhCOTEzQTRFNkNGM0UxRTEzMjZC QjIzQUY1MThFMUE0MDEzAAoJELsjr1GOGkATnXgP+QGAHeCItY4gt5HYo4iWvT/0 ZyxNHWg9qomgYO8X6qptODYpc2AT8w5USIIpyWb7QR5+CrQS5jfHtlNqGLCM3fIE zrhNJcvjx0ygdjVfcVh5lpjYHNZ47oPtsSHrsdMH+eFvHTzD+0tMgO4KqtWwbxzJ 1FlKwCBepFl6QSXK6bkspxpCzhpxGVSxaj5DgsYbgKZwXSMMuU45pg7O0lLHQ3M5 mAHxvgjpo4iVPTZPUQQu6ReFA1Mv+lqKoilyJD3sT/Bcu5fNC/WI4X2ydqsHPuHK kHX4NW7+dXJWny+UUi/0noFvfaFm537th9BLrPWRVbeTjF6/3dc+tQBFX7uab3lQ vI41s+YiVSAWKyhp9sMBcCfG+vOgUnY7eNUsmVsEdd7bi86wCEafw+oECab/JhU/ qP3wbJ7D6Efa1iFY2ptMZfizo1W/BZrKSgOxzXjtKhiCP0vSdD0ll6EXByw2qEs4 zxp7ETub/dGEBWY5xEsHTgsFnLpwnvhAH6yKPEgtET2F9QZ8Rip+J03gk5BuEoyL 82IOHeZ9XVlGVF73o8rB1qIRVR4JOGq9w35ByqrxHJe4x2f3Gd8yXY1xXVNSSQEM qZL1E+PxIymFtgBpUgj7AqEDsmSUEkikEyqtBPPv0DRQhpHmlzqxzdSCeiWIQ2TF AgrOVg5CA9X0JzMBjlxB =SwNE -----END PGP SIGNATURE----- --kFxI9SJSBEi1BfVcBpmEU3kw7w82BvnBh-- From owner-freebsd-pkgbase@freebsd.org Wed Jul 27 08:18:02 2016 Return-Path: Delivered-To: freebsd-pkgbase@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C4284BA50AB for ; Wed, 27 Jul 2016 08:18:02 +0000 (UTC) (envelope-from woodsb02@gmail.com) Received: from mail-wm0-x234.google.com (mail-wm0-x234.google.com [IPv6:2a00:1450:400c:c09::234]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5A377164F; Wed, 27 Jul 2016 08:18:02 +0000 (UTC) (envelope-from woodsb02@gmail.com) Received: by mail-wm0-x234.google.com with SMTP id q128so29508686wma.1; Wed, 27 Jul 2016 01:18:02 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc; bh=ChWt/8zw0zjUBvFdn0ImFhx702NXgy/CcCNdp1/JXw0=; b=qb8t9VBEoETTnpGSCZS3hzfLkinSv5HtuCboIwoY2M+SvfF3ELhBgN/wxYzvo4btTW juJROmuIAUuy8W03xI7/wKyGhJ2x8DpSmh/4CPkRCh7aAhYhsVG/KroSpz9H36GNKMej 9pl5ZO2YdparzxNNQd92pDKowZq1DY/fLQ4Y5RQMx+WywJLzEKg9f+s26tfS/PTLdQlj NBsLzsHCFfmf0geQZaU6fpP5Y9l4wmnWTc0a17LX7Q243YjBzpCZlGJf3lqSslWEEpfV tdPknFT26sWkEU0GL1AB7qpBSnIGwGggjDLxokJy60s7+3q++w9veWBprDlFAlGtGYK3 Q72A== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=ChWt/8zw0zjUBvFdn0ImFhx702NXgy/CcCNdp1/JXw0=; b=W38nSf/aMPCyvWF8rW5AHxeaIe0Iwmn6Hau6ht5M0id2kZAivA9j+WY27NrgvR0XGr mYlqwerYTB4GD2DxL/bq9hTphwDcf0cJj5G+jmNHdOessvbvL91bwctyff+Shw4qxp06 jZUn5CFUd9qwMxw2KGv5aHS1GMDWNgoS67gE0VYSXgSYBsGEJhsCQb+GbEgs830i1tm4 woAQ36RzZwqUNLirK/IAvhkLLobgMsazPckOBvMKF2nbzyZLLh04PfoZorPfT9dM/UJU Zm+MebI+lEUnYrZxyB+e/VltD5oKnEi8iNW3eQ04+gOLPYpqgSA0kR0mIhPkWD1S0Z33 mqhA== X-Gm-Message-State: AEkoous+SqN4bl52U4rVIWhljwkSHOI0GWU3aezqv/ta56Y03GFDxsC3KSk3HeX/J9uXHrP0z6RTlohgsvraDQ== X-Received: by 10.194.32.195 with SMTP id l3mr25636600wji.27.1469607480562; Wed, 27 Jul 2016 01:18:00 -0700 (PDT) MIME-Version: 1.0 Received: by 10.194.154.229 with HTTP; Wed, 27 Jul 2016 01:17:59 -0700 (PDT) In-Reply-To: <4793bae9-9346-300f-b331-96fb54f7d2a0@FreeBSD.org> References: <0295c3e9-a6ed-9081-ae3d-0668138289d3@bluerosetech.com> <4793bae9-9346-300f-b331-96fb54f7d2a0@FreeBSD.org> From: Ben Woods Date: Wed, 27 Jul 2016 16:17:59 +0800 Message-ID: Subject: Re: amd64 vs. x86:64 architecture mismatch in FreeBSD-base repo To: Matthew Seaman Cc: "freebsd-pkgbase@freebsd.org" Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.22 X-BeenThere: freebsd-pkgbase@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: "Packaging the FreeBSD base system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Jul 2016 08:18:02 -0000 On Wednesday, 27 July 2016, Matthew Seaman wrote: > > Interesting. I've just seen exactly the same thing when trying to > update my CURRENT VM. It's the transition from FreeBSD:11:amd64 to > FreeBSD:12:amd64 which seems to be the root cause. > > The old 'freebsd:12:x86:64' ABI style is something that pkg(8) moved > away from many years ago. It appears in the package metadata as 'arch': > > # pkg info -RF FreeBSD-lib-12.0.s20160727061717.txz | head -10 > name: "FreeBSD-lib" > origin: "base" > version: "12.0.s20160727061717" > comment: "lib package" > maintainer: "re@FreeBSD.org" > www: "https://www.FreeBSD.org" > abi: "FreeBSD:12:amd64" > arch: "freebsd:12:x86:64" <<<----*** > prefix: "/" > flatsize: 106186 > > which I believe is more significant for certain ARM and MIPS > architectures: i386 and amd64 only have one architecture variant apiece. > > Still, curious about how to get over this major version number bump. > > Cheers, > > Matthew > Hi Matthew, Please see right at the bottom of the PkgBase wiki page where I have explained how to get around the one time ABI bump during major upgrades. https://wiki.freebsd.org/PkgBase#Major_Version_Upgrades Regards, Ben -- -- From: Benjamin Woods woodsb02@gmail.com From owner-freebsd-pkgbase@freebsd.org Wed Jul 27 09:20:09 2016 Return-Path: Delivered-To: freebsd-pkgbase@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4F565BA662B for ; Wed, 27 Jul 2016 09:20:09 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from smtp.infracaninophile.co.uk (smtp.infracaninophile.co.uk [81.2.117.100]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "smtp.infracaninophile.co.uk", Issuer "infracaninophile.co.uk" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id C988F19D9 for ; Wed, 27 Jul 2016 09:20:08 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from ox-dell39.ox.adestra.com (unknown [85.199.232.226]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) (Authenticated sender: m.seaman@infracaninophile.co.uk) by smtp.infracaninophile.co.uk (Postfix) with ESMTPSA id CA5B98570; Wed, 27 Jul 2016 09:19:57 +0000 (UTC) Authentication-Results: smtp.infracaninophile.co.uk; dmarc=none header.from=FreeBSD.org Authentication-Results: smtp.infracaninophile.co.uk/CA5B98570; dkim=none; dkim-atps=neutral Subject: Re: amd64 vs. x86:64 architecture mismatch in FreeBSD-base repo To: Ben Woods References: <0295c3e9-a6ed-9081-ae3d-0668138289d3@bluerosetech.com> <4793bae9-9346-300f-b331-96fb54f7d2a0@FreeBSD.org> Cc: "freebsd-pkgbase@freebsd.org" From: Matthew Seaman Message-ID: Date: Wed, 27 Jul 2016 10:19:39 +0100 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:45.0) Gecko/20100101 Thunderbird/45.2.0 MIME-Version: 1.0 In-Reply-To: Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="Vq59DPQrXgdN4qimcJ2D6SwLA7K4LTGBL" X-Spam-Status: No, score=-0.4 required=5.0 tests=BAYES_00,RDNS_NONE, SPF_SOFTFAIL autolearn=no autolearn_force=no version=3.4.1 X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on smtp.infracaninophile.co.uk X-BeenThere: freebsd-pkgbase@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: "Packaging the FreeBSD base system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Jul 2016 09:20:09 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --Vq59DPQrXgdN4qimcJ2D6SwLA7K4LTGBL Content-Type: multipart/mixed; boundary="D3GUlPPh8fik2wmOBIm9wrspSq4gpx96m" From: Matthew Seaman To: Ben Woods Cc: "freebsd-pkgbase@freebsd.org" Message-ID: Subject: Re: amd64 vs. x86:64 architecture mismatch in FreeBSD-base repo References: <0295c3e9-a6ed-9081-ae3d-0668138289d3@bluerosetech.com> <4793bae9-9346-300f-b331-96fb54f7d2a0@FreeBSD.org> In-Reply-To: --D3GUlPPh8fik2wmOBIm9wrspSq4gpx96m Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable On 07/27/16 09:17, Ben Woods wrote: > On Wednesday, 27 July 2016, Matthew Seaman wrote:= >> >> Interesting. I've just seen exactly the same thing when trying to >> update my CURRENT VM. It's the transition from FreeBSD:11:amd64 to >> FreeBSD:12:amd64 which seems to be the root cause. >> >> The old 'freebsd:12:x86:64' ABI style is something that pkg(8) moved >> away from many years ago. It appears in the package metadata as 'arch= ': >> >> # pkg info -RF FreeBSD-lib-12.0.s20160727061717.txz | head -10 >> name: "FreeBSD-lib" >> origin: "base" >> version: "12.0.s20160727061717" >> comment: "lib package" >> maintainer: "re@FreeBSD.org" >> www: "https://www.FreeBSD.org" >> abi: "FreeBSD:12:amd64" >> arch: "freebsd:12:x86:64" <<<----*** >> prefix: "/" >> flatsize: 106186 >> >> which I believe is more significant for certain ARM and MIPS >> architectures: i386 and amd64 only have one architecture variant apiec= e. >> >> Still, curious about how to get over this major version number bump. >> >> Cheers, >> >> Matthew >> >=20 > Hi Matthew, >=20 > Please see right at the bottom of the PkgBase wiki page where I have > explained how to get around the one time ABI bump during major upgrades= =2E >=20 > https://wiki.freebsd.org/PkgBase#Major_Version_Upgrades >=20 > Regards, > Ben >=20 >=20 Hmmm... where essentially the command you propose is: # env ABI=3Dfreebsd:12:x86:64 pkg upgrade -r FreeBSD-base Unfortunately this doesn't work: codling:/home/matthew:# env ABI=3Dfreebsd:12:x86:64 pkg upgrade -r FreeBSD-base pkg: Warning: Major OS version upgrade detected. Running "pkg-static install -f pkg" recommended Updating FreeBSD-base repository catalogue... Repository FreeBSD-base has a wrong packagesite, need to re-create databa= se pkg: file:///usr/obj/usr/src/repo/freebsd:12:x86:64/latest/meta.txz: No such file or directory repository FreeBSD-base has no meta file, using default settings pkg: file:///usr/obj/usr/src/repo/freebsd:12:x86:64/latest/packagesite.txz: No such file or directory Unable to update repository FreeBSD-base All repositories are up-to-date. pkg: Repository FreeBSD-base cannot be opened. 'pkg update' required Checking for upgrades (0 candidates): 100% Processing candidates (0 candidates): 100% Checking integrity... done (0 conflicting) Your packages are up to date. 'freebsd:12:x86:64' is the old-style ABI format that went out in about pkg-1.5.x or pkg-1.6.x or so and is now known inside pkg(8) as ALTABI. codling:/home/matthew:# pkg -vv | grep ABI ABI =3D "FreeBSD:11:amd64"; ALTABI =3D "freebsd:11:x86:64"; The base repo directory is named using the new style ABI: codling:/home/matthew:# ls -la /usr/obj/usr/src/repo/ total 12 drwxr-xr-x 3 matthew wheel 512 Jul 27 07:14 ./ drwxr-xr-x 23 matthew wheel 512 Jul 26 17:43 ../ drwxr-xr-x 3 root wheel 512 Jul 27 07:32 FreeBSD:12:amd64/ Even so: codling:/home/matthew:# env ABI=3DFreeBSD:12:amd64 pkg upgrade -r FreeBSD= -base pkg: Warning: Major OS version upgrade detected. Running "pkg-static install -f pkg" recommended Updating FreeBSD-base repository catalogue... Fetching meta.txz: 100% 264 B 0.3kB/s 00:01 Fetching packagesite.txz: 100% 48 KiB 49.0kB/s 00:01 Processing entries: 0% pkg: wrong architecture: freebsd:12:x86:64 instead of FreeBSD:12:amd64 pkg: repository FreeBSD-base contains packages with wrong ABI: freebsd:12:x86:64 Processing entries: 100% Unable to update repository FreeBSD-base All repositories are up-to-date. pkg: Repository FreeBSD-base cannot be opened. 'pkg update' required Checking for upgrades (0 candidates): 100% Processing candidates (0 candidates): 100% Checking integrity... done (0 conflicting) Your packages are up to date. I think I may need a 'pkg-static' compiled under 12.0 to make this work, which is an interesting chicken-and-egg problem. There does seem to be some confusion between 'Architecture' and 'ABI'. Do we need to introduce a concept of 'Architecture' for some base system packages? This would say what sort of system hardware a kernel package could be installed on, like so: 'x86:64' or 'mips:be' (notice this says nothing about FreeBSD or FreeBSD's major version level.) Then we'd need some sort of additional logic for working for out what ABIs are compatible with what Architectures and also a new magic variable ${ARCHITECTURE} for the low-level base system bits, analogous to ${ABI}. Cheers, Matthew --D3GUlPPh8fik2wmOBIm9wrspSq4gpx96m-- --Vq59DPQrXgdN4qimcJ2D6SwLA7K4LTGBL Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- iQIcBAEBCgAGBQJXmHyzAAoJEABRPxDgqeTnVUsP+gOc0uE8brVM1kb1ZwoGKc7W qDznnJVEHBB8/S5J1ujIqVUN/WwPhG/TBAHav1s4uiDm508Ejbxu8e7as9zpaybh gPrbbWQgXP3mIOTTzvdeGb4tEEfSvBdZR0B1yYenmx2HJumBNT/FmhIytUQwW6DQ TMuI6gp/+0Mdkdv03kXNc8IkeXYBSvmrkMaX6Nwh4z2WU2b0it566Zn8zhWR1JF0 ickZ9+blQuVIUuRtSlnezOr/DbKeiQlxBqY+1o0ufqWxw01WFfyQzwFw0F06hc5U x4QYe8u/DRty+9NsvnxShAUCmuOFrIUqQAeByj2vVJFqgB4x1V1oAgTrFPK4erJS 4Y5MRUhxuXCX2JQO6oGH/o/yq+rYJRDfi60tNiPRjnV7xeuALSBfJW2VPHLo5SDE pT+EjgmbyTtw++R4RKb31vJhTM/0DjMfgmc8DfYGicrtW+52G9G71nvtpTEYdZGd 5oDH5Lx/fdf8E8iq/pN198FfiN9f8YSo6e1EvKi3wLmzO5OoRjcVUnEG5d0ukKbT C2RxCFK6efDZwrbsiKWFEKVhF7qjF9u2ezDMUsDKzxnaklROKGC4Y6a94cfpbXeo kwlmS5w5owOXgcI9/ux9+jpKditEZ6kDcvTh6y+3SYqYJa2GfEG0r2J8pvUeaWGB a4bx2Vs8t7MO0ergTePF =Uxns -----END PGP SIGNATURE----- --Vq59DPQrXgdN4qimcJ2D6SwLA7K4LTGBL-- From owner-freebsd-pkgbase@freebsd.org Wed Jul 27 22:42:51 2016 Return-Path: Delivered-To: freebsd-pkgbase@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B80A9BA645D for ; Wed, 27 Jul 2016 22:42:51 +0000 (UTC) (envelope-from woodsb02@gmail.com) Received: from mail-wm0-x229.google.com (mail-wm0-x229.google.com [IPv6:2a00:1450:400c:c09::229]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3A6D11202; Wed, 27 Jul 2016 22:42:51 +0000 (UTC) (envelope-from woodsb02@gmail.com) Received: by mail-wm0-x229.google.com with SMTP id q128so229791858wma.1; Wed, 27 Jul 2016 15:42:51 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc; bh=4WRNtmR1k2z7aOVlEaztej7juUGpTf6E2mlmFkuEW7A=; b=ZhICUr52c11NJMD4JH5opEr40u3AxOZ8qk0eFGB4JgNWvGhf/UOlBowaJ6WL+6XnWe XpCUBeuhfUXD0SsIyDPe7fpTJPoa3cRhjAv2ll5dbrPtlegjaqqQ0g726JWN3dyAM3lQ eJ9znq3KWlTegjYrRURMaKcREshBmMLfuhKY20RE1OhZdjzZOhig6h/AZb5KtRK6/6iT f3mHxmgc4G88jxb7M4bpoBX8WGf/QCX8pkQxN7g6IciIXATaoCDN5EXbrw6UepbJ0x+t WHsJBBWV/xCTkK7UYvUqGxcTZZH/fW8gtBdiCf8edhPYCqnn13OwoS4LYCLDGk5X4Sx2 N2Iw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=4WRNtmR1k2z7aOVlEaztej7juUGpTf6E2mlmFkuEW7A=; b=S6mECYupSNhYd6wdGqpu0gS1S0UMVn/Vek8q9vyhzZu10d7fboENZcrbKcZlrpxmFO VXmM12HQXa39D0ovEGCwKNxzmJUFegVp379ArZ+o4YYKHYabRChebS5cyK4f95wN/l7U pyM7IbqHCOZd3g+Na0+yAgxm0L78SIRdZ/U/Se3QMHV+QAi0o5sjEm9MqIPczK2b4ux6 fLY5LXxB7giq3zzADTbP/HDB7MR38tcvg8E4/NO8F3VDuVjZyld5Su31wxArl2KhbnVC yWBiKPaRHEwlYKqMeEOr5vXrEjUKqW+KHchM2G0S5VURHMMmj5N9lOfvoDJEVYV7tuh3 SBGg== X-Gm-Message-State: AEkoousXSdxATWmCUPlbekU1Xca3Tsr9MfOvnoTP4C6joDs7QXXNUH6876+2crL8vMhtMU17ewQMfUd3J8bnRg== X-Received: by 10.194.88.137 with SMTP id bg9mr588575wjb.155.1469659369596; Wed, 27 Jul 2016 15:42:49 -0700 (PDT) MIME-Version: 1.0 Received: by 10.194.154.229 with HTTP; Wed, 27 Jul 2016 15:42:48 -0700 (PDT) In-Reply-To: References: <0295c3e9-a6ed-9081-ae3d-0668138289d3@bluerosetech.com> <4793bae9-9346-300f-b331-96fb54f7d2a0@FreeBSD.org> From: Ben Woods Date: Thu, 28 Jul 2016 06:42:48 +0800 Message-ID: Subject: Re: amd64 vs. x86:64 architecture mismatch in FreeBSD-base repo To: Matthew Seaman Cc: "freebsd-pkgbase@freebsd.org" Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.22 X-BeenThere: freebsd-pkgbase@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: "Packaging the FreeBSD base system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Jul 2016 22:42:51 -0000 On Wednesday, 27 July 2016, Matthew Seaman wrote: > Hmmm... where essentially the command you propose is: > > # env ABI=freebsd:12:x86:64 pkg upgrade -r FreeBSD-base > > Unfortunately this doesn't work: > > codling:/home/matthew:# env ABI=freebsd:12:x86:64 pkg upgrade -r > FreeBSD-base > pkg: Warning: Major OS version upgrade detected. Running "pkg-static > install -f pkg" recommended > Updating FreeBSD-base repository catalogue... > Repository FreeBSD-base has a wrong packagesite, need to re-create database > pkg: file:///usr/obj/usr/src/repo/freebsd:12:x86:64/latest/meta.txz: No > such file or directory > repository FreeBSD-base has no meta file, using default settings > pkg: > file:///usr/obj/usr/src/repo/freebsd:12:x86:64/latest/packagesite.txz: > No such file or directory > Unable to update repository FreeBSD-base > All repositories are up-to-date. > pkg: Repository FreeBSD-base cannot be opened. 'pkg update' required > Checking for upgrades (0 candidates): 100% > Processing candidates (0 candidates): 100% > Checking integrity... done (0 conflicting) > Your packages are up to date. > > 'freebsd:12:x86:64' is the old-style ABI format that went out in about > pkg-1.5.x or pkg-1.6.x or so and is now known inside pkg(8) as ALTABI. > > codling:/home/matthew:# pkg -vv | grep ABI > ABI = "FreeBSD:11:amd64"; > ALTABI = "freebsd:11:x86:64"; > > The base repo directory is named using the new style ABI: > > codling:/home/matthew:# ls -la /usr/obj/usr/src/repo/ > total 12 > drwxr-xr-x 3 matthew wheel 512 Jul 27 07:14 ./ > drwxr-xr-x 23 matthew wheel 512 Jul 26 17:43 ../ > drwxr-xr-x 3 root wheel 512 Jul 27 07:32 FreeBSD:12:amd64/ > > Even so: > > codling:/home/matthew:# env ABI=FreeBSD:12:amd64 pkg upgrade -r > FreeBSD-base > pkg: Warning: Major OS version upgrade detected. Running "pkg-static > install -f pkg" recommended > Updating FreeBSD-base repository catalogue... > Fetching meta.txz: 100% 264 B 0.3kB/s 00:01 > Fetching packagesite.txz: 100% 48 KiB 49.0kB/s 00:01 > Processing entries: 0% > pkg: wrong architecture: freebsd:12:x86:64 instead of FreeBSD:12:amd64 > pkg: repository FreeBSD-base contains packages with wrong ABI: > freebsd:12:x86:64 > Processing entries: 100% > Unable to update repository FreeBSD-base > All repositories are up-to-date. > pkg: Repository FreeBSD-base cannot be opened. 'pkg update' required > Checking for upgrades (0 candidates): 100% > Processing candidates (0 candidates): 100% > Checking integrity... done (0 conflicting) > Your packages are up to date. > Ok, it seems the PkgBase repo is located in a directory that uses the ABI style FreeBSD:12:amd64 in the directory name, but the packages contained within that repo are built for ABI freebsd:12:x86:64. The following should be a suitable work-around: 1. Change the contents of /usr/local/etc/pkg/repo/FreeBSD-base.conf, updating the url line to remove the ${ABI} variable and instead be: url: "file:///usr/obj/usr/src/repo/FreeBSD:12:amd64/latest", 2. Perform the upgrade by running the command: - # env ABI=freebsd:12:x86:64 pkg upgrade -r FreeBSD-base This likely needs to be fixed so that the work around is not necessary, but hopefully that gets you going in the mean time. Regards, Ben -- -- From: Benjamin Woods woodsb02@gmail.com From owner-freebsd-pkgbase@freebsd.org Wed Jul 27 22:56:53 2016 Return-Path: Delivered-To: freebsd-pkgbase@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C2082BA686C for ; Wed, 27 Jul 2016 22:56:53 +0000 (UTC) (envelope-from list_freebsd@bluerosetech.com) Received: from echo.brtsvcs.net (echo.brtsvcs.net [IPv6:2607:f740:c::4ae]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A78B5197A; Wed, 27 Jul 2016 22:56:53 +0000 (UTC) (envelope-from list_freebsd@bluerosetech.com) Received: from chombo.houseloki.net (c-73-240-250-185.hsd1.or.comcast.net [73.240.250.185]) by echo.brtsvcs.net (Postfix) with ESMTPS id 9259050004; Wed, 27 Jul 2016 22:56:47 +0000 (UTC) Received: from [IPv6:2601:1c2:1402:3a86:f0de:b09b:2125:59e5] (unknown [IPv6:2601:1c2:1402:3a86:f0de:b09b:2125:59e5]) by chombo.houseloki.net (Postfix) with ESMTPSA id 8EE851B6F; Wed, 27 Jul 2016 15:56:46 -0700 (PDT) Subject: Re: amd64 vs. x86:64 architecture mismatch in FreeBSD-base repo To: Ben Woods , Matthew Seaman References: <0295c3e9-a6ed-9081-ae3d-0668138289d3@bluerosetech.com> <4793bae9-9346-300f-b331-96fb54f7d2a0@FreeBSD.org> Cc: "freebsd-pkgbase@freebsd.org" From: Mel Pilgrim Message-ID: Date: Wed, 27 Jul 2016 15:56:48 -0700 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.2.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-pkgbase@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: "Packaging the FreeBSD base system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Jul 2016 22:56:53 -0000 On 2016-07-27 15:42, Ben Woods wrote: > Ok, it seems the PkgBase repo is located in a directory that uses the > ABI style FreeBSD:12:amd64 in the directory name, but the packages > contained within that repo are built for ABI freebsd:12:x86:64. > > The following should be a suitable work-around: > > 1. Change the contents of /usr/local/etc/pkg/repo/FreeBSD-base.conf, > updating the url line to remove the ${ABI} variable and instead be: > > url: "file:///usr/obj/usr/src/repo/FreeBSD:12:amd64/latest", > > > 2. Perform the upgrade by running the command: > > - > > # env ABI=freebsd:12:x86:64 pkg upgrade -r FreeBSD-base > > > > This likely needs to be fixed so that the work around is not necessary, but > hopefully that gets you going in the mean time. You can also symlink FreeBSD:12:x86:64 to FreeBSD:12:amd64 in /usr/obj/usr/src/repo. That effectively makes the same repo available for both ABI strings. From owner-freebsd-pkgbase@freebsd.org Thu Jul 28 10:11:27 2016 Return-Path: Delivered-To: freebsd-pkgbase@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AE72ABA7069 for ; Thu, 28 Jul 2016 10:11:27 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from smtp.infracaninophile.co.uk (smtp.infracaninophile.co.uk [IPv6:2001:8b0:151:1:c4ea:bd49:619b:6cb3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "smtp.infracaninophile.co.uk", Issuer "infracaninophile.co.uk" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 3AAB81BFB for ; Thu, 28 Jul 2016 10:11:27 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from ox-dell39.ox.adestra.com (unknown [85.199.232.226]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) (Authenticated sender: m.seaman@infracaninophile.co.uk) by smtp.infracaninophile.co.uk (Postfix) with ESMTPSA id E028489CE; Thu, 28 Jul 2016 10:11:18 +0000 (UTC) Authentication-Results: smtp.infracaninophile.co.uk; dmarc=none header.from=FreeBSD.org Authentication-Results: smtp.infracaninophile.co.uk/E028489CE; dkim=none; dkim-atps=neutral Subject: Re: amd64 vs. x86:64 architecture mismatch in FreeBSD-base repo To: Mel Pilgrim , Ben Woods References: <0295c3e9-a6ed-9081-ae3d-0668138289d3@bluerosetech.com> <4793bae9-9346-300f-b331-96fb54f7d2a0@FreeBSD.org> Cc: "freebsd-pkgbase@freebsd.org" From: Matthew Seaman Message-ID: <87f75233-6796-6992-5f03-940a590a60dc@freebsd.org> Date: Thu, 28 Jul 2016 11:11:04 +0100 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:45.0) Gecko/20100101 Thunderbird/45.2.0 MIME-Version: 1.0 In-Reply-To: Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="FHo2Ba99wdF7n6N3eD7OT5fWNEqOd39Dh" X-Spam-Status: No, score=-0.4 required=5.0 tests=BAYES_00,RDNS_NONE, SPF_SOFTFAIL autolearn=no autolearn_force=no version=3.4.1 X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on smtp.infracaninophile.co.uk X-BeenThere: freebsd-pkgbase@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: "Packaging the FreeBSD base system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Jul 2016 10:11:27 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --FHo2Ba99wdF7n6N3eD7OT5fWNEqOd39Dh Content-Type: multipart/mixed; boundary="Et0TUdoUKEAqkc8c5WFB7M2KKMgH80NFG" From: Matthew Seaman To: Mel Pilgrim , Ben Woods Cc: "freebsd-pkgbase@freebsd.org" Message-ID: <87f75233-6796-6992-5f03-940a590a60dc@freebsd.org> Subject: Re: amd64 vs. x86:64 architecture mismatch in FreeBSD-base repo References: <0295c3e9-a6ed-9081-ae3d-0668138289d3@bluerosetech.com> <4793bae9-9346-300f-b331-96fb54f7d2a0@FreeBSD.org> In-Reply-To: --Et0TUdoUKEAqkc8c5WFB7M2KKMgH80NFG Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable On 07/27/16 23:56, Mel Pilgrim wrote: > On 2016-07-27 15:42, Ben Woods wrote: >> Ok, it seems the PkgBase repo is located in a directory that uses the >> ABI style FreeBSD:12:amd64 in the directory name, but the packages >> contained within that repo are built for ABI freebsd:12:x86:64. >> >> The following should be a suitable work-around: >> >> 1. Change the contents of /usr/local/etc/pkg/repo/FreeBSD-base.conf, >> updating the url line to remove the ${ABI} variable and instead be: >> >> url: "file:///usr/obj/usr/src/repo/FreeBSD:12:amd64/latest", >> >> >> 2. Perform the upgrade by running the command: >> >> - >> >> # env ABI=3Dfreebsd:12:x86:64 pkg upgrade -r FreeBSD-base >> >> >> >> This likely needs to be fixed so that the work around is not >> necessary, but >> hopefully that gets you going in the mean time. >=20 > You can also symlink FreeBSD:12:x86:64 to FreeBSD:12:amd64 in > /usr/obj/usr/src/repo. That effectively makes the same repo available > for both ABI strings. OK, this works and I now have my CURRENT VM updated to something recent. Thank you. This major version upgrade via pkg needs to run much more smoothly though, preferably without having to fiddle with the repo.conf. Cheers, Matthew --Et0TUdoUKEAqkc8c5WFB7M2KKMgH80NFG-- --FHo2Ba99wdF7n6N3eD7OT5fWNEqOd39Dh Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- iQIcBAEBCgAGBQJXmdo5AAoJEABRPxDgqeTnUu0QAJbbKW2SUcr5645ZOp0kFTNt sFuh4lZNLZ7hxHr6OgSnY95+I/oTWeyCAkFCbaGaewaTt9XWEQugBMVF7Eta/XBB FZ665CWDRm0Ksb2mBcLQNRI5K3KcYfmZXSR2BLAZRWuAn6QWJ07TcoA4ZUTuJ+9a m/2Ho9UlTNs/YiYbljerinHPftA55VhDI3iXcAefmr0xD6StcHO7ZG6TXdbSXwMa KFuHkxQII0uxwCYHu/2znwohd6f6bBUpssi1kAeTIDyHNI1yicYT8vCZqf+mOOKn Ny/XmCugT5c3cWHBMszBBJSP8LDv2T7tR+C3ux1aU6u0yUuUhZqibvaWy99kN0db 2RSNKk6MD6I9SIsfiEKiaXb+5Ad1q96IvKdY4WKVxOm+TrZllljE5mBYr3M5P1DQ zLtA2jVhfSsqEjFHzdn7kFD4sTESqorPJkwPEd76G9lCbV/5BOjG99VWbsDpcmpY e9qpdWqKS2jc85VsgvaBcTRjrZuQY6OfGjngNEysvvg9L67lP3qWdUYazSDZdHxG 7eK5xalLEOuZAeOlaxJuHo0GOhvqbujKfwfwdfB+7aYrPRUafoXj2zZz91kt8BDZ 5id96VWoG44H4MXa7ZVINIb2xtuWYPLQAj8upFwT5hf6mCL/ypDBVWStOjeOfked dk5B/1zuvDQSMMPKVwfx =OSUg -----END PGP SIGNATURE----- --FHo2Ba99wdF7n6N3eD7OT5fWNEqOd39Dh-- From owner-freebsd-pkgbase@freebsd.org Sat Jul 30 13:13:08 2016 Return-Path: Delivered-To: freebsd-pkgbase@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6E943BA98B8 for ; Sat, 30 Jul 2016 13:13:08 +0000 (UTC) (envelope-from taz_83@hotmail.com) Received: from COL004-OMC2S18.hotmail.com (col004-omc2s18.hotmail.com [65.55.34.92]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-SHA384 (256/256 bits)) (Client CN "*.outlook.com", Issuer "Microsoft IT SSL SHA2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 39F931DD9 for ; Sat, 30 Jul 2016 13:13:07 +0000 (UTC) (envelope-from taz_83@hotmail.com) Received: from APC01-HK2-obe.outbound.protection.outlook.com ([65.55.34.72]) by COL004-OMC2S18.hotmail.com over TLS secured channel with Microsoft SMTPSVC(7.5.7601.23008); Sat, 30 Jul 2016 06:13:07 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=hotmail.com; s=selector1; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version; bh=47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=; b=Q3U5fliXbQ8xs4+M5DrUzdp45ma4mhum+AheCCWFQxPJauHQRNpWcM3VeejSvA6wNFeD5oN0HrSJDpAiPb5XMgAeheup7o10RuPw8g0tPMqIOaP4w72hu7Y1gGJKii2ZjaewXbHFpdvtSrOlLaen+cWWQyV8SgOfdKYwcarT5R4T9ZqWgawctpesOl8laVNEHchGytDtBGuXCMWmLbK/oTUvanxOcp/tazWAZ9J812zHSWWG3oKaFixzunSTfrlslcbZRQv3HWJsN2knqBNgZfX67NXai2ON1i3pNM0CwaLD+s8Q9TO7YwCnOtnUqdptQj+azkDT4NbrWqTOYhK5gA== Received: from PU1APC01FT009.eop-APC01.prod.protection.outlook.com (10.152.252.55) by PU1APC01HT196.eop-APC01.prod.protection.outlook.com (10.152.253.152) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384_P384) id 15.1.549.5; Sat, 30 Jul 2016 13:13:04 +0000 Received: from PS1PR06MB1580.apcprd06.prod.outlook.com (10.152.252.59) by PU1APC01FT009.mail.protection.outlook.com (10.152.252.103) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384_P384) id 15.1.549.5 via Frontend Transport; Sat, 30 Jul 2016 13:13:04 +0000 Received: from PS1PR06MB1580.apcprd06.prod.outlook.com ([10.167.52.26]) by PS1PR06MB1580.apcprd06.prod.outlook.com ([10.167.52.26]) with mapi id 15.01.0549.016; Sat, 30 Jul 2016 13:13:03 +0000 From: taz shakik To: "freebsd-pkgbase@freebsd.org" Subject: Re: TODO/wish list for packaging the FreeBSD base system Thread-Topic: TODO/wish list for packaging the FreeBSD base system Thread-Index: AQHR6mQaRQVaqU3oekGxioUqSlWwgA== Date: Sat, 30 Jul 2016 13:13:03 +0000 Message-ID: Accept-Language: en-AU, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: authentication-results: spf=softfail (sender IP is 10.152.252.59) smtp.mailfrom=hotmail.com; hotmail.com; dkim=none (message not signed) header.d=none;hotmail.com; dmarc=fail action=none header.from=hotmail.com; received-spf: SoftFail (protection.outlook.com: domain of transitioning hotmail.com discourages use of 10.152.252.59 as permitted sender) x-ms-exchange-messagesentrepresentingtype: 1 x-tmn: [Mj8nHkIap5vRZbbY5wcKpH6Z4jB9MyMm] x-eopattributedmessage: 0 x-forefront-antispam-report: CIP:10.152.252.59; IPV:NLI; CTRY:; EFV:NLI; SFV:NSPM; SFS:(10019020)(98900003); DIR:OUT; SFP:1102; SCL:1; SRVR:PU1APC01HT196; H:PS1PR06MB1580.apcprd06.prod.outlook.com; FPR:; SPF:None; LANG:en; x-microsoft-exchange-diagnostics: 1; PU1APC01HT196; 7:UP+GtQQHTzqbprR5shK6b4ulm24vzQX3va7oPpnOPvI6tH7M9ckwHFXYYzyP7FEQdgdNgWWy92bnL49Z5fgTaJ9jb/Gx1gmQDkuW6rgmQaAGM+AXPaCzvt3C3zDzgAmjk89mkZMMkxv/h+Fm7oPIjAv+Z5k/Izb9o0z/eoF/uukp07btpazUXT4WrigcSaB3VZm5dm4L56/vynfyFhYJ+aj9CtlmdNVYyEe5ptsn21KwkhzftCGv+6oyAYUVBm8G x-ms-office365-filtering-correlation-id: 943801d3-daa2-40fa-1a2c-08d3b87b3d5c x-microsoft-antispam: UriScan:; BCL:0; PCL:0; RULEID:(1601124038)(1601125047); SRVR:PU1APC01HT196; x-exchange-antispam-report-cfa-test: BCL:0; PCL:0; RULEID:(432015012)(82015046); SRVR:PU1APC01HT196; BCL:0; PCL:0; RULEID:; SRVR:PU1APC01HT196; x-forefront-prvs: 001968DD50 spamdiagnosticoutput: 1:99 spamdiagnosticmetadata: NSPM Content-Type: text/plain; charset="us-ascii" Content-ID: Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-OriginatorOrg: hotmail.com X-MS-Exchange-CrossTenant-originalarrivaltime: 30 Jul 2016 13:13:03.5423 (UTC) X-MS-Exchange-CrossTenant-fromentityheader: Internet X-MS-Exchange-CrossTenant-id: 84df9e7f-e9f6-40af-b435-aaaaaaaaaaaa X-MS-Exchange-Transport-CrossTenantHeadersStamped: PU1APC01HT196 X-OriginalArrivalTime: 30 Jul 2016 13:13:07.0579 (UTC) FILETIME=[1D11CCB0:01D1EA64] X-BeenThere: freebsd-pkgbase@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: "Packaging the FreeBSD base system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Jul 2016 13:13:08 -0000 From owner-freebsd-pkgbase@freebsd.org Sat Jul 30 13:21:32 2016 Return-Path: Delivered-To: freebsd-pkgbase@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 650F7BA9907 for ; Sat, 30 Jul 2016 13:21:32 +0000 (UTC) (envelope-from taz_83@hotmail.com) Received: from BLU004-OMC4S4.hotmail.com (blu004-omc4s4.hotmail.com [65.55.111.143]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-SHA384 (256/256 bits)) (Client CN "*.outlook.com", Issuer "Microsoft IT SSL SHA2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1B6F71FAC for ; Sat, 30 Jul 2016 13:21:31 +0000 (UTC) (envelope-from taz_83@hotmail.com) Received: from APC01-PU1-obe.outbound.protection.outlook.com ([65.55.111.135]) by BLU004-OMC4S4.hotmail.com over TLS secured channel with Microsoft SMTPSVC(7.5.7601.23008); Sat, 30 Jul 2016 06:21:25 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=hotmail.com; s=selector1; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version; bh=47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=; b=aP1O4BRutnICytKkSXLSpOrBXTST6cqWFV35ynL6SbXf24DdSRK+eBgPI72ynGh/hCTYAdgOOFozlvBNvshploYmfkD6u6xA8Gjw2TbaJbGj4xXuTcc7ulNyfwdp89ydr9DYav6zwkaeLQrI1ImdKaVvxy4cZ94aVp8MumSL3k0wAdhpmCxdoEgnqeOmtL6eBHhPuJiMIYTvcEaoDys9VlWCIdNVwEArCvrWCdF89qkOnFUSlvC27zLL/LKcb2LAvft5AqnSFFz7Nx1Dm6AY5q8dfTwPUEnWqjUS0PqqMObnYqqSeeMItHWGgOAAlXmVHTVzRd9SLMBDYynRUmcevg== Received: from HK2APC01FT009.eop-APC01.prod.protection.outlook.com (10.152.248.53) by HK2APC01HT148.eop-APC01.prod.protection.outlook.com (10.152.249.170) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384_P384) id 15.1.549.5; Sat, 30 Jul 2016 13:21:22 +0000 Received: from PS1PR06MB1580.apcprd06.prod.outlook.com (10.152.248.53) by HK2APC01FT009.mail.protection.outlook.com (10.152.248.93) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384_P384) id 15.1.549.5 via Frontend Transport; Sat, 30 Jul 2016 13:21:22 +0000 Received: from PS1PR06MB1580.apcprd06.prod.outlook.com ([10.167.52.26]) by PS1PR06MB1580.apcprd06.prod.outlook.com ([10.167.52.26]) with mapi id 15.01.0549.016; Sat, 30 Jul 2016 13:21:22 +0000 From: taz shakik To: "freebsd-pkgbase@freebsd.org" Subject: Re: TODO/wish list for packaging the FreeBSD base system Thread-Topic: TODO/wish list for packaging the FreeBSD base system Thread-Index: AQHR6mVDRQVaqU3oekGxioUqSlWwgA== Date: Sat, 30 Jul 2016 13:21:21 +0000 Message-ID: Accept-Language: en-AU, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: authentication-results: spf=softfail (sender IP is 10.152.248.53) smtp.mailfrom=hotmail.com; hotmail.com; dkim=none (message not signed) header.d=none;hotmail.com; dmarc=fail action=none header.from=hotmail.com; received-spf: SoftFail (protection.outlook.com: domain of transitioning hotmail.com discourages use of 10.152.248.53 as permitted sender) x-ms-exchange-messagesentrepresentingtype: 1 x-tmn: [ZrG+UBkttNEGxdCcdSJCLY7c70NalTc2] x-eopattributedmessage: 0 x-forefront-antispam-report: CIP:10.152.248.53; IPV:NLI; CTRY:; EFV:NLI; SFV:NSPM; SFS:(10019020)(98900003); DIR:OUT; SFP:1102; SCL:1; SRVR:HK2APC01HT148; H:PS1PR06MB1580.apcprd06.prod.outlook.com; FPR:; SPF:None; LANG:en; x-microsoft-exchange-diagnostics: 1; HK2APC01HT148; 7:EKEVz6vUiz1NAT338G4VFNx9Kl4OIQnt70jJR3lRPobl03C4nfrstOOFtEaIbmmUkjiq2skSyOxLKCPIYaDWNuW0OxBz+3C2gY6MWNoT4+/9g063X2eMBQDT7Y/a/ML+eza0CCb10/uwLgX4wwaJmNNwZEa8xL79WXjUtsuAxsPeOM5k+CNEoEF3Y+9+5FgXII6fbrrj2GiQG9+FJb7YMJl//9pf0T9bdVgGpURgv82xm5CfyiqEsgc8iC/fwSeJ x-ms-office365-filtering-correlation-id: de5c3d20-2753-49de-4ff2-08d3b87c6642 x-microsoft-antispam: UriScan:; BCL:0; PCL:0; RULEID:(1601124038)(1601125047); SRVR:HK2APC01HT148; x-exchange-antispam-report-cfa-test: BCL:0; PCL:0; RULEID:(432015012)(82015046); SRVR:HK2APC01HT148; BCL:0; PCL:0; RULEID:; SRVR:HK2APC01HT148; x-forefront-prvs: 001968DD50 spamdiagnosticoutput: 1:99 spamdiagnosticmetadata: NSPM Content-Type: text/plain; charset="us-ascii" Content-ID: <07BF95E373478D4D9BF91085571E7A3C@sct-15-1-485-9-msonline-outlook-47aaa.templateTenant> Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-OriginatorOrg: hotmail.com X-MS-Exchange-CrossTenant-originalarrivaltime: 30 Jul 2016 13:21:21.8787 (UTC) X-MS-Exchange-CrossTenant-fromentityheader: Internet X-MS-Exchange-CrossTenant-id: 84df9e7f-e9f6-40af-b435-aaaaaaaaaaaa X-MS-Exchange-Transport-CrossTenantHeadersStamped: HK2APC01HT148 X-OriginalArrivalTime: 30 Jul 2016 13:21:25.0079 (UTC) FILETIME=[459A4670:01D1EA65] X-BeenThere: freebsd-pkgbase@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: "Packaging the FreeBSD base system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Jul 2016 13:21:32 -0000 From owner-freebsd-pkgbase@freebsd.org Sat Jul 30 13:23:01 2016 Return-Path: Delivered-To: freebsd-pkgbase@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3BB90BA9A13 for ; Sat, 30 Jul 2016 13:23:01 +0000 (UTC) (envelope-from taz_83@hotmail.com) Received: from COL004-OMC3S8.hotmail.com (col004-omc3s8.hotmail.com [65.55.34.146]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-SHA384 (256/256 bits)) (Client CN "*.outlook.com", Issuer "Microsoft IT SSL SHA2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 072B51200 for ; Sat, 30 Jul 2016 13:23:00 +0000 (UTC) (envelope-from taz_83@hotmail.com) Received: from APC01-HK2-obe.outbound.protection.outlook.com ([65.55.34.135]) by COL004-OMC3S8.hotmail.com over TLS secured channel with Microsoft SMTPSVC(7.5.7601.23008); Sat, 30 Jul 2016 06:21:54 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=hotmail.com; s=selector1; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version; bh=47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=; b=O9oyKrJeU8IvHnN5cURgdY3hhU/495+RACtj40SOTR+yXu5IUCS7AHdXndaIx19Ch0pe4+vL97mOK5O9maFyzQiXX/fpYhGeVeT1sF5duF7O84Pt1eh0jZkJTiNLWPP5x19qG9+IcNPLTwJOA5Wr4teuJyrO2+MCVXKg60ArVcaI8iQ17r1QeTQ6iTo5ME9LZUyth5HR9sfksSWybIoVQRkfmOQYWCArSDUGRIp3RgSqRCHC5RzCjNAEeML6EH2SwBu6uoiF95F3vEBErUAD+0PNV6mco5rO1NMuzGSyEKDh1I1UF85fHjoDO/1ZYlgkVawci79qo+0y+3Wt5vdEKw== Received: from HK2APC01FT009.eop-APC01.prod.protection.outlook.com (10.152.248.54) by HK2APC01HT222.eop-APC01.prod.protection.outlook.com (10.152.249.208) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384_P384) id 15.1.549.5; Sat, 30 Jul 2016 13:21:42 +0000 Received: from PS1PR06MB1580.apcprd06.prod.outlook.com (10.152.248.53) by HK2APC01FT009.mail.protection.outlook.com (10.152.248.93) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384_P384) id 15.1.549.5 via Frontend Transport; Sat, 30 Jul 2016 13:21:42 +0000 Received: from PS1PR06MB1580.apcprd06.prod.outlook.com ([10.167.52.26]) by PS1PR06MB1580.apcprd06.prod.outlook.com ([10.167.52.26]) with mapi id 15.01.0549.016; Sat, 30 Jul 2016 13:21:42 +0000 From: taz shakik To: "freebsd-pkgbase@freebsd.org" Subject: Re: TODO/wish list for packaging the FreeBSD base system Thread-Topic: TODO/wish list for packaging the FreeBSD base system Thread-Index: AQHR6mVPRQVaqU3oekGxioUqSlWwgA== Date: Sat, 30 Jul 2016 13:21:42 +0000 Message-ID: Accept-Language: en-AU, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: authentication-results: spf=softfail (sender IP is 10.152.248.53) smtp.mailfrom=hotmail.com; hotmail.com; dkim=none (message not signed) header.d=none;hotmail.com; dmarc=fail action=none header.from=hotmail.com; received-spf: SoftFail (protection.outlook.com: domain of transitioning hotmail.com discourages use of 10.152.248.53 as permitted sender) x-ms-exchange-messagesentrepresentingtype: 1 x-tmn: [dx/1MqBfDOLXzudPmTfiKkCA5h2MpQwp] x-eopattributedmessage: 0 x-forefront-antispam-report: CIP:10.152.248.53; IPV:NLI; CTRY:; EFV:NLI; SFV:NSPM; SFS:(10019020)(98900003); DIR:OUT; SFP:1102; SCL:1; SRVR:HK2APC01HT222; H:PS1PR06MB1580.apcprd06.prod.outlook.com; FPR:; SPF:None; LANG:en; x-microsoft-exchange-diagnostics: 1; HK2APC01HT222; 7:7Jmj9v6pS44JM9BsO21yTcYV9EyNRF2yX6BcM/rfstc0FkuAeDKFsJnq5NTzIrbi/nY3P2RkPL1Z3yOu3GF3CPJ6nPzZGZ+/hxfivLLYtOUoAhLBOwKKyHPn3KwhewYCst932MLEjYKrSkMxUs14CkEF/QyMamcD8rthVK0jLBC7jS5R0XyVixf8N4L3NC9zR19poAprMGAB7L9SHcDAnS3dinkmyBHPNm9zuEiXqGCBA40rQLcvRUUIBc51bB8N x-ms-office365-filtering-correlation-id: 992efbd7-59d5-47f6-f31b-08d3b87c723c x-microsoft-antispam: UriScan:; BCL:0; PCL:0; RULEID:(1601124038)(1601125047); SRVR:HK2APC01HT222; x-exchange-antispam-report-cfa-test: BCL:0; PCL:0; RULEID:(432015012)(82015046); SRVR:HK2APC01HT222; BCL:0; PCL:0; RULEID:; SRVR:HK2APC01HT222; x-forefront-prvs: 001968DD50 spamdiagnosticoutput: 1:99 spamdiagnosticmetadata: NSPM Content-Type: text/plain; charset="us-ascii" Content-ID: <6277063B65813F488851E88A6352A2F2@sct-15-1-485-9-msonline-outlook-47aaa.templateTenant> Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-OriginatorOrg: hotmail.com X-MS-Exchange-CrossTenant-originalarrivaltime: 30 Jul 2016 13:21:42.1014 (UTC) X-MS-Exchange-CrossTenant-fromentityheader: Internet X-MS-Exchange-CrossTenant-id: 84df9e7f-e9f6-40af-b435-aaaaaaaaaaaa X-MS-Exchange-Transport-CrossTenantHeadersStamped: HK2APC01HT222 X-OriginalArrivalTime: 30 Jul 2016 13:21:54.0407 (UTC) FILETIME=[57155F70:01D1EA65] X-BeenThere: freebsd-pkgbase@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: "Packaging the FreeBSD base system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Jul 2016 13:23:01 -0000