summaryrefslogtreecommitdiff
path: root/dev-vcs/git-lfs
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [master] <gitlab@liguros.net>2021-03-01 00:37:58 +0000
committerLiguros - Gitlab CI/CD [master] <gitlab@liguros.net>2021-03-01 00:37:58 +0000
commit8ddb1a3d1229412a438971f82d37d518a0223726 (patch)
tree83438b5ddb9d23a390f1a3fc505303d3d2223bf2 /dev-vcs/git-lfs
parent9acab46e1a820daece7b2e631485c157ce2210ad (diff)
downloadbaldeagleos-repo-21.1.5.tar.gz
baldeagleos-repo-21.1.5.tar.xz
baldeagleos-repo-21.1.5.zip
Adding metadatav21.1.5
Diffstat (limited to 'dev-vcs/git-lfs')
-rw-r--r--dev-vcs/git-lfs/Manifest3
-rw-r--r--dev-vcs/git-lfs/git-lfs-2.13.1.ebuild (renamed from dev-vcs/git-lfs/git-lfs-2.9.2.ebuild)4
-rw-r--r--dev-vcs/git-lfs/git-lfs-2.13.2.ebuild48
-rw-r--r--dev-vcs/git-lfs/metadata.xml12
4 files changed, 64 insertions, 3 deletions
diff --git a/dev-vcs/git-lfs/Manifest b/dev-vcs/git-lfs/Manifest
index 3775e0fa382c..b2f59ce9b11a 100644
--- a/dev-vcs/git-lfs/Manifest
+++ b/dev-vcs/git-lfs/Manifest
@@ -1 +1,2 @@
-DIST git-lfs-2.9.2.tar.gz 2522788 BLAKE2B dded39eb76ae427143485ce169b55c1d3d562b4a4329c21e2ba7c5575b24ce6342546d1b9f4c36af80a9693f8850ee7b85f92437a0e20a4f113e22d5c3d6ac97 SHA512 a63250326c96f116630b379e7840d429a6e331e23832d691b3be390f429732ac5a7b9f60715c36d20c28dead33046918bdcd694fd6fe7ef8b0f3b701ffeba66b
+DIST git-lfs-2.13.1.tar.gz 2526962 BLAKE2B 3f3af1c0f976a17c108159fff15a065600f32af2a31d459fcd4b9e64d8e77aa8569aa81c932f38713ff6bafdb636aae464a2044f2664d124ca7de0a7157da969 SHA512 48397ed0ae976544c80df59df1991b0f35606d0a3ed9eb0aef66857e5bf2974e8ad5677be98b53433628d26f9e5135e9f28b15c8789cc6a4ed091946b79e6fce
+DIST git-lfs-2.13.2.tar.gz 2527736 BLAKE2B aa946feed3f6f4d279e820a378ad3108e4bcf86ffa5ca563f83199c84ddf7220f13c38f078d4bcd04cdc0fa08b4e15bd101913adeb3a0e694b12b78e76cef56e SHA512 e2bd3586758025ff4e31e731706c2d662612203e70632c18b27cec2938544c42d06aa3e4e81c141b67692fd924ee357395337c9cd4b884ba625b01fd6844c48e
diff --git a/dev-vcs/git-lfs/git-lfs-2.9.2.ebuild b/dev-vcs/git-lfs/git-lfs-2.13.1.ebuild
index 984472bd5088..1fe1d66a7716 100644
--- a/dev-vcs/git-lfs/git-lfs-2.9.2.ebuild
+++ b/dev-vcs/git-lfs/git-lfs-2.13.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2020 Liguros Authors
+# Copyright 2020-2021 Liguros Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -7,7 +7,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://${EGO_PN}"
inherit git-r3
else
-GIT_COMMIT=0274d85
+GIT_COMMIT=e896fc7
SRC_URI="https://${EGO_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~amd64-linux ~x86-linux"
fi
diff --git a/dev-vcs/git-lfs/git-lfs-2.13.2.ebuild b/dev-vcs/git-lfs/git-lfs-2.13.2.ebuild
new file mode 100644
index 000000000000..273ec898b9e1
--- /dev/null
+++ b/dev-vcs/git-lfs/git-lfs-2.13.2.ebuild
@@ -0,0 +1,48 @@
+# Copyright 2020-2021 Liguros Authors
+# Distributed under the terms of the GNU General Public License v2
+EAPI=7
+
+EGO_PN="github.com/${PN}/${PN}"
+if [[ ${PV} == *9999 ]]; then
+ EGIT_REPO_URI="https://${EGO_PN}"
+ inherit git-r3
+else
+GIT_COMMIT=fc66469
+ SRC_URI="https://${EGO_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64 ~amd64-linux ~x86-linux"
+fi
+
+DESCRIPTION="command line extension and specification for managing large files with Git"
+HOMEPAGE="https://git-lfs.github.com/"
+
+LICENSE="MIT BSD BSD-2 BSD-4 Apache-2.0"
+SLOT="0"
+IUSE="doc"
+
+DEPEND="dev-lang/go
+ doc? ( app-text/ronn )"
+RDEPEND="dev-vcs/git"
+
+QA_FLAGS_IGNORED="/usr/bin/git-lfs"
+RESTRICT="strip"
+
+src_compile() {
+ set -- go build \
+ -ldflags="-X ${EGO_PN}/config.GitCommit=${GIT_COMMIT}" \
+ -mod vendor -v -work -x \
+ -o git-lfs git-lfs.go
+ echo "$@"
+ "$@" || die
+
+ if use doc; then
+ ronn docs/man/*.ronn || die "man building failed"
+ fi
+}
+
+src_install() {
+ dobin git-lfs
+ dodoc {CHANGELOG,CODE-OF-CONDUCT,CONTRIBUTING,README}.md
+ use doc && doman docs/man/*.1
+}
+
+
diff --git a/dev-vcs/git-lfs/metadata.xml b/dev-vcs/git-lfs/metadata.xml
new file mode 100644
index 000000000000..23fbfa654b41
--- /dev/null
+++ b/dev-vcs/git-lfs/metadata.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://liguros.gitlab.io/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="project">
+ <email>dev@liguros.net</email>
+ <name>Development</name>
+ </maintainer>
+ <upstream>
+ <remote-id type="github">git-lfs/git-lfs</remote-id>
+ </upstream>
+ <origin>ports</origin>
+</pkgmetadata> \ No newline at end of file