From owner-freebsd-pkgbase@freebsd.org Sun Jul 10 22:03:06 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 B2DB8B84B44 for ; Sun, 10 Jul 2016 22:03:06 +0000 (UTC) (envelope-from woodsb02@gmail.com) Received: from mail-wm0-x22a.google.com (mail-wm0-x22a.google.com [IPv6:2a00:1450:400c:c09::22a]) (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 5C6011220 for ; Sun, 10 Jul 2016 22:03:06 +0000 (UTC) (envelope-from woodsb02@gmail.com) Received: by mail-wm0-x22a.google.com with SMTP id f126so71086613wma.1 for ; Sun, 10 Jul 2016 15:03:06 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:from:date:message-id:subject:to; bh=armWCrSXThE3GAEo07wUX90MfTN2vkgulHHSHmytWas=; b=xts1vlASxPpU/1qpQu49pjorGseLdTBv7lSW3PdGEAV0bSv6qCYyB/yg+1cLF+0xXf glbfTj3ohV5lk1jCoDbPsqR8gaONbqDM7FX4/ml+xyEB4vDygdxdXiXIx+/ailHhHSXf ZwNnKJL1qXEtbEtXQKmholvyKZrgn1mexoRCB57CiraGsqDtF2yumT29zTp9C4QZkTBZ cjYZE0i67sqkehuMWkiFx97TT84jwsOvkx/jt+KTUsCxDQJFOdnyOAZiHYuhrYkSF9i4 EG4JGhT7a5xFpiPJbLrccJXN3h7pT3H082KWQX8F725/cSzfW+Iud79i9nwXZyyf1UAs glmg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=armWCrSXThE3GAEo07wUX90MfTN2vkgulHHSHmytWas=; b=cS6BA/sjFmq0rblLuXcAjwQg296Z//I76Ph63WYdnu8+MXGqG+HaHxvSnZlwN/Qxx1 og8T+NpHppRbfoET2X9DBGWdSEIeVaGoCoKArCsYbWKLpHOWvE2ZUq1Bk5Bon1cWND0e uizEHQtEQITGenzq7SHHklDh+nK9J9W8FeQiv4pl1+yjH3TVxJ9UNyi+W6XK7RUhc0zj GdwsqVmE64I4HZdixZrTvsBKVsp3kFlpw0kcEDnM+9nwpblu1bEQiBxscNUTltpxd09k wCxaL08sVMMLxG51IqlQQGzuD1PQ2S5+PmsO3Y9nPga6p3s41nLr9KnK1Ilm1uZx4J/v Rhlg== X-Gm-Message-State: ALyK8tL2o9hXpg/TaA4Zw2GHJwJbO9EiqMRiezSVBnGxsZS9UYbezYQAIxu9bA1SoBS+Jo2v4jnw34vZlSQYKg== X-Received: by 10.28.191.90 with SMTP id p87mr13655835wmf.69.1468188184558; Sun, 10 Jul 2016 15:03:04 -0700 (PDT) MIME-Version: 1.0 Received: by 10.194.222.169 with HTTP; Sun, 10 Jul 2016 15:03:04 -0700 (PDT) From: Ben Woods Date: Sun, 10 Jul 2016 22:03:04 +0000 Message-ID: Subject: Upgrading from 11-current to 12-current with PkgBase To: 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: Sun, 10 Jul 2016 22:03:06 -0000 Hi everyone, Just a quick note to say that when trying to upgrade from 11-current to 12-current I got the following error: # pkg upgrade -r FreeBSD-base Updating FreeBSD-base repository catalogue... Fetching meta.txz: 100% 268 B 0.3kB/s 00:01 Fetching packagesite.txz: 100% 52 KiB 52.9kB/s 00:01 Processing entries: 0% pkg: wrong architecture: freebsd:12:x86:64 instead of FreeBSD:11: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. The solution was to use the following command: # env ABI=freebsd:12:x86:64 pkg upgrade -r FreeBSD-base This was found from bapt's post here: https://lists.freebsd.org/pipermail/freebsd-ports/2014-June/093092.html Regards, Ben -- From: Benjamin Woods woodsb02@gmail.com