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 D4456138359 for ; Wed, 12 Aug 2020 22:10:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 172DEE085B; Wed, 12 Aug 2020 22:10:51 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 EB4B7E085B for ; Wed, 12 Aug 2020 22:10:50 +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 0F10334EDCF for ; Wed, 12 Aug 2020 22:10:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 83BD022B for ; Wed, 12 Aug 2020 22:10:47 +0000 (UTC) From: "Thomas Deutschmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Deutschmann" Message-ID: <1597270241.450bd4f6398cd138214710c89029aace7f7fb3d3.whissi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/git-lfs/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-vcs/git-lfs/git-lfs-2.11.0.ebuild X-VCS-Directories: dev-vcs/git-lfs/ X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: 450bd4f6398cd138214710c89029aace7f7fb3d3 X-VCS-Branch: master Date: Wed, 12 Aug 2020 22:10:47 +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: 171a2ed5-40f5-4a4e-b4fd-02d54c677d98 X-Archives-Hash: c45af54292208cc959b3825aa1bc8943 commit: 450bd4f6398cd138214710c89029aace7f7fb3d3 Author: Nils Freydank posteo de> AuthorDate: Sun Aug 9 11:03:04 2020 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Wed Aug 12 22:10:41 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=450bd4f6 dev-vcs/git-lfs: Add a note about manual post install step It's necessary to call 'git lfs install' once for each user running git-lfs, so add a note on first installation. Reported-by: Vitaly Zdanevich ya.ru> Bug: https://bugs.gentoo.org/show_bug.cgi?id=733372 Package-Manager: Portage-3.0.1, Repoman-2.3.23 Signed-off-by: Nils Freydank posteo.de> Signed-off-by: Thomas Deutschmann gentoo.org> dev-vcs/git-lfs/git-lfs-2.11.0.ebuild | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/dev-vcs/git-lfs/git-lfs-2.11.0.ebuild b/dev-vcs/git-lfs/git-lfs-2.11.0.ebuild index 3bbf8d4e300..6fdbdcf910e 100644 --- a/dev-vcs/git-lfs/git-lfs-2.11.0.ebuild +++ b/dev-vcs/git-lfs/git-lfs-2.11.0.ebuild @@ -52,3 +52,11 @@ src_test() { echo "$@" "$@" || die } + +pkg_postinst () { + if [[ -z "${REPLACING_VERSIONS}" ]]; then + elog "" + elog "Run \'git lfs install\' once for each user account manually." + elog "For more details see https://bugs.gentoo.org/show_bug.cgi?id=733372." + fi +}