summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rwxr-xr-xbin/use-index.rb29
2 files changed, 30 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 00000000..31a33a02
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+files/packages/use.json
diff --git a/bin/use-index.rb b/bin/use-index.rb
new file mode 100755
index 00000000..c0a968bf
--- /dev/null
+++ b/bin/use-index.rb
@@ -0,0 +1,29 @@
+#!/usr/bin/env ruby
+
+require 'json'
+
+GLOBAL = '/usr/portage/profiles/use.desc'
+LOCAL = '/usr/portage/profiles/use.local.desc'
+
+output = { 'global' => {}, 'local' => {} }
+
+File.readlines(GLOBAL).each do |line|
+ next if line =~ /^(|#.*)$/
+
+ flag, desc = line.strip.split(' - ', 2)
+ output['global'][flag] = desc
+end
+
+File.readlines(LOCAL).each do |line|
+ next if line =~ /^(|#.*)$/
+
+ atom_flag, desc = line.strip.split(' - ', 2)
+ atom, flag = atom_flag.split(':', 2)
+ cat, pkg = atom.split('/', 2)
+
+ output['local'][cat] ||= {}
+ output['local'][cat][pkg] ||= {}
+ output['local'][cat][pkg][flag] = desc
+end
+
+puts output.to_json