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: Tue, 27 Mar 2018 05:48:45
Message-Id: 1522129664.1cd45769ce441b1e6e0d09a6a63f728d3eae4206.graaff@gentoo
1 commit: 1cd45769ce441b1e6e0d09a6a63f728d3eae4206
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Tue Mar 27 04:53:37 2018 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Tue Mar 27 05:47:44 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1cd45769
7
8 dev-ruby/slop: add 4.6.2
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11
12 dev-ruby/slop/Manifest | 1 +
13 dev-ruby/slop/slop-4.6.2.ebuild | 26 ++++++++++++++++++++++++++
14 2 files changed, 27 insertions(+)
15
16 diff --git a/dev-ruby/slop/Manifest b/dev-ruby/slop/Manifest
17 index 85a42e3836b..fd5600b27af 100644
18 --- a/dev-ruby/slop/Manifest
19 +++ b/dev-ruby/slop/Manifest
20 @@ -2,3 +2,4 @@ DIST slop-3.6.0.tgz 19570 BLAKE2B a65b4bf689d48f7a97d00a9a06a926d5cd10a62053e9ff
21 DIST slop-4.4.1.tgz 14506 BLAKE2B 2750bba5b58e56e333cfdb5397bda025e6d55cc08411ad2c50f2def00c2dd9830cf9e3078ac0fc34d36e0d940e7985bce19539ba47ac7748cc10a392238cde70 SHA512 fc0675ee82664195823e5fe465d0812324722b1ecf8d998e13cdcd2cafa7f5ddab3b10b2912ecaf6213f44edfb8baa09e6437596bd4a9a3d7d329efa52bcfc1e
22 DIST slop-4.4.3.tgz 14763 BLAKE2B e0bfbf296b5c17fe9b8a96c3b8c579444084882cfa5cdca6a9aee8dac6e1290959b00e12078a79c64c1dd1fd2ca5282b9efae57751a1a2a1435bb3dce617724e SHA512 ef34bde9a11734b833270a7a2e5e41996c448d02ab4af37950abfd053c817d1075f0ec2fb8068642d784e2e285b9cba9d6e002f97a1a84cc7dba84a319624544
23 DIST slop-4.6.1.tgz 15670 BLAKE2B 688c01b03489902fae3e5528b3d33618e28f9d26432834a5c92bd7aa9fc1065688d980e2beb0c92bf81a27e5a372bfdd7739e1311954272571a17e7902be709e SHA512 c32714dd54f65fc5f0da680a94a74c0acb573e3fe5bf36770d849180b921e9794bb0a5dadfe340f7177cc91b433c895cf5d22ff078a9b13d872a24a153cf7236
24 +DIST slop-4.6.2.tgz 15750 BLAKE2B a31c8ec895e534be7fe77eb09909c2210d298c1a89099080af816b9e06a5ee2358aef223b1ce0669f9d40cc91c04ce55e8ebb6d506a4bec35fb1fd9b93c0017d SHA512 352d7e5bbbe9ae4c324d1561f953fe28c1c99078bdef27f1be45453e60b34e0191e94d8952ec0a8cee7d689c6ba910616c9515747e81a8378fa825cb2139bfc7
25
26 diff --git a/dev-ruby/slop/slop-4.6.2.ebuild b/dev-ruby/slop/slop-4.6.2.ebuild
27 new file mode 100644
28 index 00000000000..b1b5e9148f2
29 --- /dev/null
30 +++ b/dev-ruby/slop/slop-4.6.2.ebuild
31 @@ -0,0 +1,26 @@
32 +# Copyright 1999-2018 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=6
36 +USE_RUBY="ruby22 ruby23 ruby24 ruby25"
37 +
38 +RUBY_FAKEGEM_TASK_DOC=""
39 +RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
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 +}