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: Sat, 08 Feb 2020 07:52:37
Message-Id: 1581148317.58872bcdc968d92de8eba82e0c03c8e7bd6bbfd9.graaff@gentoo
1 commit: 58872bcdc968d92de8eba82e0c03c8e7bd6bbfd9
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 8 07:14:11 2020 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 8 07:51:57 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58872bcd
7
8 dev-ruby/sexp_processor: add 4.14.0
9
10 Package-Manager: Portage-2.3.84, Repoman-2.3.20
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.14.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 3c0d62a3ebc..08b697d4c04 100644
19 --- a/dev-ruby/sexp_processor/Manifest
20 +++ b/dev-ruby/sexp_processor/Manifest
21 @@ -1,3 +1,4 @@
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 +DIST sexp_processor-4.14.0.gem 55808 BLAKE2B 60e19163bfca60b019b462f251eddc1f3644207f8eb4ac6240cb5eec9365621c56bd0a6741d1371a502c745b41e6a5efa29323a43ce919d823c0f11fd1a4d6f5 SHA512 90a6ed905d79079b51849521e25d8e6aa87c8d9aced75883b4080568a30aa3c349df35bb74556a1755f77ed73d3260ce88534d1967db93b39b34cf28132e0093
26
27 diff --git a/dev-ruby/sexp_processor/sexp_processor-4.14.0.ebuild b/dev-ruby/sexp_processor/sexp_processor-4.14.0.ebuild
28 new file mode 100644
29 index 00000000000..6b5718af068
30 --- /dev/null
31 +++ b/dev-ruby/sexp_processor/sexp_processor-4.14.0.ebuild
32 @@ -0,0 +1,28 @@
33 +# Copyright 1999-2020 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +USE_RUBY="ruby25 ruby26 ruby27"
39 +
40 +RUBY_FAKEGEM_DOCDIR="doc"
41 +RUBY_FAKEGEM_EXTRADOC="README.rdoc History.rdoc"
42 +
43 +inherit ruby-fakegem
44 +
45 +DESCRIPTION="Processor for s-expressions created as part of the ParseTree project"
46 +HOMEPAGE="https://www.zenspider.com/projects/sexp_processor.html"
47 +
48 +LICENSE="GPL-2"
49 +SLOT="4"
50 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
51 +IUSE=""
52 +
53 +ruby_add_bdepend "
54 + test? (
55 + >=dev-ruby/minitest-5.5
56 + )"
57 +
58 +each_ruby_test() {
59 + ${RUBY} -Ilib:. -e 'Dir["test/test_*.rb"].each{|f| require f}' || die
60 +}