GNU bug report logs - #65365
[PATCH] gnu: Add qgit.

Previous Next

Package: guix-patches;

Reported by: Sughosha <sughosha <at> disroot.org>

Date: Fri, 18 Aug 2023 14:54:01 UTC

Severity: normal

Tags: moreinfo, patch

Done: Maxim Cournoyer <maxim.cournoyer <at> gmail.com>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 65365 in the body.
You can then email your comments to 65365 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#65365; Package guix-patches. (Fri, 18 Aug 2023 14:54:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Sughosha <sughosha <at> disroot.org>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Fri, 18 Aug 2023 14:54:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Sughosha <sughosha <at> disroot.org>
To: guix-patches <at> gnu.org
Cc: Sughosha <sughosha <at> disroot.org>
Subject: [PATCH] gnu: Add qgit.
Date: Fri, 18 Aug 2023 16:52:46 +0200
* gnu/packages/version-control.scm (qgit): New variable.
---
 gnu/packages/version-control.scm | 37 ++++++++++++++++++++++++++++++++++++-
 1 file changed, 36 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index 699a091..5143438 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -79,6 +79,7 @@ (define-module (gnu packages version-control)
   #:use-module (guix build-system go)
   #:use-module (guix build-system perl)
   #:use-module (guix build-system python)
+  #:use-module (guix build-system qt)
   #:use-module (guix build-system trivial)
   #:use-module (gnu packages apr)
   #:use-module (gnu packages autotools)
@@ -1297,7 +1298,7 @@ (define-public python-gitpython
 either a pure Python implementation, or the faster, but more resource intensive
  @command{git} command implementation.")
      (license license:bsd-3)))
