From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id AEA4A138334 for ; Fri, 3 Aug 2018 13:32:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7E9A1E07D4; Fri, 3 Aug 2018 13:32:26 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 50844E07D4 for ; Fri, 3 Aug 2018 13:32:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 77478335CCF for ; Fri, 3 Aug 2018 13:32:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 16A7537B for ; Fri, 3 Aug 2018 13:32:22 +0000 (UTC) From: "Amy Liffey" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Amy Liffey" Message-ID: <1533303131.9db2ef6f8d5226898586b31ea23e58c58d682a3e.amynka@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.4.1-r1.ebuild sci-libs/libgeotiff/libgeotiff-1.4.1.ebuild X-VCS-Directories: sci-libs/libgeotiff/ X-VCS-Committer: amynka X-VCS-Committer-Name: Amy Liffey X-VCS-Revision: 9db2ef6f8d5226898586b31ea23e58c58d682a3e X-VCS-Branch: master Date: Fri, 3 Aug 2018 13:32:22 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: c7237dda-a3a7-42ed-a48e-bea1b7e934f7 X-Archives-Hash: 5638e846729461c4082c3900ab2ca911 commit: 9db2ef6f8d5226898586b31ea23e58c58d682a3e Author: Amy Liffey gentoo org> AuthorDate: Fri Aug 3 13:21:54 2018 +0000 Commit: Amy Liffey gentoo org> CommitDate: Fri Aug 3 13:32:11 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9db2ef6f sci-libs/libgeotiff: remove not needed ewarn message - EAPI 6 bump - remove eutils - Remove not needed ewarn messages - Add missing dies Closes: https://bugs.gentoo.org/546618 Package-Manager: Portage-2.3.40, Repoman-2.3.9 ...iff-1.4.1.ebuild => libgeotiff-1.4.1-r1.ebuild} | 25 +++++++--------------- 1 file changed, 8 insertions(+), 17 deletions(-) diff --git a/sci-libs/libgeotiff/libgeotiff-1.4.1.ebuild b/sci-libs/libgeotiff/libgeotiff-1.4.1-r1.ebuild similarity index 70% rename from sci-libs/libgeotiff/libgeotiff-1.4.1.ebuild rename to sci-libs/libgeotiff/libgeotiff-1.4.1-r1.ebuild index d2e161b24ea..d30e21eb05f 100644 --- a/sci-libs/libgeotiff/libgeotiff-1.4.1.ebuild +++ b/sci-libs/libgeotiff/libgeotiff-1.4.1-r1.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=6 -inherit autotools eutils +inherit autotools MY_P=${P/_rc/RC} @@ -30,7 +30,7 @@ S=${WORKDIR}/${MY_P/RC*/} DOCS=( README ChangeLog ) src_prepare() { - epatch_user + default sed -i \ -e "s:-O3::g" \ configure.ac || die @@ -40,7 +40,7 @@ src_prepare() { src_configure() { econf \ $(use_enable static-libs static) \ - --enable-debug=$(use debug && echo yes || echo no) \ + --enable-debug=$(usex debug) \ --with-jpeg="${EPREFIX}"/usr/ \ --with-zip="${EPREFIX}"/usr/ @@ -49,8 +49,8 @@ src_compile() { default if use doc; then - mkdir -p docs/api - cp "${FILESDIR}"/Doxyfile Doxyfile + mkdir -p docs/api || die + cp "${FILESDIR}"/Doxyfile Doxyfile || die doxygen -u Doxyfile || die "updating doxygen config failed" doxygen Doxyfile || die "docs generation failed" fi @@ -60,14 +60,5 @@ src_install() { default use doc && dohtml docs/api/* - prune_libtool_files -} - -pkg_postinst() { - echo - ewarn "You should rebuild any packages built against ${PN} by running:" - ewarn "# revdep-rebuild" - ewarn "or using preserved-rebuild features of portage-2.2:" - ewarn "# emerge @preserved-rebuild" - echo + find "${D}" -name '*.la' -delete || die }