diff options
Diffstat (limited to 'dev-ruby/ed25519')
-rw-r--r-- | dev-ruby/ed25519/ed25519-1.2.4.ebuild | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/dev-ruby/ed25519/ed25519-1.2.4.ebuild b/dev-ruby/ed25519/ed25519-1.2.4.ebuild deleted file mode 100644 index 282a543f34f2..000000000000 --- a/dev-ruby/ed25519/ed25519-1.2.4.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -USE_RUBY="ruby24 ruby25 ruby26 ruby27" - -RUBY_FAKEGEM_RECIPE_DOC="rdoc" -RUBY_FAKEGEM_EXTRADOC="CHANGES.md README.md" - -RUBY_FAKEGEM_RECIPE_TEST="rspec3" - -inherit ruby-fakegem - -DESCRIPTION="Library for the Ed25519 public-key signature system" -HOMEPAGE="https://github.com/crypto-rb/ed25519" -SRC_URI="https://github.com/crypto-rb/ed25519/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="1" -KEYWORDS="amd64 ~arm ppc ppc64 x86" -IUSE="" - -all_ruby_prepare() { - sed -i -e '/bundler/ s:^:#:' spec/spec_helper.rb || die -} - -each_ruby_configure() { - ${RUBY} -Cext/ed25519_ref10 extconf.rb || die -} - -each_ruby_compile() { - emake V=1 -Cext/ed25519_ref10 - cp ext/ed25519_ref10/ed25519_ref10.so lib/ || die -} |