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 C64D21382C5 for ; Tue, 19 Jan 2021 18:55:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A5FAEE088C; Tue, 19 Jan 2021 18:55:52 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 92AEDE088C for ; Tue, 19 Jan 2021 18:55:52 +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 90E6B340FF1 for ; Tue, 19 Jan 2021 18:55:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F36F2487 for ; Tue, 19 Jan 2021 18:55:49 +0000 (UTC) From: "Georgy Yakovlev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Georgy Yakovlev" Message-ID: <1611082543.024b44d334a3498446092e70a81590a41f509d72.gyakovlev@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-terms/alacritty/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-terms/alacritty/alacritty-9999.ebuild X-VCS-Directories: x11-terms/alacritty/ X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: 024b44d334a3498446092e70a81590a41f509d72 X-VCS-Branch: master Date: Tue, 19 Jan 2021 18:55:49 +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: 054b8b73-1088-4116-9b0a-8c202d3d8dc7 X-Archives-Hash: 4b805eacb4183527e0ee0caf0f32ef29 commit: 024b44d334a3498446092e70a81590a41f509d72 Author: Georgy Yakovlev gentoo org> AuthorDate: Tue Jan 19 18:53:26 2021 +0000 Commit: Georgy Yakovlev gentoo org> CommitDate: Tue Jan 19 18:55:43 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=024b44d3 x11-terms/alacritty: sync live ebuild Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Georgy Yakovlev gentoo.org> x11-terms/alacritty/alacritty-9999.ebuild | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/x11-terms/alacritty/alacritty-9999.ebuild b/x11-terms/alacritty/alacritty-9999.ebuild index 7b2029ef5c6..600107ef584 100644 --- a/x11-terms/alacritty/alacritty-9999.ebuild +++ b/x11-terms/alacritty/alacritty-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 2017-2020 Gentoo Authors +# Copyright 2017-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -21,7 +21,7 @@ if [ ${PV} == "9999" ] ; then else SRC_URI="https://github.com/alacritty/${PN}/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz $(cargo_crate_uris ${CRATES})" - KEYWORDS="~amd64 ~arm64 ~ppc64" + KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" fi LICENSE="Apache-2.0 Apache-2.0-with-LLVM-exceptions Boost-1.0 BSD BSD-2 CC0-1.0 FTL ISC MIT MPL-2.0 Unlicense WTFPL-2 ZLIB" @@ -114,3 +114,13 @@ src_test() { cd alacritty || die cargo_src_test } + +pkg_postinst() { + if [[ -z ${REPLACING_VERSIONS} ]]; then + einfo "Configuration files for ${CATEGORY}/${PN}" + einfo "in \$HOME may need to be updated after a version change" + einfo "" + einfo "An up-to-date sample configuration file can be found at" + einfo "${ROOT}/usr/share/doc/${PF}/alacritty.yml.bz2" + fi +}