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/ed25519/
Date: Wed, 07 Jul 2021 17:38:14
Message-Id: 1625679483.d0d12306ba1222e89a02afb4a25eb3ca06ab21f9.graaff@gentoo
1 commit: d0d12306ba1222e89a02afb4a25eb3ca06ab21f9
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jul 7 09:47:48 2021 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Wed Jul 7 17:38:03 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0d12306
7
8 dev-ruby/ed25519: add ruby30; EAPI 7; fix extension
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.2
11 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
12
13 dev-ruby/ed25519/ed25519-1.2.4-r1.ebuild | 29 +++++++++++++++++++++++++++++
14 1 file changed, 29 insertions(+)
15
16 diff --git a/dev-ruby/ed25519/ed25519-1.2.4-r1.ebuild b/dev-ruby/ed25519/ed25519-1.2.4-r1.ebuild
17 new file mode 100644
18 index 00000000000..3b257892501
19 --- /dev/null
20 +++ b/dev-ruby/ed25519/ed25519-1.2.4-r1.ebuild
21 @@ -0,0 +1,29 @@
22 +# Copyright 1999-2021 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=7
26 +
27 +USE_RUBY="ruby25 ruby26 ruby27 ruby30"
28 +
29 +RUBY_FAKEGEM_EXTRADOC="CHANGES.md README.md"
30 +
31 +RUBY_FAKEGEM_RECIPE_TEST="rspec3"
32 +
33 +RUBY_FAKEGEM_EXTENSIONS=(ext/ed25519_ref10/extconf.rb)
34 +
35 +RUBY_FAKEGEM_GEMSPEC="ed25519.gemspec"
36 +
37 +inherit ruby-fakegem
38 +
39 +DESCRIPTION="Library for the Ed25519 public-key signature system"
40 +HOMEPAGE="https://github.com/crypto-rb/ed25519"
41 +SRC_URI="https://github.com/crypto-rb/ed25519/archive/v${PV}.tar.gz -> ${P}.tar.gz"
42 +
43 +LICENSE="MIT"
44 +SLOT="1"
45 +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
46 +IUSE=""
47 +
48 +all_ruby_prepare() {
49 + sed -i -e '/bundler/ s:^:#:' spec/spec_helper.rb || die
50 +}