unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#57510] [PATCH 0/3] Update git.
@ 2022-08-31 19:33 Greg Hogan
  2022-08-31 19:34 ` [bug#57510] [PATCH 1/3] gnu: git: Update to 2.37.3 Greg Hogan
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Greg Hogan @ 2022-08-31 19:33 UTC (permalink / raw)
  To: 57510; +Cc: Greg Hogan

This patchset updates git and fixes two builds.

Greg Hogan (3):
  gnu: git: Update to 2.37.3.
  gnu: src: Update to 1.29.
  gnu: orange: Fix QT_PLUGIN_PATH.

 gnu/packages/orange.scm          |  2 +-
 gnu/packages/version-control.scm | 13 +++++++------
 2 files changed, 8 insertions(+), 7 deletions(-)

-- 
2.37.2





^ permalink raw reply	[flat|nested] 5+ messages in thread

* [bug#57510] [PATCH 1/3] gnu: git: Update to 2.37.3.
  2022-08-31 19:33 [bug#57510] [PATCH 0/3] Update git Greg Hogan
@ 2022-08-31 19:34 ` Greg Hogan
  2022-08-31 19:34 ` [bug#57510] [PATCH 2/3] gnu: src: Update to 1.29 Greg Hogan
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Greg Hogan @ 2022-08-31 19:34 UTC (permalink / raw)
  To: 57510; +Cc: Greg Hogan

* gnu/packages/version-control.scm (git): Update to 2.37.3.
---
 gnu/packages/version-control.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index 82df12b55a..e0398cc9a4 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -221,14 +221,14 @@ (define git-cross-configure-flags
 (define-public git
   (package
    (name "git")
-   (version "2.37.2")
+   (version "2.37.3")
    (source (origin
             (method url-fetch)
             (uri (string-append "mirror://kernel.org/software/scm/git/git-"
                                 version ".tar.xz"))
             (sha256
              (base32
-              "00xhdm086bxm4v2p8m7ra7vf9kwdppw4l2n3vakfff253j19qg8w"))))
+              "0yp8hdj0w18jhmmdflzz74z418cw95i08pc22yycyn8nyvbl2il1"))))
    (build-system gnu-build-system)
    (native-inputs
     `(("native-perl" ,perl)
@@ -248,7 +248,7 @@ (define-public git
                 version ".tar.xz"))
           (sha256
            (base32
-            "1zhn91fzyyz890a5hm0bvs0vnhy8c81q1fhsk2gfwbbh73z161nz"))))
+            "053lj9wy8y2yr5jzpb0af4w50gz3ckhgc15wqx7is4z6k9a76lww"))))
       ;; For subtree documentation.
       ("asciidoc" ,asciidoc)
       ("docbook-xsl" ,docbook-xsl)
-- 
2.37.2





