From: Prafulla Giri <pratheblackdiamond@gmail.com>
To: 43044@debbugs.gnu.org
Subject: [bug#43044] Updates to git-lfs
Date: Tue, 25 Aug 2020 23:11:49 +0545 [thread overview]
Message-ID: <CAFw+=j3L2kYTetkJ0WU5HU6CkbA=_mzEJb9LOi0f60=Q4m7mvQ@mail.gmail.com> (raw)
[-- Attachment #1.1: Type: text/plain, Size: 407 bytes --]
Esteemed maintainers,
Attached are two patches to update the package git-lfs in
gnu/packages/version-control.scm.
Patch0001 - adds two new phases to build and install man pages into the
user's GUIX_PROFILE. This makes the git-lfs man pages available. `man
git-lfs` have hitherto thrown "No manual entry for git-lfs". This patch
fixes it.
Patch0002 - Upgrades package git-lfs to version 2.11.0
Thank you
[-- Attachment #1.2: Type: text/html, Size: 554 bytes --]
[-- Attachment #2: 0001-git-lfs-build-and-install-man-pages-to-user-s-GUIX_P.patch --]
[-- Type: text/x-patch, Size: 2065 bytes --]
From b03bcd0d01a1355a09012237022aff550d26d7e1 Mon Sep 17 00:00:00 2001
From: Prafulla Giri <pratheblackdiamond@gmail.com>
Date: Tue, 25 Aug 2020 22:54:56 +0545
Subject: [PATCH 1/2] git-lfs: build, and install man pages to user's
GUIX_PROFILE
* gnu/packages/version-control.scm (git-lfs): Add build phases
to build and install man pages to the user's GUIX_PROFILE.
[native-inputs]: Add `ronn-ng`.
---
gnu/packages/version-control.scm | 20 ++++++++++++++++++--
1 file changed, 18 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index fb36da9c41..94ecb235e9 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -2584,10 +2584,26 @@ interrupted, published, and collaborated on while in progress.")
(file-name (git-file-name name version))
(sha256
(base32
- "1nf40rbdz901vsahg5cm09pznpina6wimmxl0lmh8pn0mi51yzvc"))))
(build-system go-build-system)
(arguments
- '(#:import-path "github.com/git-lfs/git-lfs"))
+ `(#:import-path "github.com/git-lfs/git-lfs"
+ #:phases
+ (modify-phases %standard-phases
+ (add-after 'build 'build-man-pages
+ (lambda _
+ (with-directory-excursion "src/github.com/git-lfs/git-lfs"
+ (invoke "make" "man"))
+ #t))
+ (add-after 'install 'install-man-pages
+ (lambda _
+ (with-directory-excursion "src/github.com/git-lfs/git-lfs/man"
+ (let ((out (assoc-ref %outputs "out")))
+ (for-each (lambda (manpage)
+ (install-file manpage (string-append out "/share/man/man1")))
+ (find-files "." "^git-lfs.*\\.1$"))))
+ #t)))))
+ ;; make `ronn` available during build for man page generation
+ (native-inputs `(("ronn-ng" ,ronn-ng)))
(home-page "https://git-lfs.github.com/")
(synopsis "Git extension for versioning large files")
(description
--
2.28.0
[-- Attachment #3: 0002-git-lfs-Upgrade-to-v2.11.0.patch --]
[-- Type: text/x-patch, Size: 1229 bytes --]
From 8bbaaca28cb842dc64b48b3243e7c9b354fbf879 Mon Sep 17 00:00:00 2001
From: Prafulla Giri <pratheblackdiamond@gmail.com>
Date: Tue, 25 Aug 2020 23:00:34 +0545
Subject: [PATCH 2/2] git-lfs: Upgrade to v2.11.0
* gnu/packages/version-control.scm (git-lfs): Upgrade to v2.11.0.
---
gnu/packages/version-control.scm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index 94ecb235e9..09b2539084 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -2575,7 +2575,7 @@ interrupted, published, and collaborated on while in progress.")
(define-public git-lfs
(package
(name "git-lfs")
- (version "2.7.2")
+ (version "2.11.0")
(source (origin
(method git-fetch)
(uri (git-reference
@@ -2584,6 +2584,7 @@ interrupted, published, and collaborated on while in progress.")
(file-name (git-file-name name version))
(sha256
(base32
+ "05qd96bn2cl7gn5qarbcv6scdpj28qiwdfzalamqk5jjiidpmng5"))))
(build-system go-build-system)
(arguments
`(#:import-path "github.com/git-lfs/git-lfs"
--
2.28.0
next reply other threads:[~2020-08-25 17:28 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-08-25 17:26 Prafulla Giri [this message]
2020-08-25 17:41 ` bug#43044: Updates to git-lfs Efraim Flashner
[not found] ` <handler.43044.D43044.159837731410746.notifdone@debbugs.gnu.org>
2020-08-25 17:47 ` [bug#43044] closed (Re: [bug#43044] Updates to git-lfs) Prafulla Giri
2020-08-25 17:54 ` Efraim Flashner
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://guix.gnu.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to='CAFw+=j3L2kYTetkJ0WU5HU6CkbA=_mzEJb9LOi0f60=Q4m7mvQ@mail.gmail.com' \
--to=pratheblackdiamond@gmail.com \
--cc=43044@debbugs.gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).