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 8C440139694 for ; Sun, 2 Jul 2017 17:53:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F26B52340AD; Sun, 2 Jul 2017 17:53:37 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D310A2340AD for ; Sun, 2 Jul 2017 17:53:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 098EA34195C for ; Sun, 2 Jul 2017 17:53:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 74484747D for ; Sun, 2 Jul 2017 17:53:35 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1499017998.98735cce528e0695f59d88ba6406ff6aeb595400.mgorny@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: repoman/pym/repoman/modules/scan/ebuild/ X-VCS-Repository: proj/portage X-VCS-Files: repoman/pym/repoman/modules/scan/ebuild/checks.py X-VCS-Directories: repoman/pym/repoman/modules/scan/ebuild/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 98735cce528e0695f59d88ba6406ff6aeb595400 X-VCS-Branch: master Date: Sun, 2 Jul 2017 17:53:35 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 46e19940-3bd0-415b-8fbb-af2c28d58e61 X-Archives-Hash: 6c40602899dae32997547288a7eedbee commit: 98735cce528e0695f59d88ba6406ff6aeb595400 Author: Michał Górny gentoo org> AuthorDate: Mon Jun 19 13:28:29 2017 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Jul 2 17:53:18 2017 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=98735cce checks: Add more deprecated eclasses Reviewed-by: Brian Dolbec gentoo.org> repoman/pym/repoman/modules/scan/ebuild/checks.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/repoman/pym/repoman/modules/scan/ebuild/checks.py b/repoman/pym/repoman/modules/scan/ebuild/checks.py index e6e5d78ba..de03bedd2 100644 --- a/repoman/pym/repoman/modules/scan/ebuild/checks.py +++ b/repoman/pym/repoman/modules/scan/ebuild/checks.py @@ -416,14 +416,18 @@ class InheritDeprecated(LineCheck): # deprecated eclass : new eclass (False if no new eclass) deprecated_eclasses = { + "autotools-multilib": "multilib-minimal", + "autotools-utils": False, "base": False, "bash-completion": "bash-completion-r1", "boost-utils": False, "clutter": "gnome2", "confutils": False, "distutils": "distutils-r1", + "fdo-mime": "xdg-utils", "games": False, "gems": "ruby-fakegem", + "git-2": "git-r3", "gpe": False, "gst-plugins-bad": "gstreamer", "gst-plugins-base": "gstreamer", @@ -434,6 +438,7 @@ class InheritDeprecated(LineCheck): "python": "python-r1 / python-single-r1 / python-any-r1", "ruby": "ruby-ng", "x-modular": "xorg-2", + "xfconf": False, } _inherit_re = re.compile(r'^\s*inherit\s(.*)$')