gnu: qt-creator: Update to 12.0.1.
* gnu/packages/qt.scm (qt-creator): Update to 12.0.1. [source]: Adjust snippet for the upstream removal of bundled libraries under the unittest directory. [arguments]: Also wrap kcachegrind tool in wrap-bin phase. [inputs]: Add kcachegrind. Change-Id: I63616d532be2f1a603fcee0841f493d83a138302master
parent
7d4a4ded8d
commit
d97a6c9ba7
|
@ -19,7 +19,7 @@
|
||||||
;;; Copyright © 2020 TomZ <tomz@freedommail.ch>
|
;;; Copyright © 2020 TomZ <tomz@freedommail.ch>
|
||||||
;;; Copyright © 2020 Jonathan Brielmaier <jonathan.brielmaier@web.de>
|
;;; Copyright © 2020 Jonathan Brielmaier <jonathan.brielmaier@web.de>
|
||||||
;;; Copyright © 2020 Michael Rohleder <mike@rohleder.de>
|
;;; Copyright © 2020 Michael Rohleder <mike@rohleder.de>
|
||||||
;;; Copyright © 2020, 2021, 2022, 2023 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
;;; Copyright © 2020, 2021, 2022, 2023, 2024 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
||||||
;;; Copyright © 2021, 2022 Brendan Tildesley <mail@brendan.scot>
|
;;; Copyright © 2021, 2022 Brendan Tildesley <mail@brendan.scot>
|
||||||
;;; Copyright © 2021, 2022, 2023 Guillaume Le Vaillant <glv@posteo.net>
|
;;; Copyright © 2021, 2022, 2023 Guillaume Le Vaillant <glv@posteo.net>
|
||||||
;;; Copyright © 2021 Nicolò Balzarotti <nicolo@nixo.xyz>
|
;;; Copyright © 2021 Nicolò Balzarotti <nicolo@nixo.xyz>
|
||||||
|
@ -113,6 +113,7 @@
|
||||||
#:use-module (gnu packages python-build)
|
#:use-module (gnu packages python-build)
|
||||||
#:use-module (gnu packages python-xyz)
|
#:use-module (gnu packages python-xyz)
|
||||||
#:use-module (gnu packages python-web)
|
#:use-module (gnu packages python-web)
|
||||||
|
#:use-module (gnu packages kde)
|
||||||
#:use-module (gnu packages regex)
|
#:use-module (gnu packages regex)
|
||||||
#:use-module (gnu packages ruby)
|
#:use-module (gnu packages ruby)
|
||||||
#:use-module (gnu packages sdl)
|
#:use-module (gnu packages sdl)
|
||||||
|
@ -5042,7 +5043,7 @@ including @i{fix-its} for automatic refactoring.")
|
||||||
(define-public qt-creator
|
(define-public qt-creator
|
||||||
(package
|
(package
|
||||||
(name "qt-creator")
|
(name "qt-creator")
|
||||||
(version "11.0.1")
|
(version "12.0.1")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
(uri (string-append
|
||||||
|
@ -5056,7 +5057,6 @@ including @i{fix-its} for automatic refactoring.")
|
||||||
;; Remove bundled libraries, where supported.
|
;; Remove bundled libraries, where supported.
|
||||||
;; TODO: package and unbundle litehtml
|
;; TODO: package and unbundle litehtml
|
||||||
'("src/libs/3rdparty/yaml-cpp"
|
'("src/libs/3rdparty/yaml-cpp"
|
||||||
"tests/unit/unittest/3rdparty"
|
|
||||||
;; Marketplace recommends nonfree extensions;
|
;; Marketplace recommends nonfree extensions;
|
||||||
;; remove it.
|
;; remove it.
|
||||||
"src/plugins/marketplace"))
|
"src/plugins/marketplace"))
|
||||||
|
@ -5066,7 +5066,7 @@ including @i{fix-its} for automatic refactoring.")
|
||||||
((".*marketplace/marketplace.qbs.*") ""))))
|
((".*marketplace/marketplace.qbs.*") ""))))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0j90dv9micqsvj4r7iqd11szixr0mlpna4w5s2lnyqckjs6a0mm6"))))
|
"04h35za3gliai5djxwmzqrbih2g26lcv68pp4wvljkdwkcjsscvb"))))
|
||||||
(build-system qt-build-system)
|
(build-system qt-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list
|
(list
|
||||||
|
@ -5135,6 +5135,7 @@ including @i{fix-its} for automatic refactoring.")
|
||||||
'("bin/clang-tidy"
|
'("bin/clang-tidy"
|
||||||
"bin/clazy-standalone"
|
"bin/clazy-standalone"
|
||||||
"bin/gdb"
|
"bin/gdb"
|
||||||
|
"bin/kcachegrind"
|
||||||
"bin/valgrind")))))))))
|
"bin/valgrind")))))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list googletest
|
(list googletest
|
||||||
|
@ -5151,6 +5152,7 @@ including @i{fix-its} for automatic refactoring.")
|
||||||
clazy
|
clazy
|
||||||
elfutils
|
elfutils
|
||||||
gdb
|
gdb
|
||||||
|
kcachegrind
|
||||||
libxkbcommon
|
libxkbcommon
|
||||||
llvm
|
llvm
|
||||||
qt5compat
|
qt5compat
|
||||||
|
|
Reference in New Issue