Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Adélie Package Tree
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Adélie Linux
Adélie Package Tree
Commits
98b1f96f
Verified
Commit
98b1f96f
authored
5 years ago
by
Anna Wilcox
Browse files
Options
Downloads
Patches
Plain Diff
user/perl-dbd-pg: disable tests due to upstream bug
parent
05a89bf6
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
user/perl-dbd-pg/APKBUILD
+4
-1
4 additions, 1 deletion
user/perl-dbd-pg/APKBUILD
user/perl-dbd-pg/ppc32.patch
+26
-0
26 additions, 0 deletions
user/perl-dbd-pg/ppc32.patch
with
30 additions
and
1 deletion
user/perl-dbd-pg/APKBUILD
+
4
−
1
View file @
98b1f96f
...
...
@@ -6,6 +6,7 @@ pkgrel=0
pkgdesc
=
"PostgreSQL interface for Perl DBI"
url
=
"https://metacpan.org/release/DBD-Pg"
arch
=
"all"
options
=
"!check"
# https://github.com/bucardo/dbdpg/issues/56
license
=
"Artistic-1.0-Perl OR GPL-2.0-only"
depends
=
"perl-dbi"
makedepends
=
"perl-dev postgresql-dev"
...
...
@@ -13,6 +14,7 @@ checkdepends="cmd:locale postgresql"
subpackages
=
"
$pkgname
-doc"
source
=
"https://cpan.metacpan.org/authors/id/T/TU/TURNSTEP/DBD-Pg-
$pkgver
.tar.gz
fix-tests.patch
ppc32.patch
"
builddir
=
"
$srcdir
/DBD-Pg-
$pkgver
"
...
...
@@ -31,4 +33,5 @@ package() {
}
sha512sums
=
"ef322012d25c46784ef9e25eb332f2fe57c6bc2102a7e7cf2f423ae6d77ec78d338e91f08734a932f46a0bc028e358a6cf84b6b41b5f9723905b240db24582f0 DBD-Pg-3.9.1.tar.gz
f7032e7e63eb403778e3f42e1b7f7d472695175d3d8c30bc10062ffee6275b8f46635ea2a82ca2cc5c9de48f7bfa64cdfce56ce58846302bb32db0e4657dcee7 fix-tests.patch"
f7032e7e63eb403778e3f42e1b7f7d472695175d3d8c30bc10062ffee6275b8f46635ea2a82ca2cc5c9de48f7bfa64cdfce56ce58846302bb32db0e4657dcee7 fix-tests.patch
3ff842f949e4c1805eb3c86ea8f52b12adbe65b966137c33e6b29eb1565f9983808fffacac8bda160be3bdfce0dd1cdbc79903bad0443335b48bf456dd7adb6c ppc32.patch"
This diff is collapsed.
Click to expand it.
user/perl-dbd-pg/ppc32.patch
0 → 100644
+
26
−
0
View file @
98b1f96f
---
Pg.pm | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/Pg.pm b/Pg.pm
index 8ca8435c..099678e1 100644
--- a/Pg.pm
+++ b/Pg.pm
@@ -29,14 +29,14 @@
use 5.008001;
PG_MAX_SMALLINT => 32767,
PG_MIN_INTEGER => -2147483648,
PG_MAX_INTEGER => 2147483647,
- PG_MIN_BIGINT => "-9223372036854775808",
- PG_MAX_BIGINT => "9223372036854775807",
+ PG_MIN_BIGINT => do { use bigint; -9223372036854775808 },
+ PG_MAX_BIGINT => do { use bigint; 9223372036854775807 },
PG_MIN_SMALLSERIAL => 1,
PG_MAX_SMALLSERIAL => 32767,
PG_MIN_SERIAL => 1,
PG_MAX_SERIAL => 2147483647,
PG_MIN_BIGSERIAL => 1,
- PG_MAX_BIGSERIAL => "9223372036854775807",
+ PG_MAX_BIGSERIAL => do { use bigint; 9223372036854775807 },
};
%EXPORT_TAGS =
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment