Gentoo Archives: gentoo-commits

From: Ettore Di Giacinto <mudler@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/git-lfs/
Date: Fri, 08 Feb 2019 22:15:50
Message-Id: 1549664127.80153ccf1c12b30224e41517bcb30b185f11aab3.mudler@gentoo
1 commit: 80153ccf1c12b30224e41517bcb30b185f11aab3
2 Author: Ettore Di Giacinto <mudler <AT> gentoo <DOT> org>
3 AuthorDate: Fri Feb 8 22:14:45 2019 +0000
4 Commit: Ettore Di Giacinto <mudler <AT> gentoo <DOT> org>
5 CommitDate: Fri Feb 8 22:15:27 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80153ccf
7
8 dev-vcs/git-lfs: Drop old
9
10 Package-Manager: Portage-2.3.51, Repoman-2.3.12
11 Signed-off-by: Ettore Di Giacinto <mudler <AT> gentoo.org>
12
13 dev-vcs/git-lfs/Manifest | 1 -
14 dev-vcs/git-lfs/git-lfs-2.4.2.ebuild | 44 ------------------------------------
15 2 files changed, 45 deletions(-)
16
17 diff --git a/dev-vcs/git-lfs/Manifest b/dev-vcs/git-lfs/Manifest
18 index 4d3d368a12f..7cb3b2cde01 100644
19 --- a/dev-vcs/git-lfs/Manifest
20 +++ b/dev-vcs/git-lfs/Manifest
21 @@ -1,3 +1,2 @@
22 -DIST git-lfs-2.4.2.tar.gz 791443 BLAKE2B 6c613ad5b644f609b36a6a5c569c3512713d0f5fc925be759b20a01ca0e57573246557e887e086b52c5703db9db4d8a49fe91761efec48410738724256cac9e9 SHA512 c89a15c36b9d52091eb6e89f8e1db23b03f35333794467432ee49728ba83fc5d25d238f5df49bf736a4a3079778d70a527db01c2299ecd96a7b5f70059616967
23 DIST git-lfs-2.5.2.tar.gz 947150 BLAKE2B 08949f14d6292689a00ba693123373b7317a96165fcbd8bf560e81a7e1d03a1ac809cc5273efecce85f017d576107c5e651f2f30331130ecf154c9799394d590 SHA512 58475f833e0ef69d37ece91f3792b43f2a589cce94d1eba22a0534aa40257b236f9f9aab633c8b800bec129eb86fbc38e9ab6b5e52144595a27cd13bee5cb33e
24 DIST git-lfs-2.6.1.tar.gz 1630301 BLAKE2B c88ee2110fac8d46567b348c9473e3c5d9e4b763b8f03437e2121388f588109f62ea9145e239a619688150acd871c486309dc3a2bc6d046d6c25a0c43c607ebb SHA512 1f45d8da4f67d37e85b061c219423863ed41ed4723dd1030e7287e422d84cd615ddd820765bd32a147264c0f4bf9d5e84185970442fd110ae9656be97de78663
25
26 diff --git a/dev-vcs/git-lfs/git-lfs-2.4.2.ebuild b/dev-vcs/git-lfs/git-lfs-2.4.2.ebuild
27 deleted file mode 100644
28 index a3aad04e586..00000000000
29 --- a/dev-vcs/git-lfs/git-lfs-2.4.2.ebuild
30 +++ /dev/null
31 @@ -1,44 +0,0 @@
32 -# Copyright 1999-2018 Gentoo Foundation
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=6
36 -
37 -EGO_PN="github.com/git-lfs/${PN}"
38 -
39 -if [[ ${PV} == *9999 ]]; then
40 - inherit golang-vcs
41 -else
42 - SRC_URI="https://${EGO_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
43 - KEYWORDS="~amd64"
44 - inherit golang-vcs-snapshot
45 -fi
46 -
47 -DESCRIPTION="command line extension and specification for managing large files with Git"
48 -HOMEPAGE="https://git-lfs.github.com/"
49 -
50 -LICENSE="MIT BSD BSD-2 BSD-4 Apache-2.0"
51 -SLOT="0"
52 -IUSE="+doc"
53 -
54 -DEPEND="doc? ( app-text/ronn )"
55 -
56 -RDEPEND="dev-vcs/git"
57 -
58 -S="${WORKDIR}/${P}/src/${EGO_PN}"
59 -
60 -src_compile() {
61 - # can't use golang-build_src_compile for go generate
62 - # and others steps executed by build.go
63 - GOPATH="${WORKDIR}/${P}:$(get_golibdir_gopath)" \
64 - go run script/*.go -cmd build || die "build failed"
65 -
66 - if use doc; then
67 - ronn docs/man/*.ronn || die "man building failed"
68 - fi
69 -}
70 -
71 -src_install() {
72 - dobin bin/git-lfs
73 -
74 - use doc && doman docs/man/*.1
75 -}