^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [bug#57510] [PATCH 2/3] gnu: src: Update to 1.29.
  2022-08-31 19:33 [bug#57510] [PATCH 0/3] Update git Greg Hogan
  2022-08-31 19:34 ` [bug#57510] [PATCH 1/3] gnu: git: Update to 2.37.3 Greg Hogan
@ 2022-08-31 19:34 ` Greg Hogan
  2022-08-31 19:34 ` [bug#57510] [PATCH 3/3] gnu: orange: Fix QT_PLUGIN_PATH Greg Hogan
  2022-09-06 14:56 ` bug#57510: [PATCH 0/3] Update git Ludovic Courtès
  3 siblings, 0 replies; 5+ messages in thread
From: Greg Hogan @ 2022-08-31 19:34 UTC (permalink / raw)
  To: 57510; +Cc: Greg Hogan

* gnu/packages/version-control.scm (src): Update to 1.29.
[inputs]: Add cssc.
---
 gnu/packages/version-control.scm | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index e0398cc9a4..b40b97efc0 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -2846,14 +2846,14 @@ (define-public gource
 (define-public src
   (package
     (name "src")
-    (version "1.18")
+    (version "1.29")
     (source (origin
               (method url-fetch)
               (uri (string-append
                     "http://www.catb.org/~esr/src/src-" version ".tar.gz"))
               (sha256
                (base32
-                "0n0skhvya8w2az45h2gsafxy8m2mvqas64nrgxifcmrzfv0rf26c"))))
+                "0ha287gc95vz6bdvn42pi3qibc56h1w5dshsvjvdn2zd283amksd"))))
     (build-system gnu-build-system)
     (arguments
      '(#:make-flags
@@ -2879,7 +2879,8 @@ (define-public src
      ;; For testing.
      (list git perl))
     (inputs
-     `(("python" ,python-wrapper)
+     `(("cssc" ,cssc)
+       ("python" ,python-wrapper)
        ("rcs" ,rcs)))
     (synopsis "Simple revision control")
     (home-page "http://www.catb.org/~esr/src/")
-- 
2.37.2





^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [bug#57510] [PATCH 3/3] gnu: orange: Fix QT_PLUGIN_PATH.
  2022-08-31 19:33 [bug#57510] [PATCH 0/3] Update git Greg Hogan
  2022-08-31 19:34 ` [bug#57510] [PATCH 1/3] gnu: git: Update to 2.37.3 Greg Hogan
  2022-08-31 19:34 ` [bug#57510] [PATCH 2/3] gnu: src: Update to 1.29 Greg Hogan
@ 2022-08-31 19:34 ` Greg Hogan
  2022-09-06 14:56 ` bug#57510: [PATCH 0/3] Update git Ludovic Courtès
  3 siblings, 0 replies; 5+ messages in thread
From: Greg Hogan @ 2022-08-31 19:34 UTC (permalink / raw)
  To: 57510; +Cc: Greg Hogan

* gnu/packages/orange.scm (orange)[arguments]: Fix QT_PLUGIN_PATH.
---
 gnu/packages/orange.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/packages/orange.scm b/gnu/packages/orange.scm
index 367c9cc288..0b8a642014 100644
--- a/gnu/packages/orange.scm
+++ b/gnu/packages/orange.scm
@@ -137,7 +137,7 @@ (define-public orange
              (let ((out (assoc-ref outputs "out")))
                (wrap-program (string-append out "/bin/orange-canvas")
                  `("QT_PLUGIN_PATH" prefix
-                   ,(list (string-append (assoc-ref inputs "qtsvg-5")
+                   ,(list (string-append (assoc-ref inputs "qtsvg")
                                          "/lib/qt5/plugins/"))))))))))
     (native-inputs
      (list python-cython))
-- 
2.37.2





^ permalink raw reply related	[flat|nested] 5+ messages in thread

* bug#57510: [PATCH 0/3] Update git.
  2022-08-31 19:33 [bug#57510] [PATCH 0/3] Update git Greg Hogan
                   ` (2 preceding siblings ...)
  2022-08-31 19:34 ` [bug#57510] [PATCH 3/3] gnu: orange: Fix QT_PLUGIN_PATH Greg Hogan
@ 2022-09-06 14:56 ` Ludovic Courtès
  3 siblings, 0 replies; 5+ messages in thread
From: Ludovic Courtès @ 2022-09-06 14:56 UTC (permalink / raw)
  To: Greg Hogan; +Cc: 57510-done

Hi,

Greg Hogan <code@greghogan.com> skribis:

>   gnu: git: Update to 2.37.3.
>   gnu: src: Update to 1.29.
>   gnu: orange: Fix QT_PLUGIN_PATH.

Applied, thanks!

Ludo’.




^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2022-09-06 14:59 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-31 19:33 [bug#57510] [PATCH 0/3] Update git Greg Hogan
2022-08-31 19:34 ` [bug#57510] [PATCH 1/3] gnu: git: Update to 2.37.3 Greg Hogan
2022-08-31 19:34 ` [bug#57510] [PATCH 2/3] gnu: src: Update to 1.29 Greg Hogan
2022-08-31 19:34 ` [bug#57510] [PATCH 3/3] gnu: orange: Fix QT_PLUGIN_PATH Greg Hogan
2022-09-06 14:56 ` bug#57510: [PATCH 0/3] Update git Ludovic Courtès

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).