diff options
author | 2015-07-31 05:20:19 +0000 | |
---|---|---|
committer | 2015-07-31 05:20:19 +0000 | |
commit | fefbd124075347521a725253a59c378974177a1b (patch) | |
tree | a79664925c619a5a17338e71dea4592f72b87f66 /dev-ruby/ox | |
parent | Remove old (diff) | |
download | gentoo-2-fefbd124075347521a725253a59c378974177a1b.tar.gz gentoo-2-fefbd124075347521a725253a59c378974177a1b.tar.bz2 gentoo-2-fefbd124075347521a725253a59c378974177a1b.zip |
Version bump.
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
Diffstat (limited to 'dev-ruby/ox')
-rw-r--r-- | dev-ruby/ox/ChangeLog | 7 | ||||
-rw-r--r-- | dev-ruby/ox/ox-2.2.1.ebuild | 33 |
2 files changed, 39 insertions, 1 deletions
diff --git a/dev-ruby/ox/ChangeLog b/dev-ruby/ox/ChangeLog index 9471a3203c29..e39aa2bf5406 100644 --- a/dev-ruby/ox/ChangeLog +++ b/dev-ruby/ox/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-ruby/ox # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ox/ChangeLog,v 1.18 2015/07/11 20:20:38 zlogene Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ox/ChangeLog,v 1.19 2015/07/31 05:20:19 graaff Exp $ + +*ox-2.2.1 (31 Jul 2015) + + 31 Jul 2015; Hans de Graaff <graaff@gentoo.org> +ox-2.2.1.ebuild: + Version bump. 11 Jul 2015; Mikle Kolyada <zlogene@gentoo.org> ox-2.2.0-r1.ebuild: Add ~x86 keyword wrt bug #554410 diff --git a/dev-ruby/ox/ox-2.2.1.ebuild b/dev-ruby/ox/ox-2.2.1.ebuild new file mode 100644 index 000000000000..32a9191a0067 --- /dev/null +++ b/dev-ruby/ox/ox-2.2.1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ox/ox-2.2.1.ebuild,v 1.1 2015/07/31 05:20:19 graaff Exp $ + +EAPI=5 +USE_RUBY="ruby19 ruby20 ruby21 ruby22" + +RUBY_FAKEGEM_EXTRADOC="README.md" +RUBY_FAKEGEM_TASK_DOC="" + +inherit ruby-fakegem + +DESCRIPTION="A fast XML parser and Object marshaller" +HOMEPAGE="http://www.ohler.com/ox/ https://github.com/ohler55/ox" +SRC_URI="https://github.com/ohler55/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" +LICENSE="BSD" + +KEYWORDS="~amd64 ~x86" +SLOT="0" +IUSE="" + +each_ruby_configure() { + ${RUBY} -Cext/ox extconf.rb || die +} + +each_ruby_compile() { + emake V=1 -Cext/ox + cp ext/ox/ox$(get_modname) lib/ox/ || die +} + +each_ruby_test() { + ${RUBY} test/tests.rb || die +} |