From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5C9D21382C5 for ; Sat, 23 May 2020 09:27:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7A1E4E0905; Sat, 23 May 2020 09:27:37 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5FF51E0905 for ; Sat, 23 May 2020 09:27:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B44DC34E86E for ; Sat, 23 May 2020 09:27:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3959E258 for ; Sat, 23 May 2020 09:27:34 +0000 (UTC) From: "Hans de Graaff" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Hans de Graaff" Message-ID: <1590226032.fc31e2586f6aa9e46d3ea16a0c39b1bb1758b6bf.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/gettext-setup/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/gettext-setup/gettext-setup-0.34-r1.ebuild X-VCS-Directories: dev-ruby/gettext-setup/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: fc31e2586f6aa9e46d3ea16a0c39b1bb1758b6bf X-VCS-Branch: master Date: Sat, 23 May 2020 09:27:34 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 546fbd9c-b3e4-4c87-84a6-6542b5bf08af X-Archives-Hash: de0b5ffcb94c3b7cb34ddf305ed9e43d commit: fc31e2586f6aa9e46d3ea16a0c39b1bb1758b6bf Author: Hans de Graaff gentoo org> AuthorDate: Sat May 23 09:26:59 2020 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sat May 23 09:27:12 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc31e258 dev-ruby/gettext-setup: add missing dependency on git Closes: https://bugs.gentoo.org/723828 Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Hans de Graaff gentoo.org> .../gettext-setup/gettext-setup-0.34-r1.ebuild | 42 ++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/dev-ruby/gettext-setup/gettext-setup-0.34-r1.ebuild b/dev-ruby/gettext-setup/gettext-setup-0.34-r1.ebuild new file mode 100644 index 00000000000..e56f46d8242 --- /dev/null +++ b/dev-ruby/gettext-setup/gettext-setup-0.34-r1.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +USE_RUBY="ruby24 ruby25 ruby26 ruby27" + +RUBY_FAKEGEM_RECIPE_TEST="rspec3" + +RUBY_FAKEGEM_EXTRADOC="README.md" + +RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" + +inherit ruby-fakegem + +DESCRIPTION="A gem to ease i18n" +HOMEPAGE="https://github.com/puppetlabs/gettext-setup-gem" +SRC_URI="https://github.com/puppetlabs/gettext-setup-gem/archive/${PV}.tar.gz -> ${P}.tar.gz" +RUBY_S="${PN}-gem-${PV}" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86" +IUSE="" + +RDEPEND+=" dev-vcs/git" +DEPEND+=" test? ( dev-vcs/git )" + +ruby_add_rdepend " + >=dev-ruby/fast_gettext-1.1.0:0 + >=dev-ruby/ruby-gettext-3.0.2 + dev-ruby/locale +" + +all_ruby_prepare() { + sed -i -e 's/1.1.0/1.1/' \ + -e "s/spec.version.*$/spec.version = '${PV}'/" ${RUBY_FAKEGEM_GEMSPEC} || die + + sed -i -e '/simplecov/,/^end/ s:^:#: ; 1irequire "date"' spec/spec_helper.rb || die + + # Avoid spec with specific locale requirements + sed -i -e '/can clear the locale/,/^ end/ s:^:#:' spec/lib/gettext-setup/gettext_setup_spec.rb || die +}