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: Fri, 11 Sep 2020 04:32:59
Message-Id: 1599798430.18f8359d435c78ba32a61a7f9cf35693e52bdb72.graaff@gentoo
1 commit: 18f8359d435c78ba32a61a7f9cf35693e52bdb72
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 11 04:27:10 2020 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 11 04:27:10 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18f8359d
7
8 dev-ruby/slop: add 4.8.2
9
10 Package-Manager: Portage-3.0.4, Repoman-3.0.1
11 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
12
13 dev-ruby/slop/Manifest | 1 +
14 dev-ruby/slop/slop-4.8.2.ebuild | 28 ++++++++++++++++++++++++++++
15 2 files changed, 29 insertions(+)
16
17 diff --git a/dev-ruby/slop/Manifest b/dev-ruby/slop/Manifest
18 index 429a86bb7da..951bc708223 100644
19 --- a/dev-ruby/slop/Manifest
20 +++ b/dev-ruby/slop/Manifest
21 @@ -1 +1,2 @@
22 DIST slop-4.8.1.tgz 16805 BLAKE2B 875b9a1895d99147f6d597b976831fcb406170d6172ad4c888f53cb18e35439f9fc6bcf785864a3209de5169166b2760d196e1f2f102308db3aec07950fe5e88 SHA512 4edace1693081ab7f9d1efaeb9c894f34c0012ae827ee13bd1c8014c222e88db20b082be3d6b0a97e664135b2ba09bec9e7ecb0d20c22b32a859ac574fd2b71e
23 +DIST slop-4.8.2.tgz 16102 BLAKE2B c43af7350346961db1b19db2fbded24dc8a5483cf487f6dd6f6c486f9539984048f43eef7c3152da42b4c833eb9ec75d7ebfd89c7e759e5e5279bd5f69992f6a SHA512 1747981d5723b935f4d2a89787cf090645e43793b7430d43687dde6dc7e0bc8b52c30497f656e360e0cb95d62f3abb19d9dc4aebb617da57de1211104217bdc4
24
25 diff --git a/dev-ruby/slop/slop-4.8.2.ebuild b/dev-ruby/slop/slop-4.8.2.ebuild
26 new file mode 100644
27 index 00000000000..6618224d585
28 --- /dev/null
29 +++ b/dev-ruby/slop/slop-4.8.2.ebuild
30 @@ -0,0 +1,28 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +USE_RUBY="ruby25 ruby26 ruby27"
36 +
37 +RUBY_FAKEGEM_TASK_DOC=""
38 +RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
39 +
40 +RUBY_FAKEGEM_GEMSPEC="slop.gemspec"
41 +
42 +inherit ruby-fakegem
43 +
44 +DESCRIPTION="A simple option parser with an easy to remember syntax and friendly API"
45 +HOMEPAGE="https://github.com/injekt/slop"
46 +SRC_URI="https://github.com/injekt/${PN}/archive/v${PV}.tar.gz -> ${P}.tgz"
47 +
48 +LICENSE="MIT"
49 +SLOT="4"
50 +KEYWORDS="~amd64 ~ppc64 ~x86"
51 +
52 +IUSE=""
53 +
54 +ruby_add_bdepend "test? ( dev-ruby/minitest )"
55 +
56 +all_ruby_prepare() {
57 + sed -i -e '/git ls-files/d' slop.gemspec || die
58 +}