commit:     1ce3c6cb7e18cfdd76b2205ceafb3578b0349389
Author:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 17 05:51:11 2021 +0000
Commit:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sun Oct 17 06:04:16 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ce3c6cb

dev-ruby/pg_array_parser: EAPI 8; add ruby27, ruby30

This also drops the bundler calls that cause sandbox violations.
The ebuild should already cover the correct dependencies and in general
dev-ruby/* policy is to not use bundler at all to avoid additional
unneeded dependencies.

Closes: https://bugs.gentoo.org/688314

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>

 .../pg_array_parser-0.0.9-r3.ebuild                | 38 ++++++++++++++++++++++
 1 file changed, 38 insertions(+)

diff --git a/dev-ruby/pg_array_parser/pg_array_parser-0.0.9-r3.ebuild 
b/dev-ruby/pg_array_parser/pg_array_parser-0.0.9-r3.ebuild
new file mode 100644
index 00000000000..eaf4ea21c24
--- /dev/null
+++ b/dev-ruby/pg_array_parser/pg_array_parser-0.0.9-r3.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+USE_RUBY="ruby26 ruby27 ruby30"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
+
+RUBY_FAKEGEM_EXTENSIONS=(ext/pg_array_parser/extconf.rb)
+
+inherit ruby-fakegem
+
+DESCRIPTION="Simple library to parse PostgreSQL arrays into a array of strings"
+HOMEPAGE="https://github.com/dockyard/pg_array_parser";
+
+LICENSE="MIT"
+SLOT="$(ver_cut 1-3)"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE=""
+
+ruby_add_bdepend "dev-ruby/bundler"
+
+all_ruby_prepare() {
+       [ -f Gemfile.lock ] && rm Gemfile.lock
+       #if ! use development; then
+               sed -i -e "/^group :development do/,/^end$/d" Gemfile || die
+               sed -i -e "/s.add_development_dependency/d" "${PN}".gemspec || 
die
+               sed -i -e "/gem.add_development_dependency/d" "${PN}".gemspec 
|| die
+       #fi
+       #if ! use test; then
+               sed -i -e "/^group :test do/,/^end$/d" Gemfile || die
+       #fi
+       #if ! use test && ! use development; then
+               sed -i -e "/^group :development, :test do/,/^end$/d" Gemfile || 
die
+       #fi
+}

Reply via email to