From: Nick Bowler Date: Sun, 2 Apr 2017 22:39:19 +0000 (-0400) Subject: Fix for portage-2.3.0 X-Git-Url: http://git.draconx.ca/gitweb/nullsync.git/commitdiff_plain/HEAD Fix for portage-2.3.0 New versions of portage have a "sourcefile" setting, which is required to be set. --- 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,