summaryrefslogtreecommitdiff
path: root/dev-ruby/zstd-ruby/zstd-ruby-1.5.7.0.ebuild
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-07-06 07:06:17 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-07-06 07:06:17 +0000
commitcc04749fa7adc8caa74da1a78a68f997c62eaef4 (patch)
treef81c7abde0a9abbd9c86fc470bbed1bb80a173d5 /dev-ruby/zstd-ruby/zstd-ruby-1.5.7.0.ebuild
parent473a0f1ace19e3bd0192bd3bb05ffba96e86a1ce (diff)
downloadbaldeagleos-repo-cc04749fa7adc8caa74da1a78a68f997c62eaef4.tar.gz
baldeagleos-repo-cc04749fa7adc8caa74da1a78a68f997c62eaef4.tar.xz
baldeagleos-repo-cc04749fa7adc8caa74da1a78a68f997c62eaef4.zip
Adding metadata
Diffstat (limited to 'dev-ruby/zstd-ruby/zstd-ruby-1.5.7.0.ebuild')
-rw-r--r--dev-ruby/zstd-ruby/zstd-ruby-1.5.7.0.ebuild44
1 files changed, 44 insertions, 0 deletions
diff --git a/dev-ruby/zstd-ruby/zstd-ruby-1.5.7.0.ebuild b/dev-ruby/zstd-ruby/zstd-ruby-1.5.7.0.ebuild
new file mode 100644
index 000000000000..4cf3933c4330
--- /dev/null
+++ b/dev-ruby/zstd-ruby/zstd-ruby-1.5.7.0.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+USE_RUBY="ruby32 ruby33 ruby34"
+
+# 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 ~ppc64"
+
+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
+
+ sed -e '/pry/ s:^:#:' \
+ -i spec/zstd-ruby-stream_reader_spec.rb || die
+}