summaryrefslogtreecommitdiff
path: root/dev-ruby/zstd-ruby/zstd-ruby-1.5.6.6.ebuild
blob: 0f0e3260bec383a12b12b057d78d37f74eec1e1f (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
35
36
37
38
39
40
41
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

USE_RUBY="ruby31 ruby32 ruby33"

# This gem includes a bundled version of app-arch/zstd. It requires
# features that are only available with a statically linked zstd library
# (e.g. ZSTD_SKIPPABLEHEADERSIZE) and changing the build system to build
# against a statically linked app-arch/zstd does not seem worth it.

RUBY_FAKEGEM_BINWRAP=""
RUBY_FAKEGEM_EXTRADOC="README.md"
RUBY_FAKEGEM_EXTENSIONS=(ext/zstdruby/extconf.rb)
RUBY_FAKEGEM_EXTENSION_LIBDIR="lib/zstd-ruby"
RUBY_FAKEGEM_GEMSPEC="zstd-ruby.gemspec"
RUBY_FAKEGEM_RECIPE_TEST="rspec3"

inherit ruby-fakegem

DESCRIPTION="Ruby binding for zstd (Zstandard - Fast real-time compression algorithm)."
HOMEPAGE="https://github.com/SpringMT/zstd-ruby"
SRC_URI="https://github.com/SpringMT/zstd-ruby/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"

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

all_ruby_prepare() {
	sed -e 's/git ls-files -z/find * -print0/' \
		-i ${RUBY_FAKEGEM_GEMSPEC}

	# Removing the -O3 optimization flag causes the test suite to hang
	# consuming CPU.
	# sed -e '/CFLAGS/ s/-O3//' \ -i
	# ext/zstdruby/extconf.rb || die

	sed -e '/bundler/ s:^:#:' \
		-i spec/spec_helper.rb || die
}