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/openssl-ccm/
Date: Sun, 01 May 2022 06:34:51
Message-Id: 1651386106.0ecb7aa63ee5b55aabce2eb788ddd453e4b8a2ac.graaff@gentoo
1 commit: 0ecb7aa63ee5b55aabce2eb788ddd453e4b8a2ac
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 1 06:21:46 2022 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sun May 1 06:21:46 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ecb7aa6
7
8 dev-ruby/openssl-ccm: update EAPI 6 -> 8
9
10 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
11
12 dev-ruby/openssl-ccm/openssl-ccm-1.2.2-r1.ebuild | 20 ++++++++++++++++++++
13 1 file changed, 20 insertions(+)
14
15 diff --git a/dev-ruby/openssl-ccm/openssl-ccm-1.2.2-r1.ebuild b/dev-ruby/openssl-ccm/openssl-ccm-1.2.2-r1.ebuild
16 new file mode 100644
17 index 000000000000..e532af80584a
18 --- /dev/null
19 +++ b/dev-ruby/openssl-ccm/openssl-ccm-1.2.2-r1.ebuild
20 @@ -0,0 +1,20 @@
21 +# Copyright 1999-2022 Gentoo Authors
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=8
25 +USE_RUBY="ruby26 ruby27 ruby30 ruby31"
26 +
27 +inherit ruby-fakegem
28 +
29 +DESCRIPTION="OpenSSL CBC-MAC (CCM) ruby gem"
30 +HOMEPAGE="https://github.com/SmallLars/openssl-ccm"
31 +
32 +LICENSE="BSD"
33 +SLOT="${PV}"
34 +KEYWORDS="~amd64 ~arm ~x86"
35 +IUSE=""
36 +
37 +all_ruby_prepare() {
38 + sed -i -e '/bundler/ s:^:#:' Rakefile || die
39 + sed -i -e '/coverall/I s:^:#:' test/test_ccm.rb || die
40 +}