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: Fri, 06 May 2022 08:38:12
Message-Id: 1651826284.cc42ccaae405615c3fe69e2fb34b2cb9374c0b5a.graaff@gentoo
1 commit: cc42ccaae405615c3fe69e2fb34b2cb9374c0b5a
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 6 08:31:06 2022 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Fri May 6 08:38:04 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc42ccaa
7
8 dev-ruby/ed25519: drop 1.2.4
9
10 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
11
12 dev-ruby/ed25519/ed25519-1.2.4.ebuild | 35 -----------------------------------
13 1 file changed, 35 deletions(-)
14
15 diff --git a/dev-ruby/ed25519/ed25519-1.2.4.ebuild b/dev-ruby/ed25519/ed25519-1.2.4.ebuild
16 deleted file mode 100644
17 index 282a543f34f2..000000000000
18 --- a/dev-ruby/ed25519/ed25519-1.2.4.ebuild
19 +++ /dev/null
20 @@ -1,35 +0,0 @@
21 -# Copyright 1999-2020 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=6
25 -
26 -USE_RUBY="ruby24 ruby25 ruby26 ruby27"
27 -
28 -RUBY_FAKEGEM_RECIPE_DOC="rdoc"
29 -RUBY_FAKEGEM_EXTRADOC="CHANGES.md README.md"
30 -
31 -RUBY_FAKEGEM_RECIPE_TEST="rspec3"
32 -
33 -inherit ruby-fakegem
34 -
35 -DESCRIPTION="Library for the Ed25519 public-key signature system"
36 -HOMEPAGE="https://github.com/crypto-rb/ed25519"
37 -SRC_URI="https://github.com/crypto-rb/ed25519/archive/v${PV}.tar.gz -> ${P}.tar.gz"
38 -
39 -LICENSE="MIT"
40 -SLOT="1"
41 -KEYWORDS="amd64 ~arm ppc ppc64 x86"
42 -IUSE=""
43 -
44 -all_ruby_prepare() {
45 - sed -i -e '/bundler/ s:^:#:' spec/spec_helper.rb || die
46 -}
47 -
48 -each_ruby_configure() {
49 - ${RUBY} -Cext/ed25519_ref10 extconf.rb || die
50 -}
51 -
52 -each_ruby_compile() {
53 - emake V=1 -Cext/ed25519_ref10
54 - cp ext/ed25519_ref10/ed25519_ref10.so lib/ || die
55 -}