GNU bug report logs - #70306
[PATCH] gnu: soqt: Update to 1.6.2.

Previous Next

Package: guix-patches;

Reported by: Jean-Pierre De Jesus DIAZ <jean <at> foundation.xyz>

Date: Tue, 9 Apr 2024 10:30:03 UTC

Severity: normal

Tags: 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 70306 in the body.
You can then email your comments to 70306 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 maxim.cournoyer <at> gmail.com, iyzsong <at> envs.net, guix-patches <at> gnu.org:
bug#70306; Package guix-patches. (Tue, 09 Apr 2024 10:30:03 GMT) Full text and rfc822 format available.

Acknowledgement sent to Jean-Pierre De Jesus DIAZ <jean <at> foundation.xyz>:
New bug report received and forwarded. Copy sent to maxim.cournoyer <at> gmail.com, iyzsong <at> envs.net, guix-patches <at> gnu.org. (Tue, 09 Apr 2024 10:30:03 GMT) Full text and rfc822 format available.

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

From: Jean-Pierre De Jesus DIAZ <jean <at> foundation.xyz>
To: guix-patches <at> gnu.org
Cc: Jean-Pierre De Jesus DIAZ <jean <at> foundation.xyz>
Subject: [PATCH] gnu: soqt: Update to 1.6.2.
Date: Tue,  9 Apr 2024 12:28:40 +0200
* gnu/packages/qt.scm (soqt): Update to 1.6.2.

Change-Id: Ie4c9f0c4cff7584801952cc561f4d6fa3515d0ec
---
 gnu/packages/qt.scm | 48 ++++++++++++++++++++++-----------------------
 1 file changed, 23 insertions(+), 25 deletions(-)

diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm
index dcc9bfeb62..100d6cac97 100644
--- a/gnu/packages/qt.scm
+++ b/gnu/packages/qt.scm
@@ -5095,33 +5095,31 @@ (define-public qthttpserver
     (license license:gpl3+)))
 
 (define-public soqt
-  (let ((commit-ref "fb8f655632bb9c9c60e0ff9fa69a5ba22d3ff99d")
-        (revision "1"))
-    (package
-    (name "soqt")
-    (version (git-version "1.6.0" revision commit-ref))
-    (source
-      (origin
-        (method git-fetch)
-        (uri (git-reference
-               (url "https://github.com/coin3d/soqt")
-               (commit commit-ref)
-               (recursive? #t)))
-        (file-name (git-file-name name version))
-        (sha256
-          (base32 "16vikb3fy8rmk10sg5g0gy2c343hi3x7zccsga90ssnkzpq6m032"))))
-    (build-system cmake-build-system)
-    (arguments '(#:tests? #f)) ; There are no tests
-    (native-inputs
-      (list pkg-config cmake))
-    (inputs
-      (list qtbase-5 coin3D))
-    (home-page "https://github.com/coin3d/soqt")
-    (synopsis "Qt GUI component toolkit library for Coin")
-    (description "SoQt is a Qt GUI component toolkit library for Coin.  It is
+  (package
+  (name "soqt")
+  (version "1.6.2")
+  (source
+   (origin
+     (method git-fetch)
+     (uri (git-reference
+            (url "https://github.com/coin3d/soqt")
+            (commit (string-append "v" version))
+            (recursive? #t)))
+     (file-name (git-file-name name version))
+     (sha256
+      (base32 "0rsfc4wmghl9fr4bwh9rpzjwzsmx00k4ki5gyvy85nb4kbmr9dwv"))))
+  (build-system cmake-build-system)
+  (arguments '(#:tests? #f)) ; There are no tests
+  (native-inputs
+   (list pkg-config cmake))
+  (inputs
+   (list qtbase-5 coin3d))
+  (home-page "https://github.com/coin3d/soqt")
+  (synopsis "Qt GUI component toolkit library for Coin")
+  (description "SoQt is a Qt GUI component toolkit library for Coin.  It is
 also compatible with SGI and TGS Open Inventor, and the API is based on the API
 of the InventorXt GUI component toolkit.")
-    (license license:bsd-3))))
+  (license license:bsd-3)))
 
 (define-public libdbusmenu-qt
   (package

base-commit: cd45294d576975a3bff2f755764a3f46f09ea6f9
-- 
2.41.0





Information forwarded to maxim.cournoyer <at> gmail.com, iyzsong <at> envs.net, guix-patches <at> gnu.org:
bug#70306; Package guix-patches. (Thu, 11 Apr 2024 11:02:04 GMT) Full text and rfc822 format available.

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

From: Jean-Pierre De Jesus DIAZ <jean <at> foundation.xyz>
To: 70306 <at> debbugs.gnu.org
Cc: Jean-Pierre De Jesus DIAZ <jean <at> foundation.xyz>
Subject: [PATCH v2] gnu: soqt: Update to 1.6.2.
Date: Thu, 11 Apr 2024 13:00:45 +0200
* gnu/packages/qt.scm (soqt): Update to 1.6.2.

Change-Id: Ie4c9f0c4cff7584801952cc561f4d6fa3515d0ec
---
 gnu/packages/qt.scm | 48 ++++++++++++++++++++++-----------------------
 1 file changed, 23 insertions(+), 25 deletions(-)

diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm
index 13af841455..9a42ff36ee 100644
--- a/gnu/packages/qt.scm
+++ b/gnu/packages/qt.scm
@@ -5096,33 +5096,31 @@ (define-public qthttpserver
     (license license:gpl3+)))
 
 (define-public soqt
-  (let ((commit-ref "fb8f655632bb9c9c60e0ff9fa69a5ba22d3ff99d")
-        (revision "1"))
-    (package
-    (name "soqt")
-    (version (git-version "1.6.0" revision commit-ref))
-    (source
-      (origin
-        (method git-fetch)
-        (uri (git-reference
-               (url "https://github.com/coin3d/soqt")
-               (commit commit-ref)
-               (recursive? #t)))
-        (file-name (git-file-name name version))
-        (sha256
-          (base32 "16vikb3fy8rmk10sg5g0gy2c343hi3x7zccsga90ssnkzpq6m032"))))
-    (build-system cmake-build-system)
-    (arguments '(#:tests? #f)) ; There are no tests
-    (native-inputs
-      (list pkg-config cmake))
-    (inputs
-      (list qtbase-5 coin3D))
-    (home-page "https://github.com/coin3d/soqt")
-    (synopsis "Qt GUI component toolkit library for Coin")
-    (description "SoQt is a Qt GUI component toolkit library for Coin.  It is
+  (package
+  (name "soqt")
+  (version "1.6.2")
+  (source
+   (origin
+     (method git-fetch)
+     (uri (git-reference
+            (url "https://github.com/coin3d/soqt")
+            (commit (string-append "v" version))
+            (recursive? #t)))
+     (file-name (git-file-name name version))
+     (sha256
+      (base32 "0rsfc4wmghl9fr4bwh9rpzjwzsmx00k4ki5gyvy85nb4kbmr9dwv"))))
+  (build-system cmake-build-system)
+  (arguments '(#:tests? #f)) ; There are no tests
+  (native-inputs
+   (list pkg-config cmake))
+  (inputs
+   (list qtbase-5 coin3D))
+  (home-page "https://github.com/coin3d/soqt")
+  (synopsis "Qt GUI component toolkit library for Coin")
+  (description "SoQt is a Qt GUI component toolkit library for Coin.  It is
 also compatible with SGI and TGS Open Inventor, and the API is based on the API
 of the InventorXt GUI component toolkit.")
-    (license license:bsd-3))))
+  (license license:bsd-3)))
 
 (define-public libdbusmenu-qt
   (package

base-commit: 4e7337536ba41e888a601c92fada8a4adca9d2c6
-- 
2.41.0





Reply sent to Maxim Cournoyer <maxim.cournoyer <at> gmail.com>:
You have taken responsibility. (Sun, 28 Apr 2024 14:43:01 GMT) Full text and rfc822 format available.

Notification sent to Jean-Pierre De Jesus DIAZ <jean <at> foundation.xyz>:
bug acknowledged by developer. (Sun, 28 Apr 2024 14:43:02 GMT) Full text and rfc822 format available.

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

From: Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
To: Jean-Pierre De Jesus DIAZ <jean <at> foundation.xyz>
Cc: 宋文武 <iyzsong <at> envs.net>, 70306-done <at> debbugs.gnu.org
Subject: Re: [bug#70306] [PATCH v2] gnu: soqt: Update to 1.6.2.
Date: Sun, 28 Apr 2024 10:41:42 -0400
Hi,

Jean-Pierre De Jesus DIAZ <jean <at> foundation.xyz> writes:

> * gnu/packages/qt.scm (soqt): Update to 1.6.2.

Applied!

-- 
Thanks,
Maxim




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

This bug report was last modified 5 days ago.

Previous Next


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