Diff pg-1.5.4-r1 with a pg-1.5.8
/usr/portage/dev-ruby/pg/pg-1.5.8.ebuild 2024-12-25 14:59:49.003270087 +0300 | ||
---|---|---|
1 |
# Copyright 1999-2023 Gentoo Authors |
|
1 |
# Copyright 1999-2024 Gentoo Authors |
|
2 | 2 |
# Distributed under the terms of the GNU General Public License v2 |
3 | 3 | |
4 | 4 |
EAPI=8 |
... | ... | |
20 | 20 | |
21 | 21 |
LICENSE="|| ( BSD-2 Ruby-BSD )" |
22 | 22 |
SLOT="1" |
23 |
KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris" |
|
24 |
IUSE="" |
|
23 |
KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris" |
|
24 |
IUSE="test" |
|
25 | 25 | |
26 |
RDEPEND+=" dev-db/postgresql:*" |
|
27 |
DEPEND+=" dev-db/postgresql |
|
26 |
RDEPEND="dev-db/postgresql:*" |
|
27 |
DEPEND="dev-db/postgresql |
|
28 | 28 |
test? ( >=dev-db/postgresql-9.4[server(+),threads(+)] )" |
29 | 29 | |
30 | 30 |
all_ruby_prepare() { |
... | ... | |
41 | 41 |
-e 's/__dir__/"."/' \ |
42 | 42 |
-i ${RUBY_FAKEGEM_GEMSPEC} || die |
43 | 43 | |
44 |
# Don't allow sudo calls that try to tinker with /etc/hosts (bug #933234) |
|
45 |
sed -e '/sudo/ s:^:#:' -i spec/helpers.rb || die |
|
46 |
sed -e '/refreshes DNS address while conn.reset/ s/it/xit/' \ |
|
47 |
-i spec/pg/connection_spec.rb || die |
|
48 |
sed -e '/doesn.t duplicate hosts in conn.reset/ s/it/xit/' \ |
|
49 |
-i spec/pg/connection_async_spec.rb || die |
|
50 | ||
44 | 51 |
# Avoid tests that assume IPv4 |
45 | 52 |
sed -i -e '/expect.*hostaddr/ s:^:#:' spec/pg/connection_spec.rb || die |
46 | 53 |