diff options
author | Manuel Rüger <mrueg@gentoo.org> | 2014-03-05 22:49:40 +0000 |
---|---|---|
committer | Manuel Rüger <mrueg@gentoo.org> | 2014-03-05 22:49:40 +0000 |
commit | 91e188d94a8ef0ac1cb417a4da2be73c7bdcc6b8 (patch) | |
tree | 59300dd3718cf935a67d6e2eb251a5f69f909228 | |
parent | Version bump. Cleanup old. (diff) | |
download | gentoo-2-91e188d94a8ef0ac1cb417a4da2be73c7bdcc6b8.tar.gz gentoo-2-91e188d94a8ef0ac1cb417a4da2be73c7bdcc6b8.tar.bz2 gentoo-2-91e188d94a8ef0ac1cb417a4da2be73c7bdcc6b8.zip |
Version bump.
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key )
-rw-r--r-- | dev-ruby/open4/ChangeLog | 9 | ||||
-rw-r--r-- | dev-ruby/open4/open4-1.3.3.ebuild | 37 |
2 files changed, 44 insertions, 2 deletions
diff --git a/dev-ruby/open4/ChangeLog b/dev-ruby/open4/ChangeLog index b63c8c3e38be..aab0ddf59273 100644 --- a/dev-ruby/open4/ChangeLog +++ b/dev-ruby/open4/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-ruby/open4 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/open4/ChangeLog,v 1.15 2013/12/27 02:34:18 mrueg Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/open4/ChangeLog,v 1.16 2014/03/05 22:49:40 mrueg Exp $ + +*open4-1.3.3 (05 Mar 2014) + + 05 Mar 2014; Manuel Rüger <mrueg@gentoo.org> +open4-1.3.3.ebuild: + Version bump. *open4-1.3.0-r2 (27 Dec 2013) diff --git a/dev-ruby/open4/open4-1.3.3.ebuild b/dev-ruby/open4/open4-1.3.3.ebuild new file mode 100644 index 000000000000..56711db5bf7e --- /dev/null +++ b/dev-ruby/open4/open4-1.3.3.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/open4/open4-1.3.3.ebuild,v 1.1 2014/03/05 22:49:40 mrueg Exp $ + +EAPI=5 +# jruby: not compatible with its fork implementation +USE_RUBY="ruby18 ruby19 ruby20 ruby21" + +RUBY_FAKEGEM_TASK_DOC="" +RUBY_FAKEGEM_EXTRADOC="README" + +inherit ruby-fakegem + +DESCRIPTION="Open3::popen3 with exit status" +HOMEPAGE="http://rubyforge.org/projects/codeforpeople/" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~ppc64 ~x86" +IUSE="" + +ruby_add_bdepend "test? ( dev-ruby/minitest )" + +all_ruby_prepare() { + mv rakefile Rakefile || die +} + +all_ruby_install() { + all_fakegem_install + + insinto /usr/share/doc/${PF}/samples + doins samples/* +} + +each_ruby_test() { + ${RUBY} -Ilib -Itest/support test/*.rb || die +} |