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/slop/
Date: Mon, 28 Mar 2022 05:49:41
Message-Id: 1648446551.1c2007b3af8edad16b40aef45b4ede9e26adda38.graaff@gentoo
1 commit: 1c2007b3af8edad16b40aef45b4ede9e26adda38
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Mon Mar 28 05:49:11 2022 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Mon Mar 28 05:49:11 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c2007b3
7
8 dev-ruby/slop: add 4.9.2
9
10 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
11
12 dev-ruby/slop/Manifest | 1 +
13 dev-ruby/slop/slop-4.9.2.ebuild | 28 ++++++++++++++++++++++++++++
14 2 files changed, 29 insertions(+)
15
16 diff --git a/dev-ruby/slop/Manifest b/dev-ruby/slop/Manifest
17 index 2fac4c8e76e1..39ddb4f0416f 100644
18 --- a/dev-ruby/slop/Manifest
19 +++ b/dev-ruby/slop/Manifest
20 @@ -1 +1,2 @@
21 DIST slop-4.9.1.tgz 16455 BLAKE2B 5d66e1a03b69ac9bbc272c20adbe0daa1a086abf8651838a59c74bde6ff4e136c6b1e10c2266a96508ed333a0f752ace98f95a223464efef2ecea7eeededb024 SHA512 3211b876b910b76413d9109ea7ab400429fb350089a3d89a56b85894a556d0c278daea258551c355a96d9ec592bc7426d9461b7a3fed935c9917e9c18069e89f
22 +DIST slop-4.9.2.tgz 16633 BLAKE2B 8907314016066569279dbab6b52f50cee58044b46c1a88c7cfab3a31e1bd7e702f63da170a42f113c5611080d5d212b970dddd1e3aeb2bc8e86d5ea577b9f163 SHA512 dbecbc5edaf257131edf54fb5577531a962a6ed64f9414342b5060bee479cf7e4c9cfb891af3553644fbe7817a2067de3c83b379651a62da5983f0c42cd68fd6
23
24 diff --git a/dev-ruby/slop/slop-4.9.2.ebuild b/dev-ruby/slop/slop-4.9.2.ebuild
25 new file mode 100644
26 index 000000000000..adc818e81c51
27 --- /dev/null
28 +++ b/dev-ruby/slop/slop-4.9.2.ebuild
29 @@ -0,0 +1,28 @@
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="ruby26 ruby27 ruby30 ruby31"
35 +
36 +RUBY_FAKEGEM_TASK_DOC=""
37 +RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
38 +
39 +RUBY_FAKEGEM_GEMSPEC="slop.gemspec"
40 +
41 +inherit ruby-fakegem
42 +
43 +DESCRIPTION="A simple option parser with an easy to remember syntax and friendly API"
44 +HOMEPAGE="https://github.com/injekt/slop"
45 +SRC_URI="https://github.com/injekt/${PN}/archive/v${PV}.tar.gz -> ${P}.tgz"
46 +
47 +LICENSE="MIT"
48 +SLOT="4"
49 +KEYWORDS="~amd64 ~ppc64 ~x86"
50 +
51 +IUSE=""
52 +
53 +ruby_add_bdepend "test? ( dev-ruby/minitest )"
54 +
55 +all_ruby_prepare() {
56 + sed -i -e '/git ls-files/d' slop.gemspec || die
57 +}