GNU bug report logs - #72108
[PATCH 0/2] Update LibrePCB

Previous Next

Package: guix-patches;

Reported by: Vinicius Monego <monego <at> posteo.net>

Date: Sun, 14 Jul 2024 13:35:02 UTC

Severity: normal

Tags: patch

Done: Vinicius Monego <monego <at> posteo.net>

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 72108 in the body.
You can then email your comments to 72108 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#72108; Package guix-patches. (Sun, 14 Jul 2024 13:35:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Vinicius Monego <monego <at> posteo.net>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Sun, 14 Jul 2024 13:35:02 GMT) Full text and rfc822 format available.

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

From: Vinicius Monego <monego <at> posteo.net>
To: guix-patches <at> gnu.org
Cc: Vinicius Monego <monego <at> posteo.net>
Subject: [PATCH 0/2] Update LibrePCB
Date: Sun, 14 Jul 2024 13:33:10 +0000
Vinicius Monego (2):
  gnu: Add fontobene-qt.
  gnu: librepcb: Update to 1.1.0.

 gnu/packages/engineering.scm | 11 ++++++-----
 gnu/packages/fontutils.scm   | 21 ++++++++++++---------
 2 files changed, 18 insertions(+), 14 deletions(-)


base-commit: bcd627f58e74ce44cc96a9aac37c6d9e9e3c0dcc
-- 
2.39.2





Information forwarded to guix-patches <at> gnu.org:
bug#72108; Package guix-patches. (Sun, 14 Jul 2024 13:37:02 GMT) Full text and rfc822 format available.

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

From: Vinicius Monego <monego <at> posteo.net>
To: 72108 <at> debbugs.gnu.org
Cc: Vinicius Monego <monego <at> posteo.net>
Subject: [PATCH 1/2] gnu: Add fontobene-qt.
Date: Sun, 14 Jul 2024 13:35:44 +0000
* gnu/packages/fontutils.scm (fontobene-qt): New variable.
(fontobene-qt5): Deprecate package in favor of fontobene-qt.

Change-Id: I2177ff292a1b71d212fb0b03d772808d7525b039
---
 gnu/packages/fontutils.scm | 21 ++++++++++++---------
 1 file changed, 12 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/fontutils.scm b/gnu/packages/fontutils.scm
index f82b7d1bf9..a09c1dbaf9 100644
--- a/gnu/packages/fontutils.scm
+++ b/gnu/packages/fontutils.scm
@@ -999,20 +999,20 @@ (define-public python-ufonormalizer
 @end itemize")
     (license license:bsd-3)))
 
