aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2017-06-19 15:28:29 +0200
committerMichał Górny <mgorny@gentoo.org>2017-07-02 19:53:18 +0200
commit98735cce528e0695f59d88ba6406ff6aeb595400 (patch)
tree5be3abf57761b3e86077280e1c76b653f7904a58
parenteconf: multijob-safe shebang tweaking (diff)
downloadportage-98735cce528e0695f59d88ba6406ff6aeb595400.tar.gz
portage-98735cce528e0695f59d88ba6406ff6aeb595400.tar.bz2
portage-98735cce528e0695f59d88ba6406ff6aeb595400.zip
checks: Add more deprecated eclasses
Reviewed-by: Brian Dolbec <dolsen@gentoo.org>
-rw-r--r--repoman/pym/repoman/modules/scan/ebuild/checks.py5
1 files changed, 5 insertions, 0 deletions
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(.*)$')