Gentoo Archives: gentoo-commits

From: Hans de Graaff <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/fast_gettext/
Date: Fri, 27 Aug 2021 06:46:28
Message-Id: 1630046779.e9830f232827a1f0a6bf42739f02aaa5e0fd2962.graaff@gentoo
1 commit: e9830f232827a1f0a6bf42739f02aaa5e0fd2962
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Fri Aug 27 06:44:48 2021 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 27 06:46:19 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9830f23
7
8 dev-ruby/fast_gettext: add 2.1.0
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.3
11 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
12
13 dev-ruby/fast_gettext/Manifest | 1 +
14 dev-ruby/fast_gettext/fast_gettext-2.1.0.ebuild | 60 +++++++++++++++++++++++++
15 2 files changed, 61 insertions(+)
16
17 diff --git a/dev-ruby/fast_gettext/Manifest b/dev-ruby/fast_gettext/Manifest
18 index 84240408956..5a21a842eae 100644
19 --- a/dev-ruby/fast_gettext/Manifest
20 +++ b/dev-ruby/fast_gettext/Manifest
21 @@ -1,2 +1,3 @@
22 DIST fast_gettext-1.8.0.tar.gz 89309 BLAKE2B 8ead2922662667c24d07dbc1145002583b1a65edd3cb581ac5bc058560aca38ed083e0470d4834cfdc5abae36f1e8264171b75649343675ab415b28ea2f0e8ab SHA512 0657b5955268166787a32bb74481cd07309018429c21707e061e022d67d5d2448d2d173149f164d16ff5f6c9ffa0feef38369b79daa299e1283fdcdc019ad72e
23 DIST fast_gettext-2.0.3.tar.gz 92262 BLAKE2B ebcbb081e8197e3443c2adc0ec6d1b4c3ebc7ccc8623a857705d893aa5e17af4be367802b5feb313256e337c1f751b74b45fd71f6aa5cb2188d6b71fe52718bb SHA512 b9a51c32a8cec8700cc4dea85862b48196aa87a567c813bfa45ecddcb841afbeeac8b061ef7f95a5f6573d78311bf5504e10adee44547b78ae412080bfb258d1
24 +DIST fast_gettext-2.1.0.tar.gz 91241 BLAKE2B 8364ea569d8993106a97f052c96d7a66217154a6cee2ffbcfc4f54b871e9175e85a3d06e0d180e567680d8969eaa0affc93f440534b28d18e488a563751712a4 SHA512 7768e947c723efef8f625a8baa6a1ea641ee33d5a3bb579d0f39f6b47914c46da23a6e167ac7d4fa29a05691ad3789334df144820e4ff84178f0a9dad31313f9
25
26 diff --git a/dev-ruby/fast_gettext/fast_gettext-2.1.0.ebuild b/dev-ruby/fast_gettext/fast_gettext-2.1.0.ebuild
27 new file mode 100644
28 index 00000000000..31d37e6b883
29 --- /dev/null
30 +++ b/dev-ruby/fast_gettext/fast_gettext-2.1.0.ebuild
31 @@ -0,0 +1,60 @@
32 +# Copyright 1999-2021 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=8
36 +
37 +USE_RUBY="ruby26 ruby27 ruby30"
38 +
39 +RUBY_FAKEGEM_TASK_DOC=""
40 +RUBY_FAKEGEM_EXTRADOC="CHANGELOG Readme.md"
41 +
42 +RUBY_FAKEGEM_RECIPE_TEST="rspec3"
43 +
44 +RUBY_FAKEGEM_GEMSPEC="fast_gettext.gemspec"
45 +
46 +inherit ruby-fakegem
47 +
48 +DESCRIPTION="GetText but 3.5x faster, 560x less memory, clean namespace and threadsave!"
49 +HOMEPAGE="https://github.com/grosser/fast_gettext"
50 +SRC_URI="https://github.com/grosser/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
51 +
52 +LICENSE="public-domain"
53 +SLOT="2"
54 +KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86"
55 +IUSE=""
56 +
57 +ruby_add_bdepend "test? ( dev-ruby/bundler )"
58 +
59 +all_ruby_prepare() {
60 + rm Gemfile.lock || die
61 +
62 + # Remove jeweler and bump from Gemfile since they are not needed for tests.
63 + sed -i -e '/jeweler/d' -e '/bump/d' -e '/appraisal/d' Gemfile || die
64 + sed -i -e '/single/I s:^:#:' spec/spec_helper.rb || die
65 + sed -i -e '/SingleCov/ s:^:#:' spec/{*,*/*}/*spec.rb || die
66 +
67 + # Avoid unneeded dependency on git and development dependencies.
68 + sed -e '/git ls-files/ s:^:#:' \
69 + -e '/\(wwtd\|bump\|sqlite3\|activerecord\|i18n\|single_cov\|forking_test_runner\|rubocop\)/ s:^:#:' \
70 + -e 's:require_relative ":require "./:' \
71 + -i fast_gettext.gemspec || die
72 +
73 + # Avoid a test dependency on activerecord since this is now in the
74 + # dependency tree for app-admin/puppet and many arches don't have
75 + # rails keyworded.
76 + sed -i -e '/active_record/ s:^:#:' spec/spec_helper.rb || die
77 + rm -f spec/fast_gettext/translation_repository/db_spec.rb || die
78 + rm -f spec/fast_gettext/storage_spec.rb || die
79 + sed -i -e '/with i18n loaded/,/^ end/ s:^:#:' spec/fast_gettext/vendor/string_spec.rb || die
80 +
81 + # Don't run a test that requires safe mode which we can't provide
82 + # due to insecure directory settings for the portage dir. This spec
83 + # also calls out to ruby which won't work with different ruby
84 + # implementations.
85 + sed -i -e '/can work in SAFE mode/,/^ end/ s:^:#:' spec/fast_gettext/translation_repository/mo_spec.rb || die
86 +}
87 +
88 +each_ruby_prepare() {
89 + # Make sure the right ruby interpreter is used
90 + sed -i -e "s:bundle exec ruby:bundle exec ${RUBY}:" spec/fast_gettext/vendor/*spec.rb || die
91 +}