diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2020-04-06 18:18:06 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2020-04-06 18:18:17 +0200 |
commit | 1fe9943ada561893b8e06756e412867e6f1b8dd1 (patch) | |
tree | a4e8a068d4612321e05a3da270503ad576293a23 /sci-libs/libgeotiff | |
parent | media-sound/qtractor: fixed config in 0.9.13 (diff) | |
download | gentoo-1fe9943ada561893b8e06756e412867e6f1b8dd1.tar.gz gentoo-1fe9943ada561893b8e06756e412867e6f1b8dd1.tar.bz2 gentoo-1fe9943ada561893b8e06756e412867e6f1b8dd1.zip |
sci-libs/libgeotiff: Fix tests with >=sci-libs/proj-6.2
Package-Manager: Portage-2.3.96, Repoman-2.3.22
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'sci-libs/libgeotiff')
-rw-r--r-- | sci-libs/libgeotiff/files/libgeotiff-1.5.1-proj-6.2-tests.patch | 57 | ||||
-rw-r--r-- | sci-libs/libgeotiff/libgeotiff-1.5.1-r1.ebuild | 2 |
2 files changed, 59 insertions, 0 deletions
diff --git a/sci-libs/libgeotiff/files/libgeotiff-1.5.1-proj-6.2-tests.patch b/sci-libs/libgeotiff/files/libgeotiff-1.5.1-proj-6.2-tests.patch new file mode 100644 index 000000000000..5004aadb9817 --- /dev/null +++ b/sci-libs/libgeotiff/files/libgeotiff-1.5.1-proj-6.2-tests.patch @@ -0,0 +1,57 @@ +From 678ffd97db2d63cf6856428bea65a93e069f812f Mon Sep 17 00:00:00 2001 +From: Even Rouault <even.rouault@spatialys.com> +Date: Wed, 4 Sep 2019 16:11:37 +0200 +Subject: [PATCH] Adapt test script for PROJ 6.2 EPSG database (fixes #22) + +--- + libgeotiff/test/testlistgeo | 8 +++++++- + libgeotiff/test/testlistgeo_out.dist | 4 ++-- + 3 files changed, 11 insertions(+), 5 deletions(-) + +diff --git a/test/testlistgeo b/test/testlistgeo +index 7fb4a2f..571f5d0 100755 +--- a/test/testlistgeo ++++ b/test/testlistgeo +@@ -210,10 +210,15 @@ echo "Testing listgeo equidistant_cylindrical.tif" >> ${OUT} + $EXE ${DATA_DIR}/equidistant_cylindrical.tif >>${OUT} + echo "" >>${OUT} + ++# Normalize for results depending on the exact version of PROJ / EPSG database ++sed "s/ETRS89-extended/ETRS89/g" < ${OUT} > ${OUT}.tmp ++mv ${OUT}.tmp ${OUT} ++ ++sed "s/ETRS89-extended/ETRS89/g" < ${TEST_CLI_DIR}/testlistgeo_out.dist > testlistgeo_out.dist.tmp + + # do 'diff' with distribution results + echo "diff ${OUT} with testlistgeo_out.dist" +-diff -u ${OUT} ${TEST_CLI_DIR}/testlistgeo_out.dist ++diff -u ${OUT} testlistgeo_out.dist.tmp + if [ $? -ne 0 ] ; then + echo "" + echo "PROBLEMS HAVE OCCURRED" +@@ -224,6 +229,7 @@ else + echo "TEST OK" + echo "test file ${OUT} removed" + echo ++ rm testlistgeo_out.dist.tmp + /bin/rm -f ${OUT} + exit 0 + fi +diff --git a/test/testlistgeo_out.dist b/test/testlistgeo_out.dist +index 68a948c..c157f00 100644 +--- a/test/testlistgeo_out.dist ++++ b/test/testlistgeo_out.dist +@@ -1738,11 +1738,11 @@ Geotiff_Information: + Keyed_Information: + GTModelTypeGeoKey (Short,1): ModelTypeProjected + GTRasterTypeGeoKey (Short,1): RasterPixelIsArea +- ProjectedCSTypeGeoKey (Short,1): Code-3035 (ETRS89 / LAEA Europe) ++ ProjectedCSTypeGeoKey (Short,1): Code-3035 (ETRS89-extended / LAEA Europe) + End_Of_Keys. + End_Of_Geotiff. + +-PCS = 3035 (ETRS89 / LAEA Europe) ++PCS = 3035 (ETRS89-extended / LAEA Europe) + Projection = 19986 (Europe Equal Area 2001) + Projection Method: CT_LambertAzimEqualArea + ProjCenterLatGeoKey: 52.000000 ( 52d 0' 0.00"N) diff --git a/sci-libs/libgeotiff/libgeotiff-1.5.1-r1.ebuild b/sci-libs/libgeotiff/libgeotiff-1.5.1-r1.ebuild index 7806a36e7258..da6e4558921d 100644 --- a/sci-libs/libgeotiff/libgeotiff-1.5.1-r1.ebuild +++ b/sci-libs/libgeotiff/libgeotiff-1.5.1-r1.ebuild @@ -25,6 +25,8 @@ DEPEND=" " RDEPEND="${DEPEND}" +PATCHES=( "${FILESDIR}/${P}-proj-6.2-tests.patch" ) + src_prepare() { default sed -e "s:-O3::g" -i configure.ac || die |