mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-05 14:07:27 -08:00
The arch and OS that matches it are obsolete. Signed-off-by: Fabian Groffen <grobian@gentoo.org>
32 lines
852 B
Bash
32 lines
852 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
USE_RUBY="ruby31 ruby32 ruby33 ruby34"
|
|
|
|
RUBY_FAKEGEM_EXTRADOC="readme.md"
|
|
|
|
RUBY_FAKEGEM_GEMSPEC="timers.gemspec"
|
|
RUBY_FAKEGEM_RECIPE_TEST="sus"
|
|
|
|
inherit ruby-fakegem
|
|
|
|
DESCRIPTION="Pure Ruby one-shot and periodic timers"
|
|
HOMEPAGE="https://github.com/socketry/timers"
|
|
SRC_URI="https://github.com/socketry/timers/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="4"
|
|
KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc x86 ~x64-macos ~x64-solaris"
|
|
|
|
all_ruby_prepare() {
|
|
sed -i -e 's:_relative ": "./:' ${RUBY_FAKEGEM_GEMSPEC} || die
|
|
|
|
# Avoid coverage dependencies
|
|
rm -f config/sus.rb || die
|
|
|
|
# Avoid performance-based tests since we cannot guarantee specific performance levels.
|
|
rm -f test/timers/performance.rb || die
|
|
}
|