Gentoo Archives: gentoo-commits

From: Hans de Graaff <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/sexp_processor/
Date: Fri, 27 Sep 2019 04:41:30
Message-Id: 1569558746.0cf137595d00e44670c4c045dc2363c1dd063fee.graaff@gentoo
1 commit: 0cf137595d00e44670c4c045dc2363c1dd063fee
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 27 04:32:26 2019 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 27 04:32:26 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0cf13759
7
8 dev-ruby/sexp_processor: add 4.13.0
9
10 Package-Manager: Portage-2.3.69, Repoman-2.3.16
11 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
12
13 dev-ruby/sexp_processor/Manifest | 1 +
14 .../sexp_processor/sexp_processor-4.13.0.ebuild | 28 ++++++++++++++++++++++
15 2 files changed, 29 insertions(+)
16
17 diff --git a/dev-ruby/sexp_processor/Manifest b/dev-ruby/sexp_processor/Manifest
18 index c65b777336e..3c0d62a3ebc 100644
19 --- a/dev-ruby/sexp_processor/Manifest
20 +++ b/dev-ruby/sexp_processor/Manifest
21 @@ -1,2 +1,3 @@
22 DIST sexp_processor-4.12.0.gem 54784 BLAKE2B bdbb349a85fbd1c7750db3dcd22d9b792eb17605d5157c969d083a8fca404b1af3db1e2bfdcf76a6b7f392043996d246686dfa73117b9efacec529896d5a8e35 SHA512 d1e1ae7cf13b0b8c2e6786aad1bdeda25697d88abec86fc9415bb76d4e9e98097d2fecf16ceddbc80d1d447064bfa73beec5eaa5270ef38ce224c4bdbcdede3a
23 DIST sexp_processor-4.12.1.gem 54784 BLAKE2B 95b238abb3050448cd076cfbda61d60c1d2bd90cfc94c3eafb51187b48a26249eb84b26e2a9469414e61f1c26f7764703fdf33842cb77730219048f999d48b92 SHA512 00f27cfea808ce16eba209207f804a432057d434c181d62f44656798d051c783f0232fa9ff9068ba83c254dfc0bb50d59a83196bf2a5f247f438b6467d9ba701
24 +DIST sexp_processor-4.13.0.gem 55808 BLAKE2B d807f632e93bbffaf92c31214a5d76fb5f069563af07f3f3c9d8095114d4ffc41a759144f93e1081d4192e6b7d572feab2be10a5fd639bafc0d3b166a4d5b5e1 SHA512 0b83613c10dd268837bddd552910c799e002eea6b409aa9788a5a65957454d2ef601cc023f84d98dbacc34e3c58923d6c43115510bae7ec9d2d72286f141828a
25
26 diff --git a/dev-ruby/sexp_processor/sexp_processor-4.13.0.ebuild b/dev-ruby/sexp_processor/sexp_processor-4.13.0.ebuild
27 new file mode 100644
28 index 00000000000..b8f41f04436
29 --- /dev/null
30 +++ b/dev-ruby/sexp_processor/sexp_processor-4.13.0.ebuild
31 @@ -0,0 +1,28 @@
32 +# Copyright 1999-2019 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +USE_RUBY="ruby24 ruby25 ruby26"
38 +
39 +RUBY_FAKEGEM_DOCDIR="doc"
40 +RUBY_FAKEGEM_EXTRADOC="README.rdoc History.rdoc"
41 +
42 +inherit ruby-fakegem
43 +
44 +DESCRIPTION="Processor for s-expressions created as part of the ParseTree project"
45 +HOMEPAGE="https://www.zenspider.com/projects/sexp_processor.html"
46 +
47 +LICENSE="GPL-2"
48 +SLOT="4"
49 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
50 +IUSE=""
51 +
52 +ruby_add_bdepend "
53 + test? (
54 + >=dev-ruby/minitest-5.5
55 + )"
56 +
57 +each_ruby_test() {
58 + ${RUBY} -Ilib:. -e 'Dir["test/test_*.rb"].each{|f| require f}' || die
59 +}