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-3.0.30, Repoman-3.0.3 Signed-off-by: Hans de Graaff <[email protected]>
- Loading branch information
Showing
2 changed files
with
28 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.14.4.tar.gz 209459 BLAKE2B e5e029ac5050cd44d0b80c313afb7415495203562bd08b34d4028310e853654b287920531f59f11c149715145e5aa44d3a9b1b2c8eb1c13a1095dc78a5fab95a SHA512 885aee65ae4a833dc9fc1847201f1d922e0d615831674abaa2d8169a22913202e49d677ce792bfe2d71cc9990d5a7652684f0d55606daf5f4a538d24078b4496 | ||
DIST ox-2.14.6.tar.gz 211961 BLAKE2B 98dee742fd0b8c237244a799fb30dae9542faef94cf2d7fdb57ae96fd091f62304134b3eb5b469b5b1c7d3be44382e90c344911336fb8d0d7a9106b71554eb48 SHA512 f255e36c19e53cf1cfae2696365ebe5418b165e8d1e5631651a800f47c3388aa383191c5cfa21b15ac043536544a74330e0b5a1ee8fabc5f0bb902850d5e7c30 | ||
DIST ox-2.14.8.tar.gz 218502 BLAKE2B e3838c52096c959fcdf2eae2156a79f1562cd13c8463f0a3f0ff54f9468059547e9bfc79f2a7b750f614fd77d5ae56189679fb55f9771903697864cc80b0831b SHA512 a07e7d074c681325c84cf7f381be7d1912b9de53cb41d11762fca15a6899a66bbf0ad751119416ec4640cde8c11dae967514fcfb16acae6f5be76d03f2b46eac | ||
DIST ox-2.14.9.tar.gz 218618 BLAKE2B 57f5a43cf565079a07b678f45e14764ef859620d2f66c5348362d6f08e7f9d3a2b358ff81b2c2455bdb39dbf562df6aca45557895abc30d0cc16657c979b8806 SHA512 e2f178b30ad8e94873e0f8e0ed95800963655ffe31c0af9af3231df5a2d769487204507bca91573a381550ef80b08b15414e6607c5236f5bb8994a719a5ea5cb |
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,27 @@ | ||
# Copyright 1999-2022 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
USE_RUBY="ruby26 ruby27 ruby30" | ||
|
||
RUBY_FAKEGEM_EXTRADOC="README.md" | ||
|
||
RUBY_FAKEGEM_GEMSPEC="ox.gemspec" | ||
|
||
RUBY_FAKEGEM_EXTENSIONS=(ext/ox/extconf.rb) | ||
RUBY_FAKEGEM_EXTENSION_LIBDIR=lib/ox | ||
|
||
inherit ruby-fakegem | ||
|
||
DESCRIPTION="A fast XML parser and Object marshaller" | ||
HOMEPAGE="https://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 ~ppc ~ppc64 ~x86" | ||
SLOT="0" | ||
IUSE="" | ||
|
||
each_ruby_test() { | ||
${RUBY} test/tests.rb || die | ||
} |