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 9DEAC1382C5 for ; Sat, 27 Feb 2021 21:21:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CF883E0898; Sat, 27 Feb 2021 21:21:46 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 B562BE0898 for ; Sat, 27 Feb 2021 21:21:43 +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 373923410F5 for ; Sat, 27 Feb 2021 21:21:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8FCD74C2 for ; Sat, 27 Feb 2021 21:21:40 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1614460891.d21ed1af4d2742d718e4db1bda6715080f5d04e8.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: net-misc/can-utils/ X-VCS-Repository: repo/proj/guru X-VCS-Files: net-misc/can-utils/can-utils-2020.02.04.ebuild net-misc/can-utils/can-utils-2020.12.0.ebuild net-misc/can-utils/can-utils-9999-r3.ebuild X-VCS-Directories: net-misc/can-utils/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: d21ed1af4d2742d718e4db1bda6715080f5d04e8 X-VCS-Branch: dev Date: Sat, 27 Feb 2021 21:21:40 +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: 6260388d-6e7d-4d87-a739-3a656a958d7f X-Archives-Hash: 69d800817b02c2d427a454b52b9199b9 Message-ID: <20210227212140.swVNuJARrbD-nXuXplrh4GXdA6dkHbRyh4shs2Kvopo@z> commit: d21ed1af4d2742d718e4db1bda6715080f5d04e8 Author: Andrew Ammerlaan riseup net> AuthorDate: Sat Feb 27 21:21:31 2021 +0000 Commit: Andrew Ammerlaan riseup net> CommitDate: Sat Feb 27 21:21:31 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d21ed1af net-misc/can-utils: just call einstalldocs instead of copying it (or call 'default' in tsrc_install) Package-Manager: Portage-3.0.15, Repoman-3.0.2 Signed-off-by: Andrew Ammerlaan riseup.net> net-misc/can-utils/can-utils-2020.02.04.ebuild | 12 +----------- net-misc/can-utils/can-utils-2020.12.0.ebuild | 12 +----------- net-misc/can-utils/can-utils-9999-r3.ebuild | 12 +----------- 3 files changed, 3 insertions(+), 33 deletions(-) diff --git a/net-misc/can-utils/can-utils-2020.02.04.ebuild b/net-misc/can-utils/can-utils-2020.02.04.ebuild index eff9dabb..a1eb63c7 100644 --- a/net-misc/can-utils/can-utils-2020.02.04.ebuild +++ b/net-misc/can-utils/can-utils-2020.02.04.ebuild @@ -27,17 +27,7 @@ src_install() { emake DESTDIR="${D}" install - if ! declare -p DOCS >/dev/null 2>&1 ; then - local d - for d in README* ChangeLog AUTHORS NEWS TODO CHANGES THANKS BUGS \ - FAQ CREDITS CHANGELOG ; do - [[ -s "${d}" ]] && dodoc "${d}" - done - elif declare -p DOCS | grep -q "^declare -a " ; then - dodoc "${DOCS[@]}" - else - dodoc ${DOCS} - fi + einstalldocs if use systemd ; then systemd_dounit "${FILESDIR}/slcan.service" diff --git a/net-misc/can-utils/can-utils-2020.12.0.ebuild b/net-misc/can-utils/can-utils-2020.12.0.ebuild index eff9dabb..a1eb63c7 100644 --- a/net-misc/can-utils/can-utils-2020.12.0.ebuild +++ b/net-misc/can-utils/can-utils-2020.12.0.ebuild @@ -27,17 +27,7 @@ src_install() { emake DESTDIR="${D}" install - if ! declare -p DOCS >/dev/null 2>&1 ; then - local d - for d in README* ChangeLog AUTHORS NEWS TODO CHANGES THANKS BUGS \ - FAQ CREDITS CHANGELOG ; do - [[ -s "${d}" ]] && dodoc "${d}" - done - elif declare -p DOCS | grep -q "^declare -a " ; then - dodoc "${DOCS[@]}" - else - dodoc ${DOCS} - fi + einstalldocs if use systemd ; then systemd_dounit "${FILESDIR}/slcan.service" diff --git a/net-misc/can-utils/can-utils-9999-r3.ebuild b/net-misc/can-utils/can-utils-9999-r3.ebuild index 1af5ac07..12916d25 100644 --- a/net-misc/can-utils/can-utils-9999-r3.ebuild +++ b/net-misc/can-utils/can-utils-9999-r3.ebuild @@ -27,17 +27,7 @@ src_install() { emake DESTDIR="${D}" install - if ! declare -p DOCS >/dev/null 2>&1 ; then - local d - for d in README* ChangeLog AUTHORS NEWS TODO CHANGES THANKS BUGS \ - FAQ CREDITS CHANGELOG ; do - [[ -s "${d}" ]] && dodoc "${d}" - done - elif declare -p DOCS | grep -q "^declare -a " ; then - dodoc "${DOCS[@]}" - else - dodoc ${DOCS} - fi + einstalldocs if use systemd ; then systemd_dounit "${FILESDIR}/slcan.service"