From 2908f0f47314ce697a212a059e9e239031c713d4 Mon Sep 17 00:00:00 2001 From: Nick Bowler Date: Sun, 2 Apr 2017 18:39:19 -0400 Subject: [PATCH] Fix for portage-2.3.0 New versions of portage have a "sourcefile" setting, which is required to be set. --- portage/sync/modules/null/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/portage/sync/modules/null/__init__.py b/portage/sync/modules/null/__init__.py index f9c832f..c97ae20 100644 --- a/portage/sync/modules/null/__init__.py +++ b/portage/sync/modules/null/__init__.py @@ -1,4 +1,4 @@ -# Copyright © 2016 Nick Bowler +# Copyright © 2016-2017 Nick Bowler # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -25,6 +25,7 @@ module_spec = { 'provides': { 'null-module': { 'name': 'null', + 'sourcefile': 'null', 'description': __doc__, 'class': 'NullSync', 'validate_config': CheckNullConfig, -- 2.43.2