From 7eba4293714b9dce86c07ccf2fdaddaa11a4c3c7 Mon Sep 17 00:00:00 2001 From: makefu Date: Fri, 28 Aug 2015 23:39:37 +0200 Subject: Reaktor: add nix support, packaging --- reaktor/commands/caps | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 reaktor/commands/caps (limited to 'reaktor/commands/caps') diff --git a/reaktor/commands/caps b/reaktor/commands/caps new file mode 100755 index 0000000..ac8cc66 --- /dev/null +++ b/reaktor/commands/caps @@ -0,0 +1,13 @@ +#! /usr/bin/env python3 +import imp +import os + +def load_config(filename): + dirname = os.path.dirname(filename) + modname, ext = os.path.splitext(os.path.basename(filename)) + file, pathname, description = imp.find_module(modname, [ dirname ]) + return imp.load_module(modname, file, pathname, description) + +config = load_config(os.environ['config_filename']) +print('Private: '+' '.join(filter(None,[ x.get('capname',None) for x in config.commands]))) +print('Public: '+' '.join(filter(None,[ x.get('capname',None) for x in config.public_commands]))) -- cgit v1.2.3