diff options
| author | Aaron W. Swenson <titanofold@gentoo.org> | 2020-11-14 08:50:18 -0500 |
|---|---|---|
| committer | Aaron W. Swenson <titanofold@gentoo.org> | 2020-11-14 08:59:10 -0500 |
| commit | 734742ccd7c2a901d5fb30975c0c7d27c6482cc2 (patch) | |
| tree | 6acd91d8225a9f521c33c43fabdf7252f6f6ddfd /dev-db/postgresql/postgresql-9999.ebuild | |
| parent | 95a1b1243362c175499438a68a77f0515e4f112a (diff) | |
| download | gentoo-734742ccd7c2a901d5fb30975c0c7d27c6482cc2.tar.gz gentoo-734742ccd7c2a901d5fb30975c0c7d27c6482cc2.tar.bz2 gentoo-734742ccd7c2a901d5fb30975c0c7d27c6482cc2.zip | |
dev-db/postgresql: Version Bumps
Bump to:
- 13.1
- 12.5
- 11.10
- 10.15
- 9.6.20
- 9.5.24
Fixes CVE-2020-25695, CVE-2020-25694, and CVE-2020-25696.
Pg 10+ includes a patch to fix building wit ICU 68.
Bug: https://bugs.gentoo.org/753257
Bug: https://bugs.gentoo.org/754363
Signed-off-by: Aaron W. Swenson <titanofold@gentoo.org>
Diffstat (limited to 'dev-db/postgresql/postgresql-9999.ebuild')
| -rw-r--r-- | dev-db/postgresql/postgresql-9999.ebuild | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/dev-db/postgresql/postgresql-9999.ebuild b/dev-db/postgresql/postgresql-9999.ebuild index 1ca6f1f03d09..9b9884bf901e 100644 --- a/dev-db/postgresql/postgresql-9999.ebuild +++ b/dev-db/postgresql/postgresql-9999.ebuild @@ -455,7 +455,12 @@ pkg_config() { src_test() { if [[ ${UID} -ne 0 ]] ; then + # Some ICU tests fail if LC_CTYPE and LC_COLLATE aren't the same. We set + # LC_CTYPE to be equal to LC_COLLATE since LC_COLLATE is set by Portage. + local old_ctype=${LC_CTYPE} + export LC_CTYPE=${LC_COLLATE} emake check + export LC_CTYPE=${old_ctype} einfo "If you think other tests besides the regression tests are necessary, please" einfo "submit a bug including a patch for this ebuild to enable them." |
