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 DA67413933E for ; Wed, 7 Jul 2021 10:54:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A7A4EE0ACD; Wed, 7 Jul 2021 10:54:23 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 8F32FE0ACD for ; Wed, 7 Jul 2021 10:54:23 +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 41F67342BD8 for ; Wed, 7 Jul 2021 10:54:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 81D5D7C5 for ; Wed, 7 Jul 2021 10:54:20 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1625655216.3e73577a7504992d2d268fbf5ee43032c012d1f7.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/bat/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/bat/bat-0.18.1.ebuild X-VCS-Directories: sys-apps/bat/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 3e73577a7504992d2d268fbf5ee43032c012d1f7 X-VCS-Branch: master Date: Wed, 7 Jul 2021 10:54:20 +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: bd11b01c-ad33-4e19-b919-977809a4a265 X-Archives-Hash: bcc064a99d06f1914a940493a47511b2 commit: 3e73577a7504992d2d268fbf5ee43032c012d1f7 Author: Joonas Niilola gentoo org> AuthorDate: Wed Jul 7 10:53:36 2021 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Wed Jul 7 10:53:36 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e73577a sys-apps/bat: update DESCRIPTION on 0.18.1 - add missing dies, - remove arm keyword since it wasn't requested through bugzilla, - remove redundant DEPEND. Signed-off-by: Joonas Niilola gentoo.org> sys-apps/bat/bat-0.18.1.ebuild | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/sys-apps/bat/bat-0.18.1.ebuild b/sys-apps/bat/bat-0.18.1.ebuild index 535c276e0f7..ca85a16743f 100644 --- a/sys-apps/bat/bat-0.18.1.ebuild +++ b/sys-apps/bat/bat-0.18.1.ebuild @@ -152,7 +152,7 @@ CRATES=" inherit cargo -DESCRIPTION="A cat(1) clone with wings." +DESCRIPTION="cat(1) clone with syntax highlighting and Git integration" # Double check the homepage as the cargo_metadata crate # does not provide this value so instead repository is used HOMEPAGE="https://github.com/sharkdp/bat" @@ -161,13 +161,12 @@ SRC_URI+=" $(cargo_crate_uris ${CRATES})" LICENSE="Apache-2.0 Boost-1.0 BSD BSD-2 CC0-1.0 ISC LGPL-3+ MIT Apache-2.0 Unlicense ZLIB" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" BDEPEND="virtual/pkgconfig" DEPEND=" >=dev-libs/libgit2-1.1.0:=[threads] dev-libs/oniguruma:= - sys-libs/zlib " # >app-backup/bacula-9.2[qt5] has file collisions, #686118 RDEPEND="${DEPEND} @@ -196,7 +195,7 @@ src_install() { # Hack to find/install generated zsh completions files as it can be present in # multiple directories - local BUILD_DIR="$(dirname $(find target/release -name bat.zsh -print -quit))" + local BUILD_DIR="$(dirname $(find target/release -name bat.zsh -print -quit || die) || die)" insinto /usr/share/zsh/site-functions/ newins "${BUILD_DIR}"/bat.zsh _${PN} }