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/coercible/
Date: Fri, 01 Jul 2022 12:57:52
Message-Id: 1656680264.f43b1126e38691081164bcf1c186051f808ab8ea.graaff@gentoo
1 commit: f43b1126e38691081164bcf1c186051f808ab8ea
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jul 1 09:12:27 2022 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 1 12:57:44 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f43b1126
7
8 dev-ruby/coercible: add 1.0.0_p20200116
9
10 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
11
12 dev-ruby/coercible/Manifest | 1 +
13 .../coercible/coercible-1.0.0_p20200116.ebuild | 31 ++++++++++++++++++++++
14 2 files changed, 32 insertions(+)
15
16 diff --git a/dev-ruby/coercible/Manifest b/dev-ruby/coercible/Manifest
17 index a4a39c67364f..3aeb533becc1 100644
18 --- a/dev-ruby/coercible/Manifest
19 +++ b/dev-ruby/coercible/Manifest
20 @@ -1 +1,2 @@
21 DIST coercible-1.0.0.gem 24064 BLAKE2B 5f9708211600621869e78742dc5421672f27162c1e09e703bb2954d67b2ad281ddf59f9ecb28722f4423cbd0c7fc8bc14bda0f1f064135cbefc24ddb94ab1648 SHA512 5de43166625cca102cd048ae5cd4113ef834b273fb798490a99eeaab423174f1fa40410546de4e0224234efb996a4aa1f2c37b093298f50356f925b8a6163767
22 +DIST coercible-1.0.0_p20200116.tar.gz 18949 BLAKE2B 92c4b2a38ac662d270aacd2d46216c188fef12b99f0a54c2642d96f72e5d45fac895c8e0c1d4300784e754f384eb86a9731c32a9780af9877668251fa39eca57 SHA512 27c563a70a028af0fdcf72200b47e29b4eb312539d16634b9533140903504a42284ff31fe73286b0944129b6481614184c2966f47b82d08ac419bdadb862f5ea
23
24 diff --git a/dev-ruby/coercible/coercible-1.0.0_p20200116.ebuild b/dev-ruby/coercible/coercible-1.0.0_p20200116.ebuild
25 new file mode 100644
26 index 000000000000..8ab84b741a99
27 --- /dev/null
28 +++ b/dev-ruby/coercible/coercible-1.0.0_p20200116.ebuild
29 @@ -0,0 +1,31 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +USE_RUBY="ruby26 ruby27 ruby30 ruby31"
36 +
37 +RUBY_FAKEGEM_EXTRADOC="README.md Changelog.md"
38 +RUBY_FAKEGEM_GEMSPEC="coercible.gemspec"
39 +RUBY_FAKEGEM_RECIPE_TEST="rspec3"
40 +
41 +COMMIT=c076869838531abb5783280da108aa3cbddbd61a
42 +
43 +inherit ruby-fakegem
44 +
45 +DESCRIPTION="Powerful, flexible and configurable coercion library"
46 +HOMEPAGE="https://github.com/solnic/coercible https://rubygems.org/gems/coercible"
47 +SRC_URI="https://github.com/solnic/coercible/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
48 +RUBY_S="${PN}-${COMMIT}"
49 +
50 +LICENSE="MIT"
51 +SLOT="0"
52 +KEYWORDS="~amd64"
53 +IUSE=""
54 +
55 +ruby_add_rdepend ">=dev-ruby/descendants_tracker-0.0.1
56 + <dev-ruby/descendants_tracker-0.1"
57 +
58 +all_ruby_prepare() {
59 + sed -i -e 's/git ls-files/find * -print/' ${RUBY_FAKEGEM_GEMSPEC} || die
60 +}