]> git.draconx.ca Git - nullsync.git/commitdiff
Fix for portage-2.3.0 master
authorNick Bowler <nbowler@draconx.ca>
Sun, 2 Apr 2017 22:39:19 +0000 (18:39 -0400)
committerNick Bowler <nbowler@draconx.ca>
Sun, 2 Apr 2017 22:39:19 +0000 (18:39 -0400)
New versions of portage have a "sourcefile" setting, which is
required to be set.

portage/sync/modules/null/__init__.py

index f9c832fdf309c3e9d99918da932654f226536c08..c97ae20039e26268df118770385f1d5ea5f2cd8c 100644 (file)
@@ -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,