commit: e57acffba0a71d760115e2fc66d7c05892626bbe Author: Hans de Graaff <graaff <AT> gentoo <DOT> org> AuthorDate: Tue Dec 30 21:10:43 2025 +0000 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org> CommitDate: Tue Dec 30 21:26:42 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e57acffb
dev-ruby/pg: drop 1.5.8 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org> dev-ruby/pg/Manifest | 1 - dev-ruby/pg/pg-1.5.8.ebuild | 71 --------------------------------------------- 2 files changed, 72 deletions(-) diff --git a/dev-ruby/pg/Manifest b/dev-ruby/pg/Manifest index 94c18866341a..47b1e41a9f1c 100644 --- a/dev-ruby/pg/Manifest +++ b/dev-ruby/pg/Manifest @@ -1,4 +1,3 @@ -DIST pg-1.5.8.tar.gz 303150 BLAKE2B 4fe9abe9441366440ac1b0d481311507e9dea80c882102bcc3a5c564b8007618693944b4be21a5c0a730ca6697b7ffcf33487caa7872c75947ca87c6ad87beaa SHA512 668071787fa89cbd453ca3b65dbd28a166b23d59a25a64f9cc2143909ff870c9ef749238fc81fb38fda757330f19ec24db4a0aae2fad5e93bc38b68f816f2baa DIST pg-1.5.9.tar.gz 303871 BLAKE2B 948993baf36caeb7d4ce139595129640c1293a1b34bc58ff75a9e754881b05aa98933569df45c17447ddc8d9deed9a8beb636e4a61a3b3af50a94c1d5149141e SHA512 e937cd1e352bca2a88e1cf40f3cb6802170b8bd4bcc024ea686a45b4658d64e481bb86a035c2a717e23acb65d0472ef3245be305350c13be99b655890dbdcf45 DIST pg-1.6.0.tar.gz 309759 BLAKE2B 418b7f08e50b2db5640c6b2e11bc3f5357938bd6a8ede9d607d232b47ed666a0eb94dc2221e12dd8108b663017a9140ad187d6dc6be4084b7f5bd27e786474ec SHA512 3c23a1865030810d97d85fcf062143538fbf279d6ac3703229b5c61773b6fd1b8b62a0f84e0fa1cfbaee15f4987bd92399c73eba08f31b7c09893e197f1cec68 DIST pg-1.6.1.tar.gz 311053 BLAKE2B 04d94b439d47c42fa31b5e69f1be47c65524ead0f9576ed4022e5ff766da84c9bc20c38dbe4e11f54ee06a417a0726f085e4f31774cc37495cfe0ab5436f0661 SHA512 9d11f34bf9c9c0918202b9a8608086ffaf7caabc034d34bd3cd4325532912ae8a721896a7fb6348b73b0fbc4ed2a2a419807bebd3aa8cc8faba2066d44d69e7f diff --git a/dev-ruby/pg/pg-1.5.8.ebuild b/dev-ruby/pg/pg-1.5.8.ebuild deleted file mode 100644 index ba9dfe6c4375..000000000000 --- a/dev-ruby/pg/pg-1.5.8.ebuild +++ /dev/null @@ -1,71 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 -USE_RUBY="ruby31 ruby32 ruby33" - -RUBY_FAKEGEM_GEMSPEC="pg.gemspec" -RUBY_FAKEGEM_RECIPE_TEST="rspec3" - -RUBY_FAKEGEM_EXTRADOC="Contributors.rdoc README.md History.md" - -RUBY_FAKEGEM_EXTENSIONS=(ext/extconf.rb) - -inherit ruby-fakegem - -DESCRIPTION="Ruby extension library providing an API to PostgreSQL" -HOMEPAGE="https://github.com/ged/ruby-pg" -SRC_URI="https://github.com/ged/ruby-pg/archive/v${PV}.tar.gz -> ${P}.tar.gz" -RUBY_S="ruby-${P}" - -LICENSE="|| ( BSD-2 Ruby-BSD )" -SLOT="1" -KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ppc64 ~riscv ~sparc ~x86 ~x64-macos ~x64-solaris" -IUSE="test" - -RDEPEND="dev-db/postgresql:*" -DEPEND="dev-db/postgresql - test? ( >=dev-db/postgresql-9.4[server(+),threads(+)] )" - -all_ruby_prepare() { - # hack the Rakefile to make it sure that it doesn't load - # rake-compiler (so that we don't have to depend on it and it - # actually works when building with USE=doc). - sed -i \ - -e '/Rakefile.cross/s:^:#:' \ - -e '/ExtensionTask/,/^end$/ s:^:#:' \ - Rakefile || die - - sed -e 's/git ls-files -z/find * -print0/' \ - -e "s:_relative ': './:" \ - -e 's/__dir__/"."/' \ - -i ${RUBY_FAKEGEM_GEMSPEC} || die - - # Don't allow sudo calls that try to tinker with /etc/hosts (bug #933234) - sed -e '/sudo/ s:^:#:' -i spec/helpers.rb || die - sed -e '/refreshes DNS address while conn.reset/ s/it/xit/' \ - -i spec/pg/connection_spec.rb || die - sed -e '/doesn.t duplicate hosts in conn.reset/ s/it/xit/' \ - -i spec/pg/connection_async_spec.rb || die - - # Avoid tests that assume IPv4 - sed -i -e '/expect.*hostaddr/ s:^:#:' spec/pg/connection_spec.rb || die - - # Fails with network-sandbox - sed -i -e '/connects using without host but envirinment variables/askip "gentoo"' spec/pg/scheduler_spec.rb || die - - # Avoid test that only works with bundled pg - sed -i -e '/tells about the libpq library path/askip "gentoo"' spec/pg_spec.rb || die -} - -each_ruby_test() { - if [[ "${EUID}" -ne "0" ]]; then - # Make the rspec call explicit, this way we don't have to depend - # on rake-compiler (nor rubygems) _and_ we don't have to rebuild - # the whole extension from scratch. - RSPEC_VERSION=3 ruby-ng_rspec - else - ewarn "The userpriv feature must be enabled to run tests." - eerror "Testsuite will not be run." - fi -}
