From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1719592-garchives=archives.gentoo.org@lists.gentoo.org> Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A2AB71582EF for <garchives@archives.gentoo.org>; Thu, 20 Feb 2025 01:12:53 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 88C5A343150 for <garchives@archives.gentoo.org>; Thu, 20 Feb 2025 01:12:53 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id BAA1D110470; Thu, 20 Feb 2025 01:12:49 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id B4B52110470 for <gentoo-commits@lists.gentoo.org>; Thu, 20 Feb 2025 01:12:49 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 733FE343147 for <gentoo-commits@lists.gentoo.org>; Thu, 20 Feb 2025 01:12:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CCA272736 for <gentoo-commits@lists.gentoo.org>; Thu, 20 Feb 2025 01:12:47 +0000 (UTC) From: "Sam James" <sam@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" <sam@gentoo.org> Message-ID: <1740013858.06c1fc890edaefc35e43fca7d8b5b0eebe08a192.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/libgeotiff/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/libgeotiff/libgeotiff-1.7.3.ebuild X-VCS-Directories: sci-libs/libgeotiff/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 06c1fc890edaefc35e43fca7d8b5b0eebe08a192 X-VCS-Branch: master Date: Thu, 20 Feb 2025 01:12:47 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 0fb2a8a4-ba0c-4746-a445-eebed0891398 X-Archives-Hash: b8b127968c633dc7e34a7b3c68215944 commit: 06c1fc890edaefc35e43fca7d8b5b0eebe08a192 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Thu Feb 20 01:10:58 2025 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Thu Feb 20 01:10:58 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06c1fc89 sci-libs/libgeotiff: small src_test tweaks Signed-off-by: Sam James <sam <AT> gentoo.org> sci-libs/libgeotiff/libgeotiff-1.7.3.ebuild | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/sci-libs/libgeotiff/libgeotiff-1.7.3.ebuild b/sci-libs/libgeotiff/libgeotiff-1.7.3.ebuild index 73a2d0594283..27e1af474c68 100644 --- a/sci-libs/libgeotiff/libgeotiff-1.7.3.ebuild +++ b/sci-libs/libgeotiff/libgeotiff-1.7.3.ebuild @@ -51,16 +51,18 @@ src_compile() { fi } -# check if needed: https://github.com/OSGeo/libgeotiff/issues/126 src_test() { - # Source: https://github.com/OSGeo/libgeotiff?tab=readme-ov-file#testing + # https://github.com/OSGeo/libgeotiff?tab=readme-ov-file#testing + # Check if still needed: https://github.com/OSGeo/libgeotiff/issues/126 pushd "${BUILD_DIR}"/bin || die + # prepare file ./makegeo || die "makegeo failed" [[ -f "newgeo.tif" ]] || die "makegeo did not produce a file" + # test ./listgeo newgeo.tif > metadata.txt || die "listgeo metadata extraction failed" ./geotifcp -g metadata.txt newgeo.tif newer.tif > /dev/null || die cmp new{geo,er}.tif || die "geotifcp produces different files" - popd + popd || die }