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 142931382C5 for ; Sat, 13 Jun 2020 16:37:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4618BE0D4B; Sat, 13 Jun 2020 16:37:40 +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 2EC07E0D4B for ; Sat, 13 Jun 2020 16:37:40 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 348F034EBFB for ; Sat, 13 Jun 2020 16:37:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 64B9B291 for ; Sat, 13 Jun 2020 16:37:37 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1592066254.d43805dc36bf7a866764b158ea27219a48c5cf2d.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libjpeg-turbo/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libjpeg-turbo/libjpeg-turbo-1.5.3-r3.ebuild X-VCS-Directories: media-libs/libjpeg-turbo/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: d43805dc36bf7a866764b158ea27219a48c5cf2d X-VCS-Branch: master Date: Sat, 13 Jun 2020 16:37:37 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 75bc1b92-5779-4b39-b5cd-da1bbd036666 X-Archives-Hash: 7ca7547b745e829b843989e49e1e8e0b commit: d43805dc36bf7a866764b158ea27219a48c5cf2d Author: Mike Gilbert gentoo org> AuthorDate: Sat Jun 13 16:37:23 2020 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Sat Jun 13 16:37:34 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d43805dc media-libs/libjpeg-turbo: fix pkgcheck warnings Package-Manager: Portage-2.3.100_p6, Repoman-2.3.22_p49 Signed-off-by: Mike Gilbert gentoo.org> media-libs/libjpeg-turbo/libjpeg-turbo-1.5.3-r3.ebuild | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/media-libs/libjpeg-turbo/libjpeg-turbo-1.5.3-r3.ebuild b/media-libs/libjpeg-turbo/libjpeg-turbo-1.5.3-r3.ebuild index 4563573715d..8611519b7f5 100644 --- a/media-libs/libjpeg-turbo/libjpeg-turbo-1.5.3-r3.ebuild +++ b/media-libs/libjpeg-turbo/libjpeg-turbo-1.5.3-r3.ebuild @@ -3,7 +3,7 @@ EAPI=6 -inherit autotools libtool ltprune java-pkg-opt-2 libtool toolchain-funcs multilib-minimal +inherit autotools libtool java-pkg-opt-2 libtool toolchain-funcs multilib-minimal DESCRIPTION="MMX, SSE, and SSE2 SIMD accelerated JPEG library" HOMEPAGE="https://libjpeg-turbo.org/ https://sourceforge.net/projects/libjpeg-turbo/" @@ -109,14 +109,13 @@ multilib_src_install() { } multilib_src_install_all() { - prune_libtool_files + find "${ED}" -name '*.la' -type f -delete || die - insinto /usr/share/doc/${PF}/html - doins -r "${S}"/doc/html/* + dodoc -r "${S}"/doc/html newdoc "${WORKDIR}"/debian/changelog changelog.debian if use java; then - insinto /usr/share/doc/${PF}/html/java - doins -r "${S}"/java/doc/* newdoc "${S}"/java/README README.java + docinto html/java + dodoc -r "${S}"/java/doc/* fi }