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: Sat, 18 Mar 2023 07:17:46
Message-Id: 1679123676.584e5622a79a476ccb78772eddb1d2d5b0e26c02.graaff@gentoo
1 commit: 584e5622a79a476ccb78772eddb1d2d5b0e26c02
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sat Mar 18 07:14:36 2023 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 18 07:14:36 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=584e5622
7
8 dev-ruby/slop: add 4.10.1
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.10.1.ebuild | 28 ++++++++++++++++++++++++++++
14 2 files changed, 29 insertions(+)
15
16 diff --git a/dev-ruby/slop/Manifest b/dev-ruby/slop/Manifest
17 index 7b763077d0fd..cd53596588d9 100644
18 --- a/dev-ruby/slop/Manifest
19 +++ b/dev-ruby/slop/Manifest
20 @@ -1,3 +1,4 @@
21 DIST slop-4.10.0.tgz 17595 BLAKE2B ef542c9062dfd3381c7cbc5d1cb004a0d7e1f9d9ea78ee835704aa744309e6c4ac003d91328da89d3fdb734e5495e9f7cb05b2498e0f2126edecec8a83c97283 SHA512 22c586ef1e5ecebc3311496ae6285219b41627e5d15032a15964b682bc98eda7dca8d69017eaae0fbce31e7787a0e974ee58e340c6acd475f0f60001f7e9c85b
22 +DIST slop-4.10.1.tgz 17752 BLAKE2B d7be110a9fa012af3df26aa4a7dc055fe9443ca131ee078adb05fb4ef87c6976520ee96aca23893abb651bd6fa22ea350be5851ca6f142b301551447c0b12c34 SHA512 0ffca1dcb550a4b21188647bbc433345c62c61dcb5c6e647727ab21d0816a13b6e6cb17180eb86a870eb50ed67b2f44f72f38490f907ba21acaa81c2a2febc53
23 DIST slop-4.9.2.tgz 16633 BLAKE2B 8907314016066569279dbab6b52f50cee58044b46c1a88c7cfab3a31e1bd7e702f63da170a42f113c5611080d5d212b970dddd1e3aeb2bc8e86d5ea577b9f163 SHA512 dbecbc5edaf257131edf54fb5577531a962a6ed64f9414342b5060bee479cf7e4c9cfb891af3553644fbe7817a2067de3c83b379651a62da5983f0c42cd68fd6
24 DIST slop-4.9.3.tgz 16887 BLAKE2B 10ce02eec161fa12a1f6078047c5461476a45e02ea6e27f4e9c888611cc24a8f74e7cf90607a93a9510b41577e70e344caeb7d865eaf0bc9f980cc34d73899d4 SHA512 fbbf9aa5e12ee6b5d3c1e2bbe55c160e196fb201ff50c266f035e7150b9ec3bc223c89e354e16b9cd4cecabaa71935334722e53b0363d5a2a59f6c0e50c2dc97
25
26 diff --git a/dev-ruby/slop/slop-4.10.1.ebuild b/dev-ruby/slop/slop-4.10.1.ebuild
27 new file mode 100644
28 index 000000000000..003a4bf68a9e
29 --- /dev/null
30 +++ b/dev-ruby/slop/slop-4.10.1.ebuild
31 @@ -0,0 +1,28 @@
32 +# Copyright 1999-2023 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=8
36 +USE_RUBY="ruby27 ruby30 ruby31 ruby32"
37 +
38 +RUBY_FAKEGEM_TASK_DOC=""
39 +RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
40 +
41 +RUBY_FAKEGEM_GEMSPEC="slop.gemspec"
42 +
43 +inherit ruby-fakegem
44 +
45 +DESCRIPTION="A simple option parser with an easy to remember syntax and friendly API"
46 +HOMEPAGE="https://github.com/leejarvis/slop"
47 +SRC_URI="https://github.com/leejarvis/${PN}/archive/v${PV}.tar.gz -> ${P}.tgz"
48 +
49 +LICENSE="MIT"
50 +SLOT="4"
51 +KEYWORDS="~amd64 ~ppc64 ~x86"
52 +
53 +IUSE=""
54 +
55 +ruby_add_bdepend "test? ( dev-ruby/minitest )"
56 +
57 +all_ruby_prepare() {
58 + sed -i -e '/git ls-files/d' slop.gemspec || die
59 +}