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 526CE59CB4 for ; Tue, 19 Apr 2016 23:05:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B4A56E08B0; Tue, 19 Apr 2016 23:05:53 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5D770E08B0 for ; Tue, 19 Apr 2016 23:05:53 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CB58B340894 for ; Tue, 19 Apr 2016 23:05:51 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6190715F for ; Tue, 19 Apr 2016 23:05:44 +0000 (UTC) From: "Manuel Rüger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Manuel Rüger" Message-ID: <1461107114.7239e600920c4602d35ba2c0e55a94617f485f4d.mrueg@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/stringex/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/stringex/stringex-2.6.0-r1.ebuild X-VCS-Directories: dev-ruby/stringex/ X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: 7239e600920c4602d35ba2c0e55a94617f485f4d X-VCS-Branch: master Date: Tue, 19 Apr 2016 23:05:44 +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: bff779f3-fc95-46c9-8168-df4b769991fb X-Archives-Hash: 0579a9be8c847e1d76b75f9dc11c232c commit: 7239e600920c4602d35ba2c0e55a94617f485f4d Author: Manuel Rüger gentoo org> AuthorDate: Tue Apr 19 23:05:14 2016 +0000 Commit: Manuel Rüger gentoo org> CommitDate: Tue Apr 19 23:05:14 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7239e600 dev-ruby/stringex: Add ruby22 Package-Manager: portage-2.2.28 dev-ruby/stringex/stringex-2.6.0-r1.ebuild | 40 ++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/dev-ruby/stringex/stringex-2.6.0-r1.ebuild b/dev-ruby/stringex/stringex-2.6.0-r1.ebuild new file mode 100644 index 0000000..0b0f5dd --- /dev/null +++ b/dev-ruby/stringex/stringex-2.6.0-r1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +USE_RUBY="ruby20 ruby21 ruby22" + +RUBY_FAKEGEM_DOC_DIR="rdoc" +RUBY_FAKEGEM_EXTRADOC="README.rdoc" + +inherit ruby-fakegem + +DESCRIPTION="Extensions for Ruby's String class" +HOMEPAGE="https://github.com/rsl/stringex" +LICENSE="MIT" + +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc64" +IUSE="test" + +# we could rely on activerecord[sqlite3], but since we do not remove the +# sqlite3 adapter from activerecord when building -sqlite3, it's easier +# to just add another dependency, so the user doesn't have to change the +# USE flags at all. +ruby_add_bdepend " + test? ( + >=dev-ruby/i18n-0.6.9:0.6 + dev-ruby/redcloth + dev-ruby/test-unit:2 + >=dev-ruby/activerecord-3 + dev-ruby/sqlite3 )" + +all_ruby_prepare() { + sed -i -e '1agem "i18n", "~>0.6.9"' test/test_helper.rb || die +} + +each_ruby_test() { + # rake seems to break this + ruby-ng_testrb-2 -Ilib -Itest test/unit/*/*_test.rb test/performance/*_test.rb || die "tests failed" +}