From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D07E71382C5 for ; Thu, 11 Jun 2020 20:01:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7E461E086C; Thu, 11 Jun 2020 20:01:24 +0000 (UTC) Received: from mail-ej1-f45.google.com (mail-ej1-f45.google.com [209.85.218.45]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DFF5FE0830 for ; Thu, 11 Jun 2020 20:01:23 +0000 (UTC) Received: by mail-ej1-f45.google.com with SMTP id f7so7750891ejq.6 for ; Thu, 11 Jun 2020 13:01:23 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to; bh=JyFhZ6XB4VcN9obEIo3FBrVyg6pXdP0XP6GYWXjnBD4=; b=ryptKYFAAYUgZypY8R2TnyMpBplA6qsrrCc029ZDLF2dP/YmpWe1+Wt17PLJco3wYe 8jN5DB2EhXkwcm2Qdyyocfi+0jd52AN5uObt4mH02e3p7njCw6tM6744POLdzbnr7rr6 9LW9jC8ed4lHRbiqUMrAA7eXtmyk4JWw6ylTgrf3hGTEAnaaXVXfTUYhVEW8owCncYyK BhwbQ9DcxlhBaKBL0VeM9hHg1wgUZkn+CKx9AzCK0KcQ0kJD/f/x6O8LCTVX2qtOyznU j0ItAcjkHyuXMYc3D6c5PrjCGL4inRtvUQp4M2vGRtzbCyeIL3ind9AO2MSRA8IOx7xc wGCA== X-Gm-Message-State: AOAM531/ZyRtwsKXne28Y9nivU4fBSuhQM8Qbo+PkPEzbjP+aYHRi3X9 8V9NWNzhxHcu19VhB2VP0rO06nXIYsWMxOpcEQRO1GjA06I= X-Google-Smtp-Source: ABdhPJxnGZwYTim/TDKfHBy9zoJvzPJn5T5QGXa0KejZWwOlqJqGUT3jp3cRjFBNvaVlRCPtF02zALQz6NV4Mo+mXB4= X-Received: by 2002:a17:906:e05:: with SMTP id l5mr10674342eji.318.1591905682278; Thu, 11 Jun 2020 13:01:22 -0700 (PDT) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-user@lists.gentoo.org Reply-to: gentoo-user@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply MIME-Version: 1.0 References: <9ed9c401-7066-9c6d-8ce4-2ee94a1b903e@web.de> <20200611091031.770b9102@digimed.co.uk> In-Reply-To: From: Rich Freeman Date: Thu, 11 Jun 2020 16:01:11 -0400 Message-ID: Subject: Re: [gentoo-user] "masked by: EAPI 7" trying up update "portage" - how to proceed To: gentoo-user@lists.gentoo.org Content-Type: text/plain; charset="UTF-8" X-Archives-Salt: 58a45727-44b0-4bd3-98e1-1c6257b7a185 X-Archives-Hash: 7f140bb2b0636e7ed5b99dea7f79a9fd On Thu, Jun 11, 2020 at 3:36 PM n952162 wrote: > > On 2020-06-11 14:47, Rich Freeman wrote: > > On Thu, Jun 11, 2020 at 4:10 AM Neil Bothwick wrote: > > > > Most likely what you're probably going to end up wanting to try is: > > USE="python_targets_python3_6 -python_targets_python3_7" emerge -p1v > > sys-apps/portage > > (Remove the -p if the output of that looks sane.) > > > > That will temporarily adjust the python dependency settings for just > > that one command. You shouldn't use that USE setting any further > > after that - this is just to get portage updated once to allow python > > to be updated in the future - you don't want to stick with 3.6 forever > > and in a little while you won't even have that option. > > > I tried that: > > These are the packages that would be merged, in order: > > Calculating dependencies . ... done! > > !!! All ebuilds that could satisfy > ">=app-crypt/openpgp-keys-gentoo-release-20180706" have been masked. > !!! One of the following masked packages is required to complete your > request: > - app-crypt/openpgp-keys-gentoo-release-20191030::gentoo (masked by: EAPI 7) > > The current version of portage supports EAPI '6'. You must upgrade to a > newer version of portage before EAPI masked packages can be installed. > (dependency required by > "sys-apps/portage-9999::gentoo[-build,rsync-verify]" [ebuild]) > (dependency required by "sys-apps/portage" [argument]) Why are you installing portage-9999 now? This is going to be masked unless you've jumped through some hoops. Try: USE="python_targets_python3_6 -python_targets_python3_7 -rsync-verify" emerge -p1v =sys-apps/portage-2.3.99-r2 This should force the current stable version of portage and disable key verification so that you don't need those keys. You should also determine how you've unmasked portage-9999. I'd grep for portage in any of the config files in /etc/portage and remove it from anything in package.unmask or package.accept_keywords or package.keywords. -- Rich