diff options
author | Hans de Graaff <graaff@gentoo.org> | 2021-06-20 07:58:48 +0200 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2021-06-20 08:03:19 +0200 |
commit | 52611d6b49161f0124cb19bfea248aec3e7f1f53 (patch) | |
tree | 92ac26cac3f3f28dc97d74ec48dc50478302f31c /dev-ruby/slop | |
parent | dev-ruby/recog: cleanup (diff) | |
download | gentoo-52611d6b49161f0124cb19bfea248aec3e7f1f53.tar.gz gentoo-52611d6b49161f0124cb19bfea248aec3e7f1f53.tar.bz2 gentoo-52611d6b49161f0124cb19bfea248aec3e7f1f53.zip |
dev-ruby/slop: add 4.9.1
Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: Hans de Graaff <graaff@gentoo.org>
Diffstat (limited to 'dev-ruby/slop')
-rw-r--r-- | dev-ruby/slop/Manifest | 1 | ||||
-rw-r--r-- | dev-ruby/slop/slop-4.9.1.ebuild | 28 |
2 files changed, 29 insertions, 0 deletions
diff --git a/dev-ruby/slop/Manifest b/dev-ruby/slop/Manifest index 951bc708223d..5223e756fbd2 100644 --- a/dev-ruby/slop/Manifest +++ b/dev-ruby/slop/Manifest @@ -1,2 +1,3 @@ DIST slop-4.8.1.tgz 16805 BLAKE2B 875b9a1895d99147f6d597b976831fcb406170d6172ad4c888f53cb18e35439f9fc6bcf785864a3209de5169166b2760d196e1f2f102308db3aec07950fe5e88 SHA512 4edace1693081ab7f9d1efaeb9c894f34c0012ae827ee13bd1c8014c222e88db20b082be3d6b0a97e664135b2ba09bec9e7ecb0d20c22b32a859ac574fd2b71e DIST slop-4.8.2.tgz 16102 BLAKE2B c43af7350346961db1b19db2fbded24dc8a5483cf487f6dd6f6c486f9539984048f43eef7c3152da42b4c833eb9ec75d7ebfd89c7e759e5e5279bd5f69992f6a SHA512 1747981d5723b935f4d2a89787cf090645e43793b7430d43687dde6dc7e0bc8b52c30497f656e360e0cb95d62f3abb19d9dc4aebb617da57de1211104217bdc4 +DIST slop-4.9.1.tgz 16455 BLAKE2B 5d66e1a03b69ac9bbc272c20adbe0daa1a086abf8651838a59c74bde6ff4e136c6b1e10c2266a96508ed333a0f752ace98f95a223464efef2ecea7eeededb024 SHA512 3211b876b910b76413d9109ea7ab400429fb350089a3d89a56b85894a556d0c278daea258551c355a96d9ec592bc7426d9461b7a3fed935c9917e9c18069e89f diff --git a/dev-ruby/slop/slop-4.9.1.ebuild b/dev-ruby/slop/slop-4.9.1.ebuild new file mode 100644 index 000000000000..794f18211550 --- /dev/null +++ b/dev-ruby/slop/slop-4.9.1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +USE_RUBY="ruby25 ruby26 ruby27 ruby30" + +RUBY_FAKEGEM_TASK_DOC="" +RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md" + +RUBY_FAKEGEM_GEMSPEC="slop.gemspec" + +inherit ruby-fakegem + +DESCRIPTION="A simple option parser with an easy to remember syntax and friendly API" +HOMEPAGE="https://github.com/injekt/slop" +SRC_URI="https://github.com/injekt/${PN}/archive/v${PV}.tar.gz -> ${P}.tgz" + +LICENSE="MIT" +SLOT="4" +KEYWORDS="~amd64 ~ppc64 ~x86" + +IUSE="" + +ruby_add_bdepend "test? ( dev-ruby/minitest )" + +all_ruby_prepare() { + sed -i -e '/git ls-files/d' slop.gemspec || die +} |