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/jmespath/
Date: Mon, 28 Nov 2022 07:01:08
Message-Id: 1669618860.ccd444927a63786ed1f4a6101c447714d571ba9d.graaff@gentoo
1 commit: ccd444927a63786ed1f4a6101c447714d571ba9d
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sun Nov 27 07:41:01 2022 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Mon Nov 28 07:01:00 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ccd44492
7
8 dev-ruby/jmespath: add 1.6.2
9
10 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
11
12 dev-ruby/jmespath/Manifest | 1 +
13 dev-ruby/jmespath/jmespath-1.6.2.ebuild | 27 +++++++++++++++++++++++++++
14 2 files changed, 28 insertions(+)
15
16 diff --git a/dev-ruby/jmespath/Manifest b/dev-ruby/jmespath/Manifest
17 index 1ebc44c75643..1f3fe455bc96 100644
18 --- a/dev-ruby/jmespath/Manifest
19 +++ b/dev-ruby/jmespath/Manifest
20 @@ -1 +1,2 @@
21 DIST jmespath-1.6.1.tar.gz 40731 BLAKE2B 004da1c19a9990f83cc7484afccf7f7c8b6924ff538a0779752a4fd2aa0d469fd7ddf975f39e50f3f3d806109d6742adbc16237dec5760c224a59e6791954529 SHA512 8c66235463f1d83a2b061e9e01b5ef0d3d12df5a034a334d3c06a919bc2049b44dd740da0297e1774300533bc9968614f3d961deb4bfe808c9221e03d6f1bbed
22 +DIST jmespath-1.6.2.tar.gz 40932 BLAKE2B e19a2bacb8e207f65e45d1ad8eaaceb5ab6cbd847dc1009b45c618d426e5cc5814a1b1a806ccd935a83e3dacff3bcefedf9c7241586a348f2b705d80e63ba27d SHA512 2118c348bb25285f002fce64d0f7a00a5850c9f1b39d71d16c0c4335469069861bc51a81a9aec95f5625ae6b2d9daaa8b40ada817ac83ef83349c33e906561e7
23
24 diff --git a/dev-ruby/jmespath/jmespath-1.6.2.ebuild b/dev-ruby/jmespath/jmespath-1.6.2.ebuild
25 new file mode 100644
26 index 000000000000..c3f5e802faf7
27 --- /dev/null
28 +++ b/dev-ruby/jmespath/jmespath-1.6.2.ebuild
29 @@ -0,0 +1,27 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +USE_RUBY="ruby27 ruby30 ruby31"
35 +
36 +RUBY_FAKEGEM_EXTRAINSTALL="VERSION"
37 +RUBY_FAKEGEM_GEMSPEC="jmespath.gemspec"
38 +RUBY_FAKEGEM_RECIPE_TEST="rspec3"
39 +
40 +inherit ruby-fakegem
41 +
42 +DESCRIPTION="Implements JMESPath for Ruby"
43 +HOMEPAGE="https://github.com/jmespath/jmespath.rb"
44 +SRC_URI="https://github.com/jmespath/jmespath.rb/archive/v${PV}.tar.gz -> ${P}.tar.gz"
45 +RUBY_S="${PN}.rb-${PV}"
46 +
47 +LICENSE="Apache-2.0"
48 +SLOT="1"
49 +KEYWORDS="~amd64 ~arm64"
50 +IUSE=""
51 +
52 +all_ruby_prepare() {
53 + sed -i -e '/simplecov/I s:^:#:' \
54 + spec/{compliance_spec,compliance_without_errors_spec,spec_helper}.rb || die
55 + sed -i -e '/bundler/I s:^:#:' spec/spec_helper.rb || die
56 +}