summaryrefslogtreecommitdiff
blob: 40eee60a5fa882b01351ccfccf6bd6b391c8833f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8
USE_RUBY="ruby26 ruby27 ruby30"

RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"

RUBY_FAKEGEM_RECIPE_TEST="rspec3"

inherit ruby-fakegem

DESCRIPTION="Works for both HOTP and TOTP, and includes QR Code provisioning"
HOMEPAGE="https://github.com/mdp/rotp"

LICENSE="MIT"
SLOT="$(ver_cut 1)"
KEYWORDS="~amd64"
IUSE=""

ruby_add_rdepend "!<dev-ruby/rotp-5.0.0-r1:5"

ruby_add_bdepend "
	test? ( dev-ruby/timecop )
"

all_ruby_prepare() {
	# Remove pregenerated documentation so we can update it.
	rm -rf doc || die

	sed -e '/simplecov/,/^end/ s:^:#:' \
		-e '1irequire "uri"' \
		-i spec/spec_helper.rb || die
}