GNU bug report logs - #33562
[PATCH] gnu: Add librepcb.

Previous Next

Package: guix-patches;

Reported by: Arun Isaac <arunisaac <at> systemreboot.net>

Date: Sat, 1 Dec 2018 13:32:02 UTC

Severity: normal

Tags: patch

Done: Arun Isaac <arunisaac <at> systemreboot.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 33562 in the body.
You can then email your comments to 33562 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#33562; Package guix-patches. (Sat, 01 Dec 2018 13:32:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Arun Isaac <arunisaac <at> systemreboot.net>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Sat, 01 Dec 2018 13:32:02 GMT) Full text and rfc822 format available.

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

From: Arun Isaac <arunisaac <at> systemreboot.net>
To: guix-patches <at> gnu.org
Cc: Arun Isaac <arunisaac <at> systemreboot.net>
Subject: [PATCH] gnu: Add librepcb.
Date: Sat,  1 Dec 2018 19:00:32 +0530
* gnu/packages/engineering.scm (librepcb): New variable.
---
 gnu/packages/engineering.scm | 52 ++++++++++++++++++++++++++++++++++++
 1 file changed, 52 insertions(+)

diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm
index 008035649..4b9c76fd5 100644
--- a/gnu/packages/engineering.scm
+++ b/gnu/packages/engineering.scm
@@ -9,6 +9,7 @@
 ;;; Copyright © 2018 Tobias Geerinckx-Rice <me <at> tobias.gr>
 ;;; Copyright © 2018 Clément Lassieur <clement <at> lassieur.org>
 ;;; Copyright © 2018 Jonathan Brielmaier <jonathan.brielmaier <at> web.de>
+;;; Copyright © 2018 Arun Isaac <arunisaac <at> systemreboot.net>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -1846,3 +1847,54 @@ The S letter indicates SPICE.  The purpose of the Qucs-S subproject is to use
 free SPICE circuit simulation kernels with the Qucs GUI.  It provides the
 simulator backends @code{Qucsator}, @code{ngspice} and @code{Xyce}.")
     (license license:gpl2+)))
+
+(define-public librepcb
+  (package
+    (name "librepcb")
+    (version "0.1.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://download.librepcb.org/releases/0.1.0/librepcb-"
+                           version "-source.zip"))
+       (sha256
+        (base32
+         "0affvwwgs1j2wx6bb3zfa2jbfxpckklr8cka2nkswca0p82wd3dv"))))
+    (build-system gnu-build-system)
+    (inputs
+     `(("qtbase" ,qtbase)
+       ("zlib" ,zlib)))
+    (native-inputs
+     `(("qttools" ,qttools) ; for lrelease
+       ("unzip" ,unzip)))
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         (replace 'configure
+           (lambda* (#:key inputs outputs #:allow-other-keys)
+             (mkdir-p "build")
+             (chdir "build")
+             (let ((lrelease (string-append (assoc-ref inputs "qttools")
+                                            "/bin/lrelease"))
+                   (out (assoc-ref outputs "out")))
+               (invoke "qmake"
+                       (string-append "QMAKE_LRELEASE=" lrelease)
+                       (string-append "PREFIX=" out)
+                       "../librepcb.pro")))))))
+    (home-page "https://librepcb.org/")
+    (synopsis "Electronic Design Automation tool")
+    (description "LibrePCB is Electronic Design Automation (EDA) software to
+develop printed circuit boards.  It features human readable file formats and
+complete project management with library, schematic and board editors.")
+    (license (list license:gpl3+
+                   license:boost1.0 ; libs/clipper,
+                                    ; libs/optional/tests/catch.hpp,
+                                    ; libs/sexpresso/tests/catch.hpp
+                   license:expat ; libs/delaunay-triangulation,
+                                 ; libs/parseagle, libs/type_safe
+                   license:asl2.0 ; libs/fontobene, libs/googletest,
+                                  ; libs/parseagle
+                   license:isc ; libs/hoedown
+                   license:cc0 ; libs/optional, libs/sexpresso
+                   license:bsd-2 ; libs/optional/tests/catch.hpp
+                   license:lgpl2.1+)))) ; libs/quazip
-- 
2.19.1





Information forwarded to guix-patches <at> gnu.org:
bug#33562; Package guix-patches. (Wed, 12 Dec 2018 02:16:01 GMT) Full text and rfc822 format available.

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

From: Leo Famulari <leo <at> famulari.name>
To: Arun Isaac <arunisaac <at> systemreboot.net>
Cc: 33562 <at> debbugs.gnu.org
Subject: Re: [bug#33562] [PATCH] gnu: Add librepcb.
Date: Tue, 11 Dec 2018 21:15:35 -0500
[Message part 1 (text/plain, inline)]
On Sat, Dec 01, 2018 at 07:00:32PM +0530, Arun Isaac wrote:
> * gnu/packages/engineering.scm (librepcb): New variable.

Cool, thanks!

> +    (description "LibrePCB is Electronic Design Automation (EDA) software to

How about some texinfo markup?

@dfn{Electronic Design Automation} (EDA)
[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#33562; Package guix-patches. (Wed, 12 Dec 2018 19:41:02 GMT) Full text and rfc822 format available.

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

From: Arun Isaac <arunisaac <at> systemreboot.net>
To: Leo Famulari <leo <at> famulari.name>
Cc: 33562 <at> debbugs.gnu.org
Subject: Re: [bug#33562] [PATCH] gnu: Add librepcb.
Date: Thu, 13 Dec 2018 01:10:31 +0530
>> +    (description "LibrePCB is Electronic Design Automation (EDA) software to
>
> How about some texinfo markup?
>
> @dfn{Electronic Design Automation} (EDA)

Thanks for the review! Will that be the only change? Can I push to
master with that change?




Information forwarded to guix-patches <at> gnu.org:
bug#33562; Package guix-patches. (Wed, 12 Dec 2018 23:17:02 GMT) Full text and rfc822 format available.

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

From: Leo Famulari <leo <at> famulari.name>
To: Arun Isaac <arunisaac <at> systemreboot.net>
Cc: 33562 <at> debbugs.gnu.org
Subject: Re: [bug#33562] [PATCH] gnu: Add librepcb.
Date: Wed, 12 Dec 2018 18:15:09 -0500
On Thu, Dec 13, 2018 at 01:10:31AM +0530, Arun Isaac wrote:
> Thanks for the review! Will that be the only change? Can I push to
> master with that change?

That's the only thing I noticed. Please push according to your judgement
:)




Reply sent to Arun Isaac <arunisaac <at> systemreboot.net>:
You have taken responsibility. (Thu, 13 Dec 2018 13:03:02 GMT) Full text and rfc822 format available.

Notification sent to Arun Isaac <arunisaac <at> systemreboot.net>:
bug acknowledged by developer. (Thu, 13 Dec 2018 13:03:02 GMT) Full text and rfc822 format available.

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

From: Arun Isaac <arunisaac <at> systemreboot.net>
To: Leo Famulari <leo <at> famulari.name>
Cc: 33562-done <at> debbugs.gnu.org
Subject: Re: [bug#33562] [PATCH] gnu: Add librepcb.
Date: Thu, 13 Dec 2018 18:32:33 +0530
Pushed to master, thanks!




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

This bug report was last modified 5 years and 78 days ago.

Previous Next


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