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/rubyntlm/
Date: Sun, 19 Mar 2023 07:45:14
Message-Id: 1679210758.6b556f51e73af10e3938e9e7a40c9edfe9cae788.graaff@gentoo
1 commit: 6b556f51e73af10e3938e9e7a40c9edfe9cae788
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 19 07:25:58 2023 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 19 07:25:58 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b556f51
7
8 dev-ruby/rubyntlm: update EAPI 7 -> 8
9
10 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
11
12 dev-ruby/rubyntlm/rubyntlm-0.6.3-r1.ebuild | 23 +++++++++++++++++++++++
13 1 file changed, 23 insertions(+)
14
15 diff --git a/dev-ruby/rubyntlm/rubyntlm-0.6.3-r1.ebuild b/dev-ruby/rubyntlm/rubyntlm-0.6.3-r1.ebuild
16 new file mode 100644
17 index 000000000000..072610e07317
18 --- /dev/null
19 +++ b/dev-ruby/rubyntlm/rubyntlm-0.6.3-r1.ebuild
20 @@ -0,0 +1,23 @@
21 +# Copyright 1999-2023 Gentoo Authors
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=8
25 +USE_RUBY="ruby27 ruby30 ruby31 ruby32"
26 +
27 +RUBY_FAKEGEM_RECIPE_TEST="rspec3"
28 +
29 +RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
30 +
31 +inherit ruby-fakegem
32 +
33 +DESCRIPTION="Ruby/NTLM provides message creator and parser for the NTLM authentication"
34 +HOMEPAGE="https://github.com/winrb/rubyntlm"
35 +
36 +LICENSE="MIT"
37 +SLOT="0"
38 +KEYWORDS="amd64 ~arm ~ppc64 ~x86"
39 +IUSE=""
40 +
41 +all_ruby_prepare() {
42 + sed -i -e '/simplecov/ s:^:#:' spec/spec_helper.rb || die
43 +}