mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-21 21:17:37 -08:00
dev-ruby/fast_gettext: add 4.1.1
Signed-off-by: Hans de Graaff <graaff@gentoo.org>
This commit is contained in:
parent
c505ecb1c6
commit
8f832e4c8c
@ -1,3 +1,4 @@
|
||||
DIST fast_gettext-2.6.0.tar.gz 94293 BLAKE2B b7b955fa87a010c85a22824a9bc5d6835836219cad13c82f42c16b1102a55b5d33a7386394efd2ba2baa299445d29e444ffcc750733ae51c9defc297a769a06a SHA512 1f0b824a8335572646a8486487e22b9fbe4ee63d0e67985a6b56806afac565610492834d34d5e45dab7908e986cc34ab80261aaea87489898e90b6fbe51a4f0a
|
||||
DIST fast_gettext-3.1.0.tar.gz 94367 BLAKE2B 9ac9716397eb8ae433a112b8d86451506a80dd3fbd92585ba5a2e24ce3a90d7926feb32ceb2ceda217858c696cdf5e05e6a2166653a5a2fde3e016768857f6f4 SHA512 71d3a9a0ce2ebc09fa462ea2ddc65c4fc6e6e5ae345e7c831dcfe02c1303d2c26700a14dadff31a457e701961dd3cc076bb50dbf9c654640636ce797cc9e7d5a
|
||||
DIST fast_gettext-4.1.0.tar.gz 94826 BLAKE2B 8c2ce52cb4738af96df90069daf1d587529f610c0b6c658c72b80f7bf654c4237bae9cd2363125cb77c038594b22db0f4ca069efed54f9e799f21c41519a9099 SHA512 40296ab8cf229c9739d86835c482cda372a6773580a0f4f17922c72d2a9dcb663b052c77d8733885b19a9784497f2af8a1ee702b734732cd75a29d2ad6b60ee8
|
||||
DIST fast_gettext-4.1.1.tar.gz 94880 BLAKE2B ed16fa13d25d524ef1e61d2d0a4d05f155e04b79ae55ada8f980bd48e36604d3093522795f861ef22142e94a1fdf9327abd332cac90aa33fb8c89398fb9799d1 SHA512 992ac967e81c399e2082705b8f5030a16f640c66a4c39b20c94c1802010c315139c062f153302a48712857fcb6eabbc11b05267c5fd07e42118aa84e3c22ce1a
|
||||
|
||||
54
dev-ruby/fast_gettext/fast_gettext-4.1.1.ebuild
Normal file
54
dev-ruby/fast_gettext/fast_gettext-4.1.1.ebuild
Normal file
@ -0,0 +1,54 @@
|
||||
# Copyright 1999-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
USE_RUBY="ruby32 ruby33 ruby34"
|
||||
|
||||
RUBY_FAKEGEM_TASK_DOC=""
|
||||
RUBY_FAKEGEM_EXTRADOC="CHANGELOG Readme.md"
|
||||
|
||||
RUBY_FAKEGEM_RECIPE_TEST="rspec3"
|
||||
|
||||
RUBY_FAKEGEM_GEMSPEC="fast_gettext.gemspec"
|
||||
|
||||
inherit ruby-fakegem
|
||||
|
||||
DESCRIPTION="GetText but 3.5x faster, 560x less memory, clean namespace and threadsafe!"
|
||||
HOMEPAGE="https://github.com/grosser/fast_gettext"
|
||||
SRC_URI="https://github.com/grosser/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="MIT BSD-2"
|
||||
SLOT="$(ver_cut 1)"
|
||||
KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
|
||||
IUSE="test"
|
||||
|
||||
ruby_add_depend "dev-ruby/prime dev-ruby/racc"
|
||||
|
||||
ruby_add_bdepend "test? ( dev-ruby/bundler )"
|
||||
|
||||
all_ruby_prepare() {
|
||||
rm Gemfile.lock || die
|
||||
|
||||
sed -i -e '/single/I s:^:#:' spec/spec_helper.rb || die
|
||||
sed -i -e '/SingleCov/ s:^:#:' spec/{*,*/*}/*spec.rb || die
|
||||
|
||||
# Avoid unneeded dependency on git and development dependencies.
|
||||
sed -e '/git ls-files/ s:^:#:' \
|
||||
-e '/\(wwtd\|bump\|sqlite3\|activerecord\|i18n\|single_cov\|forking_test_runner\|rubocop\)/ s:^:#:' \
|
||||
-e 's:require_relative ":require "./:' \
|
||||
-i fast_gettext.gemspec || die
|
||||
|
||||
# Avoid a test dependency on activerecord since this is now in the
|
||||
# dependency tree for app-admin/puppet and many arches don't have
|
||||
# rails keyworded.
|
||||
sed -i -e '/active_record/ s:^:#:' spec/spec_helper.rb || die
|
||||
rm -f spec/fast_gettext/translation_repository/db_spec.rb || die
|
||||
rm -f spec/fast_gettext/storage_spec.rb || die
|
||||
sed -i -e '/with i18n loaded/,/^ end/ s:^:#:' spec/fast_gettext/vendor/string_spec.rb || die
|
||||
}
|
||||
|
||||
each_ruby_prepare() {
|
||||
# Make sure the right ruby interpreter is used
|
||||
sed -i -e "s:bundle exec ruby:bundle exec ${RUBY}:" spec/fast_gettext/vendor/*spec.rb || die
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user