aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2008-08-07 22:05:55 +0000
committerRobin H. Johnson <robbat2@gentoo.org>2008-08-07 22:05:55 +0000
commitec2bba187b41329c89063ab5df4677933c194523 (patch)
tree7eaf2b4d7ac00083f0f75c325ca448e93c1eb4a3 /gentoo-data.rb
parentFix earch output. (diff)
downloadrbot-gentoo-ec2bba187b41329c89063ab5df4677933c194523.tar.gz
rbot-gentoo-ec2bba187b41329c89063ab5df4677933c194523.tar.bz2
rbot-gentoo-ec2bba187b41329c89063ab5df4677933c194523.zip
Always thread.
Diffstat (limited to 'gentoo-data.rb')
-rw-r--r--gentoo-data.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/gentoo-data.rb b/gentoo-data.rb
index 787e169..648d150 100644
--- a/gentoo-data.rb
+++ b/gentoo-data.rb
@@ -337,6 +337,7 @@ plugin.map 'meta -v :pkg',
:pkg => REGEX_CP,
},
:action => 'meta_verbose',
+ :thread => 'yes',
:auth_path => 'view'
plugin.map 'meta :pkg',
@@ -344,6 +345,7 @@ plugin.map 'meta :pkg',
:pkg => REGEX_CP,
},
:action => 'meta',
+ :thread => 'yes',
:auth_path => 'view'
plugin.map 'validpkg :pkg',
@@ -358,6 +360,7 @@ plugin.map 'changelog :pkg',
:pkg => REGEX_CP,
},
:action => 'changelog',
+ :thread => 'yes',
:auth_path => 'view'
plugin.map 'devaway :dev',
@@ -365,6 +368,7 @@ plugin.map 'devaway :dev',
:dev => REGEX_DEV,
},
:action => 'devaway',
+ :thread => 'yes',
:auth_path => 'view'
plugin.map 'herd :herd',
@@ -372,6 +376,7 @@ plugin.map 'herd :herd',
:herd => REGEX_HERD,
},
:action => 'herd',
+ :thread => 'yes',
:auth_path => 'view'
plugin.map 'expn :alias',
@@ -379,6 +384,7 @@ plugin.map 'expn :alias',
:alias => REGEX_DEV,
},
:action => 'expand_alias',
+ :thread => 'yes',
:auth_path => 'view'
plugin.map 'glsa :glsa_id',
@@ -386,6 +392,7 @@ plugin.map 'glsa :glsa_id',
:alias => REGEX_GLSA,
},
:action => 'glsa',
+ :thread => 'yes',
:auth_path => 'view'
plugin.map 'glsa -s :text',
@@ -393,6 +400,7 @@ plugin.map 'glsa -s :text',
:text => /^[^ ]+$/,
},
:action => 'glsa_search',
+ :thread => 'yes',
:auth_path => 'view'
plugin.map 'ddep :pkg',
@@ -400,6 +408,7 @@ plugin.map 'ddep :pkg',
:pkg => REGEX_CP,
},
:action => 'ddep',
+ :thread => 'yes',
:auth_path => 'view'
plugin.map 'rdep :pkg',
@@ -407,6 +416,7 @@ plugin.map 'rdep :pkg',
:pkg => REGEX_CP,
},
:action => 'rdep',
+ :thread => 'yes',
:auth_path => 'view'
plugin.map 'earch :pkg',
@@ -414,6 +424,7 @@ plugin.map 'earch :pkg',
:pkg => REGEX_CP,
},
:action => 'earch',
+ :thread => 'yes',
:auth_path => 'view'
# vim: ft=ruby ts=2 sts=2 et: