From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id DA8141382C6 for ; Fri, 24 Jun 2016 05:45:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 65466941BD; Fri, 24 Jun 2016 05:45:55 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A2593941C1 for ; Fri, 24 Jun 2016 05:45:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AB3B4340D19 for ; Fri, 24 Jun 2016 05:45:53 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 497572412 for ; Fri, 24 Jun 2016 05:45:51 +0000 (UTC) From: "Hans de Graaff" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Hans de Graaff" Message-ID: <1466747131.100709215778e0ec7873130605e54c3f62ba3ee8.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/ox/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/ox/Manifest dev-ruby/ox/ox-2.4.2.ebuild X-VCS-Directories: dev-ruby/ox/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 100709215778e0ec7873130605e54c3f62ba3ee8 X-VCS-Branch: master Date: Fri, 24 Jun 2016 05:45:51 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 5750e7f9-919d-4a10-9904-f03289452150 X-Archives-Hash: b6a697d8efe918123ad7591a3e7267c7 commit: 100709215778e0ec7873130605e54c3f62ba3ee8 Author: Hans de Graaff gentoo org> AuthorDate: Fri Jun 24 04:31:28 2016 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Fri Jun 24 05:45:31 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10070921 dev-ruby/ox: add 2.4.2 Package-Manager: portage-2.2.28 dev-ruby/ox/Manifest | 1 + dev-ruby/ox/ox-2.4.2.ebuild | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+) diff --git a/dev-ruby/ox/Manifest b/dev-ruby/ox/Manifest index ec7a593..e696747 100644 --- a/dev-ruby/ox/Manifest +++ b/dev-ruby/ox/Manifest @@ -1 +1,2 @@ DIST ox-2.4.1.tar.gz 188550 SHA256 c9f26c026d614e1af52585dd271cbd4c794b861242ac1b71b08c2e195b10b1b9 SHA512 69f0d24d8b712cdc34e3da2ab72e503af40c96387c0f6eeb73f4a753e4b64ebd0c2f214c10511d2d02395ceb86dffb6f0b94bee5272577e203f731bf4fde4630 WHIRLPOOL 99006b2963a1c61a6efd7da47c8e28b5e3fb23660a9a493cb94c99674789fc42a455a50f78bd0f511ced52913229b3a7ee5875cdbb2e3aa3056bccc969aeeb68 +DIST ox-2.4.2.tar.gz 188957 SHA256 375755d57786519c98ffdb6a2bd34337d1bb02b80ec12f547ea411eb11857c7f SHA512 64bfbe7d57878901b7b30ff3bc078edfad8a5d5a28ffac243193ab51a7c22d15781056f4b92505dbadbc860a231661cdab8ca06f65e548709f1bb5105ffa32d1 WHIRLPOOL 2a4f975492dd88a713229c610ef80f210692aa00c581d5638d84048bbc8baec0986ba33f171052dab1b0699b73b540168394b5ae2eb5be99ba0aa3e4430431e8 diff --git a/dev-ruby/ox/ox-2.4.2.ebuild b/dev-ruby/ox/ox-2.4.2.ebuild new file mode 100644 index 0000000..7137319 --- /dev/null +++ b/dev-ruby/ox/ox-2.4.2.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +USE_RUBY="ruby20 ruby21 ruby22 ruby23" + +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 +}