Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/rbot-gentoo:master commit in: /
Date: Wed, 27 Jan 2016 18:21:56
Message-Id: 1453823111.2d49aaf8c477f77c5d0d820fffe8bd74088bb9b3.mgorny@gentoo
1 commit: 2d49aaf8c477f77c5d0d820fffe8bd74088bb9b3
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 26 15:40:09 2016 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 26 15:45:11 2016 +0000
6 URL: https://gitweb.gentoo.org/proj/rbot-gentoo.git/commit/?id=2d49aaf8
7
8 !meta: Stop printing herds
9
10 gentoo-data.rb | 4 +---
11 1 file changed, 1 insertion(+), 3 deletions(-)
12
13 diff --git a/gentoo-data.rb b/gentoo-data.rb
14 index d99c7c6..0be1177 100644
15 --- a/gentoo-data.rb
16 +++ b/gentoo-data.rb
17 @@ -89,10 +89,8 @@ class GentooPlugin < Plugin
18 # TODO: handle description?
19 maints = pkg['maintainers'].map{|x| x['email'].chomp('@gentoo.org')}.join(', ')
20 maints = '(none)' if maints.empty?
21 - herds = pkg['herds'].join(', ')
22 - herds = '(none)' if herds.empty?
23
24 - m.reply "#{pkg['atom']}; herds: #{herds}; maintainers: #{maints}"
25 + m.reply "#{pkg['atom']}; maintainers: #{maints}"
26 end
27
28 def meta(m, params)