Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage:master commit in: repoman/pym/repoman/modules/scan/ebuild/
Date: Sun, 02 Jul 2017 17:53:38
Message-Id: 1499017998.98735cce528e0695f59d88ba6406ff6aeb595400.mgorny@gentoo
1 commit: 98735cce528e0695f59d88ba6406ff6aeb595400
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jun 19 13:28:29 2017 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Jul 2 17:53:18 2017 +0000
6 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=98735cce
7
8 checks: Add more deprecated eclasses
9
10 Reviewed-by: Brian Dolbec <dolsen <AT> gentoo.org>
11
12 repoman/pym/repoman/modules/scan/ebuild/checks.py | 5 +++++
13 1 file changed, 5 insertions(+)
14
15 diff --git a/repoman/pym/repoman/modules/scan/ebuild/checks.py b/repoman/pym/repoman/modules/scan/ebuild/checks.py
16 index e6e5d78ba..de03bedd2 100644
17 --- a/repoman/pym/repoman/modules/scan/ebuild/checks.py
18 +++ b/repoman/pym/repoman/modules/scan/ebuild/checks.py
19 @@ -416,14 +416,18 @@ class InheritDeprecated(LineCheck):
20
21 # deprecated eclass : new eclass (False if no new eclass)
22 deprecated_eclasses = {
23 + "autotools-multilib": "multilib-minimal",
24 + "autotools-utils": False,
25 "base": False,
26 "bash-completion": "bash-completion-r1",
27 "boost-utils": False,
28 "clutter": "gnome2",
29 "confutils": False,
30 "distutils": "distutils-r1",
31 + "fdo-mime": "xdg-utils",
32 "games": False,
33 "gems": "ruby-fakegem",
34 + "git-2": "git-r3",
35 "gpe": False,
36 "gst-plugins-bad": "gstreamer",
37 "gst-plugins-base": "gstreamer",
38 @@ -434,6 +438,7 @@ class InheritDeprecated(LineCheck):
39 "python": "python-r1 / python-single-r1 / python-any-r1",
40 "ruby": "ruby-ng",
41 "x-modular": "xorg-2",
42 + "xfconf": False,
43 }
44
45 _inherit_re = re.compile(r'^\s*inherit\s(.*)$')