From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 968E71384B4 for ; Sun, 27 Dec 2015 08:46:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E5ECA21C003; Sun, 27 Dec 2015 08:46:22 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8545B21C003 for ; Sun, 27 Dec 2015 08:46:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2EE9C34016B for ; Sun, 27 Dec 2015 08:46:20 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 30E7ECEA for ; Sun, 27 Dec 2015 08:46:17 +0000 (UTC) From: "Hans de Graaff" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Hans de Graaff" Message-ID: <1451205963.f7b4697556ff481411815e174e676c35c59256e7.graaff@gentoo> Subject: [gentoo-commits] proj/ruby-scripts:master commit in: ruby-stats/ X-VCS-Repository: proj/ruby-scripts X-VCS-Files: ruby-stats/plot ruby-stats/ruby_stats.py X-VCS-Directories: ruby-stats/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: f7b4697556ff481411815e174e676c35c59256e7 X-VCS-Branch: master Date: Sun, 27 Dec 2015 08:46:17 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: c41b3d7c-2215-4eeb-8f18-0f4235c27181 X-Archives-Hash: 19c5e2e81cd40c4c7fcf8b527bb1bd20 commit: f7b4697556ff481411815e174e676c35c59256e7 Author: Hans de Graaff degraaff org> AuthorDate: Sun Dec 27 08:46:03 2015 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sun Dec 27 08:46:03 2015 +0000 URL: https://gitweb.gentoo.org/proj/ruby-scripts.git/commit/?id=f7b46975 Add ruby23 to target plot ruby-stats/plot | 1 + ruby-stats/ruby_stats.py | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ruby-stats/plot b/ruby-stats/plot index 86edac6..bcefeb4 100644 --- a/ruby-stats/plot +++ b/ruby-stats/plot @@ -21,6 +21,7 @@ plot "data.txt" using 1:3 with lines lt 2 title "total", \ "data.txt" using 1:6 with lines lt 1 lc 3 title "ruby20", \ "data.txt" using 1:10 with lines lt 1 lc 7 title "ruby21", \ "data.txt" using 1:11 with lines lt 1 lc 8 title "ruby22", \ + "data.txt" using 1:12 with lines lt 1 lc 9 title "ruby23", \ "data.txt" using 1:7 with lines lt 1 lc 4 title "jruby", \ "data.txt" using 1:8 with lines lt 1 lc 5 title "ree18", \ "data.txt" using 1:9 with lines lt 1 lc 6 title "rbx" diff --git a/ruby-stats/ruby_stats.py b/ruby-stats/ruby_stats.py index ce51e98..25009a7 100755 --- a/ruby-stats/ruby_stats.py +++ b/ruby-stats/ruby_stats.py @@ -4,7 +4,7 @@ # 2010-01-21 180 144 142 68 52 date_fmt = "%Y-%m-%d" -bins = ('ruby', 'ruby-ng', 'ruby_targets_ruby18', 'ruby_targets_ruby19', 'ruby_targets_ruby20', 'ruby_targets_jruby', 'ruby_targets_ree18', 'ruby_targets_rbx', 'ruby_targets_ruby21', 'ruby_targets_ruby22') +bins = ('ruby', 'ruby-ng', 'ruby_targets_ruby18', 'ruby_targets_ruby19', 'ruby_targets_ruby20', 'ruby_targets_jruby', 'ruby_targets_ree18', 'ruby_targets_rbx', 'ruby_targets_ruby21', 'ruby_targets_ruby22', 'ruby_targets_ruby23') import sys import time @@ -43,6 +43,8 @@ def main(): stats['ruby_targets_ruby21'].add(cpv) if 'ruby_targets_ruby22' in iuse: stats['ruby_targets_ruby22'].add(cpv) + if 'ruby_targets_ruby23' in iuse: + stats['ruby_targets_ruby23'].add(cpv) if 'ruby_targets_jruby' in iuse: stats['ruby_targets_jruby'].add(cpv) if 'ruby_targets_ree18' in iuse: