diff options
author | 2015-08-04 04:46:59 +0000 | |
---|---|---|
committer | 2015-08-04 04:46:59 +0000 | |
commit | d3615b6692f9defe5b19bb5fd8c7ad3d3d22efba (patch) | |
tree | 9c9dc5783544236427d331d8d620b36b9f559ccf /dev-ruby/ast | |
parent | readline is slotted (diff) | |
download | gentoo-2-d3615b6692f9defe5b19bb5fd8c7ad3d3d22efba.tar.gz gentoo-2-d3615b6692f9defe5b19bb5fd8c7ad3d3d22efba.tar.bz2 gentoo-2-d3615b6692f9defe5b19bb5fd8c7ad3d3d22efba.zip |
Version bump.
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
Diffstat (limited to 'dev-ruby/ast')
-rw-r--r-- | dev-ruby/ast/ChangeLog | 7 | ||||
-rw-r--r-- | dev-ruby/ast/ast-2.1.0.ebuild | 32 |
2 files changed, 38 insertions, 1 deletions
diff --git a/dev-ruby/ast/ChangeLog b/dev-ruby/ast/ChangeLog index d3a7d3cbd791..2e347530f328 100644 --- a/dev-ruby/ast/ChangeLog +++ b/dev-ruby/ast/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-ruby/ast # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ast/ChangeLog,v 1.3 2015/06/07 16:47:34 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ast/ChangeLog,v 1.4 2015/08/04 04:46:59 graaff Exp $ + +*ast-2.1.0 (04 Aug 2015) + + 04 Aug 2015; Hans de Graaff <graaff@gentoo.org> +ast-2.1.0.ebuild: + Version bump. 07 Jun 2015; Justin Lecher <jlec@gentoo.org> metadata.xml: Add github to remote-id in metadata.xml diff --git a/dev-ruby/ast/ast-2.1.0.ebuild b/dev-ruby/ast/ast-2.1.0.ebuild new file mode 100644 index 000000000000..35d7fc64e4a2 --- /dev/null +++ b/dev-ruby/ast/ast-2.1.0.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ast/ast-2.1.0.ebuild,v 1.1 2015/08/04 04:46:59 graaff Exp $ + +EAPI=5 +USE_RUBY="ruby19 ruby20 ruby21 ruby22" + +RUBY_FAKEGEM_RECIPE_DOC="yard" +RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md" + +inherit ruby-fakegem + +DESCRIPTION="A library for working with abstract syntax trees" +HOMEPAGE="https://github.com/whitequark/ast" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +ruby_add_bdepend "test? ( + dev-ruby/bacon )" + +all_ruby_prepare() { + sed -i -e "/[Bb]undler/d" Rakefile || die + sed -i -e "/git ls/d" ${PN}.gemspec || die + sed -i -e "/simplecov/,+11d" -e "/colored_output/d" test/helper.rb || die +} + +each_ruby_test() { + ${RUBY} -S bacon -Itest -a || die +} |