diff options
author | 2014-11-26 01:52:15 +0000 | |
---|---|---|
committer | 2014-11-26 01:52:15 +0000 | |
commit | bc988c5cb0399390d2449a04da46e9e191546492 (patch) | |
tree | 6afef3f97bce97aa72a31d36619089af4f866c8b /dev-ruby/minitest | |
parent | Add dependency on dev-libs/popt. (diff) | |
download | gentoo-2-bc988c5cb0399390d2449a04da46e9e191546492.tar.gz gentoo-2-bc988c5cb0399390d2449a04da46e9e191546492.tar.bz2 gentoo-2-bc988c5cb0399390d2449a04da46e9e191546492.zip |
activerecord depends on <5.3.4. Get 5.3.3-r1 back. Drop jruby.
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'dev-ruby/minitest')
-rw-r--r-- | dev-ruby/minitest/ChangeLog | 7 | ||||
-rw-r--r-- | dev-ruby/minitest/minitest-5.3.3-r1.ebuild | 27 |
2 files changed, 33 insertions, 1 deletions
diff --git a/dev-ruby/minitest/ChangeLog b/dev-ruby/minitest/ChangeLog index 10cac48c6473..242cd22896ad 100644 --- a/dev-ruby/minitest/ChangeLog +++ b/dev-ruby/minitest/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-ruby/minitest # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/minitest/ChangeLog,v 1.172 2014/11/25 20:52:47 mrueg Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/minitest/ChangeLog,v 1.173 2014/11/26 01:52:15 mrueg Exp $ + +*minitest-5.3.3-r1 (26 Nov 2014) + + 26 Nov 2014; Manuel Rüger <mrueg@gentoo.org> +minitest-5.3.3-r1.ebuild: + activerecord depends on <5.3.4. Get 5.3.3-r1 back. Drop jruby. 25 Nov 2014; Manuel Rüger <mrueg@gentoo.org> -minitest-5.3.3-r1.ebuild, -minitest-5.4.1.ebuild, -minitest-5.4.2.ebuild, minitest-4.7.5-r1.ebuild, diff --git a/dev-ruby/minitest/minitest-5.3.3-r1.ebuild b/dev-ruby/minitest/minitest-5.3.3-r1.ebuild new file mode 100644 index 000000000000..be63bbaed167 --- /dev/null +++ b/dev-ruby/minitest/minitest-5.3.3-r1.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/minitest/minitest-5.3.3-r1.ebuild,v 1.4 2014/11/26 01:52:15 mrueg Exp $ + +EAPI=5 +USE_RUBY="ruby19 ruby20 ruby21" + +RUBY_FAKEGEM_RECIPE_DOC="rdoc" + +RUBY_FAKEGEM_DOCDIR="doc" +RUBY_FAKEGEM_EXTRADOC="History.txt Manifest.txt README.txt" + +inherit ruby-fakegem + +DESCRIPTION="minitest/unit is a small and fast replacement for ruby's huge and slow test/unit" +HOMEPAGE="https://github.com/seattlerb/minitest" + +LICENSE="MIT" +SLOT="5" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +IUSE="doc test" + +each_ruby_test() { + for f in test/minitest/test_*.rb; do + ${RUBY} -Ilib:test ${f} || die "${f} tests failed" + done +} |