forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Package-Manager: portage-2.3.3
- Loading branch information
Showing
2 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
DIST ox-2.4.5.tar.gz 189176 SHA256 3d443b0bfd5670654698226e0a11ba7fba1c4213c19e838b465290bfa4cb8fee SHA512 5cca2abe7ea58d9f9957db4728f60e03dd5625b9201d4b9a8971aef78a7c5a74945afdf81a7a6d3523c59c073e58f6314990e8962afaeb562378fb748bfdef86 WHIRLPOOL 9659475014064ba3b7e981eb41694dda186bc6f8187fc2abdb8d0d36ef5b06beb4b0be28dec55196969c9d26e8e89dfae896cd801b98c150ee3381c597354414 | ||
DIST ox-2.4.7.tar.gz 189737 SHA256 51678519b0ef773f9431dce99775bb2eb9cf9c2e4f3992859522961bab2395fd SHA512 73caa4ed9d71c6b1adf138c930c36efefc32e79bf6222cd076d5fa80f2240c41b658c5493abbaf693670f0f4b18eaf95b8ed1f0a55c15e9fbef352d0c52dfa7e WHIRLPOOL 7c25cdc6dc730ef589356aa602f6853ca33ef7cd743c3bd19d4cc00a10ea2a1b16fa84b90796b084c04fcdfdc14bfb91b59c5072d8219b36fb8e1f03e6a58633 | ||
DIST ox-2.4.8.tar.gz 190593 SHA256 82e097857070369fe7b846a00ce5cb717e48b9ca5ed6acf03f823785290e1002 SHA512 9fc648551471eeda82e7c3a8eacd0522d6fad66e93ad8a60cab4956c8f70e3ca83c4a8afbe9374f6d97d99c8dc5144c332d27d6ae112525d3250e10530b18dcc WHIRLPOOL 2bf5d7ac87c0d6dd47851d262800dfd7fccc13146262747217d634a19a68fe3fd284686be3b07b19d7eeed49f5732e61a6695a39308064052cbf49300266fff3 | ||
DIST ox-2.4.9.tar.gz 190749 SHA256 224352960b3238d08b7ff65f8067ede3c3415e63a12ba8be5377c2cb3b8481e2 SHA512 3f8ce25aa469940ece367e1c719638f74d70d8b6a809819c27cfcde4d3d047e3d571e883702c3c38008d739aee121e3412cf52d74f25d7b6ccd2cb616bd905f7 WHIRLPOOL 0588d20d1a5617053d1ca444d6d2fd58b7510ea2b7bd92497f65eebabf60623073f7fa9815ed968e3cf157d82ec12b57cd5742c24a7001c55d0e9f9ae67d8ce7 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Copyright 1999-2017 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=5 | ||
USE_RUBY="ruby21 ruby22 ruby23 ruby24" | ||
|
||
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 ~ppc64 ~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 | ||
} |