Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/git-lfs/
Date: Sat, 10 Apr 2021 07:45:41
Message-Id: 1618040428.a73925ae4e5d81a8ff918c2c5fd82a6d6f123e6c.juippis@gentoo
1 commit: a73925ae4e5d81a8ff918c2c5fd82a6d6f123e6c
2 Author: Nils Freydank <holgersson <AT> posteo <DOT> de>
3 AuthorDate: Wed Mar 31 18:59:56 2021 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 10 07:40:28 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a73925ae
7
8 dev-vcs/git-lfs: Bump to 2.13.3
9
10 Package-Manager: Portage-3.0.18, Repoman-3.0.3
11 Signed-off-by: Nils Freydank <holgersson <AT> posteo.de>
12 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
13
14 dev-vcs/git-lfs/Manifest | 1 +
15 dev-vcs/git-lfs/git-lfs-2.13.3.ebuild | 70 +++++++++++++++++++++++++++++++++++
16 2 files changed, 71 insertions(+)
17
18 diff --git a/dev-vcs/git-lfs/Manifest b/dev-vcs/git-lfs/Manifest
19 index 22a0e33d730..bb66b3e4294 100644
20 --- a/dev-vcs/git-lfs/Manifest
21 +++ b/dev-vcs/git-lfs/Manifest
22 @@ -1,2 +1,3 @@
23 DIST git-lfs-2.11.0.tar.gz 2839623 BLAKE2B e9d0e8ea37f19617a4f727abdc93c3c937052ad98b6ac40de27ced6b250789701797d04f1bf795b259e83155e5d8a1ca122dbf8b40503c2c41d6d891a3ecf096 SHA512 2117b425864a36f773c14d34c78999636d836646184cf8d89045ef6de90cbded873d4de4613ecfafb0fa2ea8ae068e11f5ae22eed6af01715b5fac9be70f033b
24 DIST git-lfs-2.13.1.tar.gz 2526962 BLAKE2B 3f3af1c0f976a17c108159fff15a065600f32af2a31d459fcd4b9e64d8e77aa8569aa81c932f38713ff6bafdb636aae464a2044f2664d124ca7de0a7157da969 SHA512 48397ed0ae976544c80df59df1991b0f35606d0a3ed9eb0aef66857e5bf2974e8ad5677be98b53433628d26f9e5135e9f28b15c8789cc6a4ed091946b79e6fce
25 +DIST git-lfs-2.13.3.tar.gz 2901796 BLAKE2B 84bbce719e83229bbb7116f5c337e0748a2be223b260e03653dab23f6c8d20087a09695d6ef7abf45e128bfd79c5eb994cb14fb906330675174830603a2e3ba2 SHA512 2c9e10e4f2fdb5d6bae8994db5879f50596109f3057e7369a9edca3c13c3f4d77e268e3903a0abca60cf8e342ff54bc4920c01a530f8eb400e3a0cc11a171f74
26
27 diff --git a/dev-vcs/git-lfs/git-lfs-2.13.3.ebuild b/dev-vcs/git-lfs/git-lfs-2.13.3.ebuild
28 new file mode 100644
29 index 00000000000..641f9c79a60
30 --- /dev/null
31 +++ b/dev-vcs/git-lfs/git-lfs-2.13.3.ebuild
32 @@ -0,0 +1,70 @@
33 +# Copyright 1999-2021 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +EGO_PN=github.com/git-lfs/git-lfs
38 +inherit go-module
39 +
40 +DESCRIPTION="Command line extension and specification for managing large files with git"
41 +HOMEPAGE="https://git-lfs.github.com/"
42 +
43 +if [[ "${PV}" = 9999* ]]; then
44 + EGIT_REPO_URI="https://${EGO_PN}"
45 + inherit git-r3
46 +else
47 + SRC_URI="https://${EGO_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
48 + KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
49 +fi
50 +
51 +LICENSE="Apache-2.0 BSD BSD-2 BSD-4 ISC MIT"
52 +SLOT="0"
53 +IUSE="doc test"
54 +
55 +BDEPEND="doc? ( app-text/ronn )"
56 +RDEPEND="dev-vcs/git"
57 +
58 +RESTRICT+=" !test? ( test )"
59 +
60 +DOCS=(
61 + CHANGELOG.md
62 + CODE-OF-CONDUCT.md
63 + CONTRIBUTING.md
64 + README.md
65 + SECURITY.md
66 +)
67 +
68 +src_compile() {
69 + # Flags -w, -s: Omit debugging information to reduce binary size,
70 + # see https://golang.org/cmd/link/.
71 + local mygobuildargs=(
72 + -ldflags="-X ${EGO_PN}/config.GitCommit=${GIT_COMMIT} -s -w"
73 + -mod vendor -v -work -x
74 + )
75 + go build "${mygobuildargs[@]}" -o git-lfs git-lfs.go || die
76 +
77 + if use doc; then
78 + ronn docs/man/*.ronn || die "man building failed"
79 + fi
80 +}
81 +
82 +src_install() {
83 + dobin git-lfs
84 + einstalldocs
85 + use doc && doman docs/man/*.1
86 +}
87 +
88 +src_test() {
89 + local mygotestargs=(
90 + -ldflags="-X ${EGO_PN}/config.GitCommit=${GIT_COMMIT}"
91 + -mod vendor
92 + )
93 + go test "${mygotestargs[@]}" ./... || die
94 +}
95 +
96 +pkg_postinst () {
97 + if [[ -z "${REPLACING_VERSIONS}" ]]; then
98 + elog ""
99 + elog "Run \'git lfs install\' once for each user account manually."
100 + elog "For more details see https://bugs.gentoo.org/show_bug.cgi?id=733372."
101 + fi
102 +}