-(define-public fontobene-qt5
+(define-public fontobene-qt
   (package
-    (name "fontobene-qt5")
-    (version "0.2.0")
+    (name "fontobene-qt")
+    (version "1.0.0")
     (source (origin
               (method git-fetch)
               (uri (git-reference
-                    (url "https://github.com/fontobene/fontobene-qt5")
+                    (url "https://github.com/fontobene/fontobene-qt")
                     (commit version)))
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "0gy3sfraf23k7dm4ha8nqpd6madzk0zmxkcb204micyn5b5l8ljg"))))
-    (inputs (list qtbase-5))
+                "098ys33l563hjyzm6azzw8kmlybja374vacakczwhh2k3ifn37r9"))))
+    (inputs (list qtbase))
     (build-system cmake-build-system)
     (arguments
      `(#:phases
@@ -1020,14 +1020,17 @@ (define-public fontobene-qt5
          (replace 'check
            (lambda* (#:key tests? #:allow-other-keys)
              (when tests?
-               (invoke "./tests/fontobene-qt5-tests")))))))
+               (invoke "./tests/fontobene-qt-tests")))))))
     (home-page "https://github.com/fontobene/fontobene-qt5")
     (synopsis "Parser for FontoBene stroke fonts")
-    (description "FontoBene-Qt5 is a header-only library to parse FontoBene
-stroke fonts with C++11/Qt5.")
+    (description "FontoBene-Qt is a header-only library to parse FontoBene
+stroke fonts with C++11/Qt.")
     ;; Dual-licensed, either license applies.
     (license (list license:asl2.0 license:expat))))
 
+(define-public fontobene-qt5
+  (deprecated-package "fontobene-qt5" fontobene-qt))
+
 (define-public ttfautohint
   (package
     (name "ttfautohint")
-- 
2.39.2





Information forwarded to guix-patches <at> gnu.org:
bug#72108; Package guix-patches. (Sun, 14 Jul 2024 13:37:02 GMT) Full text and rfc822 format available.

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

From: Vinicius Monego <monego <at> posteo.net>
To: 72108 <at> debbugs.gnu.org
Cc: Vinicius Monego <monego <at> posteo.net>
Subject: [PATCH 2/2] gnu: librepcb: Update to 1.1.0.
Date: Sun, 14 Jul 2024 13:35:45 +0000
* gnu/packages/engineering.scm (librepcb): Update to 1.1.0.
[source, arguments]: Rename "fontobene-qt5" to "fontobene-qt".
<#:phases>: Skip a failing test in the check phase.
[inputs]: Replace fontobene-qt5 by fontobene-qt.

Change-Id: I5baa341f52a265ab487248a61d7ef8890af09b07
---
 gnu/packages/engineering.scm | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm
index cc9020c6fd..f90ec64d27 100644
--- a/gnu/packages/engineering.scm
+++ b/gnu/packages/engineering.scm
@@ -2309,7 +2309,7 @@ (define-public freehdl
 (define-public librepcb
   (package
     (name "librepcb")
-    (version "1.0.0")
+    (version "1.1.0")
     (source
      (origin
        (method url-fetch)
@@ -2320,7 +2320,7 @@ (define-public librepcb
         ;; Delete libraries that we already have or don't need.
         ;; TODO: try to unbundle more (see lib/).
         `(begin
-           (let ((third-parties '("fontobene-qt5"
+           (let ((third-parties '("fontobene-qt"
                                   "googletest"
                                   "hoedown"
                                   "muparser"
@@ -2331,12 +2331,12 @@ (define-public librepcb
                       (delete-file-recursively third-party))
                     third-parties)))))
        (sha256
-        (base32 "02qfwyhdq1pklb5gkwn3rbsdhwvcgiksd21swaphz3kw6s4p9i8v"))))
+        (base32 "10wfjmzaghg5k3fvpxa610rxjnfcj9si8pkbw8iaz6gq7iqwsb8h"))))
     (build-system cmake-build-system)
     (inputs
      (list clipper
            fontconfig
-           fontobene-qt5
+           fontobene-qt
            glu
            hoedown
            muparser
@@ -2354,7 +2354,7 @@ (define-public librepcb
            unzip))
     (arguments
      `(#:configure-flags (list
-                          "-DUNBUNDLE_FONTOBENE_QT5=ON"
+                          "-DUNBUNDLE_FONTOBENE_QT=ON"
                           "-DUNBUNDLE_GTEST=ON"
                           "-DUNBUNDLE_HOEDOWN=ON"
                           "-DUNBUNDLE_MUPARSER=ON"
@@ -2367,6 +2367,7 @@ (define-public librepcb
                         (let ((test-include (list "*"))
                               (test-exclude
                                (list
+                                "ApplicationTest.testGetCacheDir"
                                 ;; These tests all fail when run by the build
                                 ;; process even though they pass when manually
                                 ;; run as a normal user.
-- 
2.39.2





Information forwarded to guix-patches <at> gnu.org:
bug#72108; Package guix-patches. (Wed, 20 Nov 2024 22:45:02 GMT) Full text and rfc822 format available.

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

From: Ludovic Courtès <ludo <at> gnu.org>
To: Vinicius Monego <monego <at> posteo.net>
Cc: 72108 <at> debbugs.gnu.org
Subject: Re: [bug#72108] [PATCH 0/2] Update LibrePCB
Date: Wed, 20 Nov 2024 23:44:22 +0100
Vinicius Monego <monego <at> posteo.net> skribis:

> Vinicius Monego (2):
>   gnu: Add fontobene-qt.
>   gnu: librepcb: Update to 1.1.0.

LGTM.




Reply sent to Vinicius Monego <monego <at> posteo.net>:
You have taken responsibility. (Sun, 22 Dec 2024 17:34:01 GMT) Full text and rfc822 format available.

Notification sent to Vinicius Monego <monego <at> posteo.net>:
bug acknowledged by developer. (Sun, 22 Dec 2024 17:34:02 GMT) Full text and rfc822 format available.

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

From: Vinicius Monego <monego <at> posteo.net>
To: Ludovic Courtès <ludo <at> gnu.org>
Cc: 72108-done <at> debbugs.gnu.org
Subject: Re: [bug#72108] [PATCH 0/2] Update LibrePCB
Date: Sun, 22 Dec 2024 17:32:56 +0000
Em 20/11/2024 19:44, Ludovic Courtès escreveu:
> Vinicius Monego <monego <at> posteo.net> skribis:
>
>> Vinicius Monego (2):
>>    gnu: Add fontobene-qt.
>>    gnu: librepcb: Update to 1.1.0.
> LGTM.

Pushed with an update to 1.2.0, thanks.





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

This bug report was last modified 152 days ago.

Previous Next


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