- 
+
 (define-public savane
   (package
     (name "savane")
@@ -3545,6 +3546,40 @@ (define-public tkrev
 TkDiff is included for browsing and merging your changes.")
     (license license:gpl2+)))
 
+(define-public qgit
+  (package
+    (name "qgit")
+    (version "2.10")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                     (url "https://github.com/tibirna/qgit")
+                     (commit (string-append "qgit-" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "10j5xll7ai1rb2ybyblbgqm762bqspffpf33fdr61qdchnp2gkf4"))))
+    (build-system qt-build-system)
+    (arguments
+     (list #:tests? #f)) ;no tests
+    (propagated-inputs
+     (list git))
+    (home-page "https://github.com/tibirna/qgit")
+    (synopsis "Graphical front-end for git")
+    (description
+     "Qgit is a graphical front-end for git, with features to:
+@itemize
+@item view revisions, diffs, files history, files annotation and archive tree,
+@item commit changes visually cherry picking modified files,
+@item apply or save patch series from selected commits, drag and drop commits,
+@item associate commands sequences, scripts and anything else executable to a
+ custom action,
+@item push/pop commits,
+@item apply/save/create patches
+@item and cherry pick single modified files.
+@end itemize")
+    (license license:gpl3+)))
+
 (define-public git-filter-repo
   (package
     (name "git-filter-repo")
--
libgit2 1.5.1





Information forwarded to guix-patches <at> gnu.org:
bug#65365; Package guix-patches. (Tue, 05 Sep 2023 13:28:02 GMT) Full text and rfc822 format available.

Message #8 received at 65365 <at> debbugs.gnu.org (full text, mbox):

From: Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
To: Sughosha <sughosha <at> disroot.org>
Cc: 65365 <at> debbugs.gnu.org
Subject: Re: bug#65365: [PATCH] gnu: Add qgit.
Date: Tue, 05 Sep 2023 09:27:35 -0400
Hi Sughosha,

Sughosha <sughosha <at> disroot.org> writes:

> * gnu/packages/version-control.scm (qgit): New variable.
> ---
>  gnu/packages/version-control.scm | 37 ++++++++++++++++++++++++++++++++++++-
>  1 file changed, 36 insertions(+), 1 deletion(-)
>
> diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
> index 699a091..5143438 100644
> --- a/gnu/packages/version-control.scm
> +++ b/gnu/packages/version-control.scm
> @@ -79,6 +79,7 @@ (define-module (gnu packages version-control)
>    #:use-module (guix build-system go)
>    #:use-module (guix build-system perl)
>    #:use-module (guix build-system python)
> +  #:use-module (guix build-system qt)
>    #:use-module (guix build-system trivial)
>    #:use-module (gnu packages apr)
>    #:use-module (gnu packages autotools)
> @@ -1297,7 +1298,7 @@ (define-public python-gitpython
>  either a pure Python implementation, or the faster, but more resource intensive
>   @command{git} command implementation.")
>       (license license:bsd-3)))
> - 
> +
>  (define-public savane
>    (package
>      (name "savane")
> @@ -3545,6 +3546,40 @@ (define-public tkrev
>  TkDiff is included for browsing and merging your changes.")
>      (license license:gpl2+)))
>  
> +(define-public qgit
> +  (package
> +    (name "qgit")
> +    (version "2.10")
> +    (source (origin
> +              (method git-fetch)
> +              (uri (git-reference
> +                     (url "https://github.com/tibirna/qgit")
> +                     (commit (string-append "qgit-" version))))
> +              (file-name (git-file-name name version))
> +              (sha256
> +               (base32
> +                "10j5xll7ai1rb2ybyblbgqm762bqspffpf33fdr61qdchnp2gkf4"))))
> +    (build-system qt-build-system)
> +    (arguments
> +     (list #:tests? #f)) ;no tests
> +    (propagated-inputs
> +     (list git))
> +    (home-page "https://github.com/tibirna/qgit")
> +    (synopsis "Graphical front-end for git")
> +    (description
> +     "Qgit is a graphical front-end for git, with features to:
> +@itemize
> +@item view revisions, diffs, files history, files annotation and archive tree,
> +@item commit changes visually cherry picking modified files,
> +@item apply or save patch series from selected commits, drag and drop commits,
> +@item associate commands sequences, scripts and anything else executable to a
> + custom action,
> +@item push/pop commits,
> +@item apply/save/create patches
> +@item and cherry pick single modified files.
> +@end itemize")
> +    (license license:gpl3+)))

Does this build using Qt 6?  If so, it'd be best to provide the #:qtbase
argument with the package qtbase, which is at version 6 (by default it
currently still uses Qt 5).

-- 
Thanks,
Maxim




Added tag(s) moreinfo. Request was from Maxim Cournoyer <maxim.cournoyer <at> gmail.com> to control <at> debbugs.gnu.org. (Tue, 05 Sep 2023 13:28:02 GMT) Full text and rfc822 format available.

Information forwarded to guix-patches <at> gnu.org:
bug#65365; Package guix-patches. (Sun, 17 Sep 2023 08:09:02 GMT) Full text and rfc822 format available.

Message #13 received at 65365 <at> debbugs.gnu.org (full text, mbox):

From: sughosha <sughosha <at> disroot.org>
To: Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
Cc: 65365 <at> debbugs.gnu.org
Subject: Re: bug#65365: [PATCH] gnu: Add qgit.
Date: Sun, 17 Sep 2023 10:07:50 +0200
[Message part 1 (text/plain, inline)]
Hi Maxim,

Am 2023-09-05 15:27, schrieb Maxim Cournoyer:

> Does this build using Qt 6?  If so, it'd be best to provide the 
> #:qtbase
> argument with the package qtbase, which is at version 6 (by default it
> currently still uses Qt 5).

No. The build fails without Qt5Config.cmake.

Regards,

Sughosha
[Message part 2 (text/html, inline)]

Reply sent to Maxim Cournoyer <maxim.cournoyer <at> gmail.com>:
You have taken responsibility. (Sun, 17 Sep 2023 20:30:01 GMT) Full text and rfc822 format available.

Notification sent to Sughosha <sughosha <at> disroot.org>:
bug acknowledged by developer. (Sun, 17 Sep 2023 20:30:02 GMT) Full text and rfc822 format available.

Message #18 received at 65365-done <at> debbugs.gnu.org (full text, mbox):

From: Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
To: sughosha <sughosha <at> disroot.org>
Cc: 65365-done <at> debbugs.gnu.org
Subject: Re: bug#65365: [PATCH] gnu: Add qgit.
Date: Sun, 17 Sep 2023 16:28:56 -0400
Hi,

sughosha <sughosha <at> disroot.org> writes:

> Hi Maxim,
>
> Am 2023-09-05 15:27, schrieb Maxim Cournoyer:
>
>> Does this build using Qt 6?  If so, it'd be best to provide the
>> #:qtbase
>> argument with the package qtbase, which is at version 6 (by default it
>> currently still uses Qt 5).
>
> No. The build fails without Qt5Config.cmake.

Thanks for the response.  Installed!

-- 
Thanks,
Maxim




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Mon, 16 Oct 2023 11:24:10 GMT) Full text and rfc822 format available.

This bug report was last modified 1 year and 233 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.