mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: qtserialport: Update to 6.6.3.
* gnu/packages/qt.scm (qtserialport): Rename to ... * gnu/packages/qt.scm (qtserialport-5): ... this. * gnu/packages/qt.scm (qtserialport): New variable. * gnu/packages/engineering.scm (fritzing, candle) [inputs]: Replace qtserialport with qtserialport-5. * gnu/packages/geo.scm (qgis): Likewise. * gnu/packages/kde-utils.scm (atelier, libatcore): Likewise. * gnu/packages/qt.scm (qtserialbus, qtlocation, python-pyqt): Likewise. * gnu/packages/radio.scm (wsjtx, jtdx, js8call) (sdrangel, wfview, qdmr): Likewise. Change-Id: I8e0c8d2408ea0bf776b2efe58e23821cb653363c Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
This commit is contained in:
parent
726e7e3996
commit
50a72a08af
6 changed files with 49 additions and 21 deletions
|
@ -1388,7 +1388,7 @@ (define-public stellarium
|
|||
qtmultimedia-5
|
||||
qtpositioning
|
||||
qtscript
|
||||
qtserialport
|
||||
qtserialport-5
|
||||
qttranslations
|
||||
qtwebengine-5
|
||||
qxlsx-qt5
|
||||
|
|
|
@ -737,9 +737,7 @@ (define-public fritzing
|
|||
(list boost
|
||||
libgit2
|
||||
qtbase-5
|
||||
;; TODO: Needs to be renamed to qtserialport-5. when version 6 is
|
||||
;; packed.
|
||||
qtserialport
|
||||
qtserialport-5
|
||||
qtsvg-5
|
||||
zlib))
|
||||
(home-page "https://fritzing.org")
|
||||
|
@ -4229,7 +4227,7 @@ (define-public candle
|
|||
"08rqhl6a5a8s67a8yl16944zgcsnnb08xfv4klzyqwlvaqgfp783"))))
|
||||
(build-system gnu-build-system)
|
||||
(native-inputs (list qttools-5))
|
||||
(inputs (list qtbase-5 qtserialport))
|
||||
(inputs (list qtbase-5 qtserialport-5))
|
||||
(arguments
|
||||
(list #:tests? #f ; no tests.
|
||||
#:phases #~(modify-phases %standard-phases
|
||||
|
|
|
@ -3009,7 +3009,7 @@ (define-public qgis
|
|||
qtkeychain
|
||||
qtlocation
|
||||
qtmultimedia-5
|
||||
qtserialport
|
||||
qtserialport-5
|
||||
qtsvg-5
|
||||
qwt
|
||||
;; saga
|
||||
|
|
|
@ -152,7 +152,7 @@ (define-public atelier
|
|||
qtcharts
|
||||
qtdeclarative-5
|
||||
qtmultimedia-5
|
||||
qtserialport))
|
||||
qtserialport-5))
|
||||
(home-page "https://atelier.kde.org")
|
||||
(synopsis "Desktop interface to control 3D printers powered by AtCore")
|
||||
(description "Atelier provides interface to control and manage your printer.
|
||||
|
@ -729,7 +729,7 @@ (define-public libatcore
|
|||
"1830r6ylpn3l7y2frl8cih5cpjgbkfrib9jq7jklf8aszhlsihf2"))))
|
||||
(build-system qt-build-system)
|
||||
(native-inputs (list extra-cmake-modules))
|
||||
(inputs (list qtcharts qtdeclarative-5 qtserialport))
|
||||
(inputs (list qtcharts qtdeclarative-5 qtserialport-5))
|
||||
(home-page "https://invent.kde.org/libraries/atcore")
|
||||
(synopsis "Library for connection and management of 3D printers")
|
||||
(description
|
||||
|
|
|
@ -2054,7 +2054,7 @@ (define-public qtwayland
|
|||
(home-page (package-home-page qtbase))
|
||||
(license (package-license qtbase))))
|
||||
|
||||
(define-public qtserialport
|
||||
(define-public qtserialport-5
|
||||
(package
|
||||
(inherit qtsvg-5)
|
||||
(name "qtserialport")
|
||||
|
@ -2085,6 +2085,38 @@ (define-public qtserialport
|
|||
(description "The Qt Serial Port module provides the library for
|
||||
interacting with serial ports from within Qt.")))
|
||||
|
||||
(define-public qtserialport
|
||||
(package
|
||||
(name "qtserialport")
|
||||
(version "6.6.3")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (qt-url name version))
|
||||
(sha256
|
||||
(base32 "0dywalgafvxi2jgdv9dk22hwwd8qsgk5xfybh75n3njmwmwnarg1"))))
|
||||
(build-system cmake-build-system)
|
||||
(arguments
|
||||
(list #:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'unpack 'patch-dlopen-paths
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(substitute* "src/serialport/qtudev_p.h"
|
||||
;; Use the absolute paths for dynamically loaded libs,
|
||||
;; otherwise the lib will be searched in LD_LIBRARY_PATH
|
||||
;; which typically is not set in guix.
|
||||
(("setFileNameAndVersion\\(QStringLiteral\\(\"udev\")")
|
||||
(format #f "setFileNameAndVersion(QStringLiteral(~s))"
|
||||
(string-append #$(this-package-input "eudev")
|
||||
"/lib/libudev")))))))))
|
||||
(native-inputs (list pkg-config))
|
||||
(inputs (list qtbase eudev))
|
||||
(home-page (package-home-page qtbase))
|
||||
(synopsis "Qt Serial Port module")
|
||||
(description "The Qt Serial Port module provides the library for
|
||||
interacting with serial ports from within Qt.")
|
||||
(license (package-license qtbase))))
|
||||
|
||||
(define-public qtserialbus
|
||||
(package
|
||||
(inherit qtsvg-5)
|
||||
|
@ -2107,7 +2139,7 @@ (define-public qtserialbus
|
|||
(format #f "QStringLiteral(~s)"
|
||||
(search-input-file inputs
|
||||
"lib/libsocketcan.so"))))))))))
|
||||
(inputs (list libsocketcan qtbase-5 qtserialport))
|
||||
(inputs (list libsocketcan qtbase-5 qtserialport-5))
|
||||
(synopsis "Qt Serial Bus module")
|
||||
(description "The Qt Serial Bus API provides classes and functions to
|
||||
access the various industrial serial buses and protocols, such as CAN, ModBus,
|
||||
|
@ -2258,7 +2290,7 @@ (define-public qtlocation
|
|||
(add-before 'check 'pre-check
|
||||
(lambda _
|
||||
(setenv "HOME" "/tmp")))))))
|
||||
(native-inputs (list perl qtdeclarative-5 qtquickcontrols-5 qtserialport))
|
||||
(native-inputs (list perl qtdeclarative-5 qtquickcontrols-5 qtserialport-5))
|
||||
(inputs (list icu4c openssl qtbase-5 zlib))
|
||||
(synopsis "Qt Location and Positioning modules")
|
||||
(description "The Qt Location module provides an interface for location,
|
||||
|
@ -3918,8 +3950,8 @@ (define-public python-pyqt
|
|||
("qtdeclarative-5" ,qtdeclarative-5)
|
||||
("qtlocation" ,qtlocation)
|
||||
("qtmultimedia-5" ,qtmultimedia-5)
|
||||
("qtsensors-5" ,qtsensors-5)
|
||||
("qtserialport" ,qtserialport)
|
||||
("qtsensors" ,qtsensors-5)
|
||||
("qtserialport" ,qtserialport-5)
|
||||
("qtsvg-5" ,qtsvg-5)
|
||||
("qttools-5" ,qttools-5)
|
||||
("qtwebchannel-5" ,qtwebchannel-5)
|
||||
|
|
|
@ -1683,7 +1683,7 @@ (define-public wsjtx
|
|||
libusb
|
||||
qtbase-5
|
||||
qtmultimedia-5
|
||||
qtserialport
|
||||
qtserialport-5
|
||||
wsjtx-hamlib))
|
||||
(home-page "https://www.physics.princeton.edu/pulsar/k1jt/wsjtx.html")
|
||||
(synopsis "Weak-signal ham radio communication program")
|
||||
|
@ -1721,7 +1721,7 @@ (define-public jtdx
|
|||
qtbase-5
|
||||
qtwebsockets-5
|
||||
qtmultimedia-5
|
||||
qtserialport))
|
||||
qtserialport-5))
|
||||
(arguments
|
||||
`(#:tests? #f)) ; No test suite
|
||||
(synopsis "Weak-signal ham radio communication program, forked from WSJTX")
|
||||
|
@ -1798,7 +1798,7 @@ (define-public js8call
|
|||
libusb
|
||||
qtbase-5
|
||||
qtmultimedia-5
|
||||
qtserialport
|
||||
qtserialport-5
|
||||
wsjtx-hamlib))
|
||||
(home-page "http://js8call.com/")
|
||||
(synopsis "Weak-signal ham radio communication program")
|
||||
|
@ -2670,7 +2670,7 @@ (define-public sdrangel
|
|||
qtlocation
|
||||
qtmultimedia-5
|
||||
qtquickcontrols2-5
|
||||
qtserialport
|
||||
qtserialport-5
|
||||
qtspeech-5
|
||||
qtwebchannel-5
|
||||
qtwebengine-5
|
||||
|
@ -2850,9 +2850,7 @@ (define-public wfview
|
|||
qtgamepad
|
||||
qtbase-5
|
||||
qtmultimedia-5
|
||||
;; TODO: Needs to be renamed to qtserialport-5. when version 6 is
|
||||
;; packed.
|
||||
qtserialport
|
||||
qtserialport-5
|
||||
rtaudio))
|
||||
(home-page "https://wfview.org/")
|
||||
(synopsis "Software to control Icom radios")
|
||||
|
@ -3221,7 +3219,7 @@ (define-public qdmr
|
|||
(substitute* "lib/CMakeLists.txt"
|
||||
(("(DESTINATION \")/etc/udev/" _ directive)
|
||||
(string-append directive #$output "/lib/udev/"))))))))
|
||||
(inputs (list libusb qtbase-5 qtlocation qtserialport yaml-cpp))
|
||||
(inputs (list libusb qtbase-5 qtlocation qtserialport-5 yaml-cpp))
|
||||
(native-inputs (list qttools-5))
|
||||
(home-page "https://dm3mat.darc.de/qdmr/")
|
||||
(synopsis "GUI application and command line tool to program DMR radios")
|
||||
|
|
Loading…
Reference in a new issue