summaryrefslogtreecommitdiff
path: root/gnu/packages/qt.scm
Commit message (Collapse)AuthorAgeFilesLines
* gnu: qtwebengine: Fix build.Maxim Cournoyer2022-11-061-2/+2
| | | | | | | | The package was not really building; the build phase was failing silently and no libraries were installed to the output. * gnu/packages/qt.scm (qtwebengine) [native-inputs]: Replace node by node-lts, instead of simply appending it.
* gnu: Shorten package synopsis.Vagrant Cascadian2022-11-011-1/+1
| | | | | | | | | | | | | * gnu/packages/crates-io.scm (rust-inflections-1): Shorten synopsis. (rust-clap-conf-0.1): Likewise. * gnu/packages/gtk.scm (volctl): Likewise. * gnu/packages/haskell-xyz.scm (ghc-unliftio): Likewise. * gnu/packages/kde-pim.scm (korganizer): Likewise. * gnu/packages/kde.scm (kuserfeedback): Likewise. * gnu/packages/pascal.scm (p2c): Likewise. * gnu/packages/python-xyz.scm (python-ttystatus): Likewise. * gnu/packages/qt.scm (qtwebplugin): Likewise.
* Merge remote-tracking branch 'origin/master' into stagingEfraim Flashner2022-10-121-2/+52
|\ | | | | | | | | | | | | | | | | | | Conflicts: gnu/packages/gnuzilla.scm gnu/packages/graphics.scm gnu/packages/gstreamer.scm gnu/packages/gtk.scm gnu/packages/kde-frameworks.scm gnu/packages/video.scm
| * gnu: Add qtwayland, version 6.3.1.Hilton Chain2022-09-291-0/+50
| | | | | | | | | | | | * gnu/packages/qt.scm (qtwayland): New variable. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
| * gnu: qtwayland: Rename to qtwayland-5.Hilton Chain2022-09-291-2/+2
| | | | | | | | | | | | | | | | | | Automated via: git grep -l qtwayland | xargs sed 's/\qtwayland\b/\0-5/g' -i git checkout NEWS Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
* | Merge branch 'master' into stagingMarius Bakke2022-09-291-0/+19
|\|
| * gnu: Add python-qt.py.Guillaume Le Vaillant2022-09-281-0/+19
| | | | | | | | * gnu/packages/qt.scm (python-qt.py): New variable.
* | Merge branch 'master' into stagingMaxim Cournoyer2022-09-151-1/+7
|\| | | | | | | | | | | | | With resolved conflicts in: gnu/local.mk gnu/packages/freedesktop.scm gnu/packages/gnuzilla.scm
| * gnu: Add comments to the bottom of a few more package modules.Christopher Baines2022-09-141-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This will hopefully discourage patches which add new packages to the bottom of files, as this increases the likelihood of conflicts when applying patches. If there are more specific ways that packages should be arranged in specific modules, this message can be updated accordingly. * gnu/packages/crates-graphics.scm: Add comment discouraging adding packages to the bottom of the file. * gnu/packages/crates-gtk.scm: ditto. * gnu/packages/games.scm: ditto. * gnu/packages/music.scm: ditto. * gnu/packages/qt.scm: ditto. * gnu/packages/web.scm: ditto.
| * gnu: qtshadertools: Fix 'license' field.Ludovic Courtès2022-09-131-1/+1
| | | | | | | | | | | | | | | | Fixes <https://issues.guix.gnu.org/57581>. Reported by Julien Lepiller <julien@lepiller.eu>. Fix provided by Florian Pelz <pelzflorian@pelzflorian.de>. * gnu/packages/qt.scm (qtshadertools)[license]: Fix value.
* | Merge branch 'master' into stagingMarius Bakke2022-09-081-99/+205
|\|
| * gnu: python-pyside-2-tools: Fix synopsis and description.Zhu Zihao2022-09-071-2/+2
| | | | | | | | | | | | | | | | * gnu/packages/qt.scm (python-pyside2-tools)[synopsis]: Use more descriptive words. [description]: Ditto. Signed-off-by: Marius Bakke <marius@gnu.org>
| * gnu: python-pyside-2-tools: Use G-expressions.Zhu Zihao2022-09-071-10/+12
| | | | | | | | | | | | | | | | | | * gnu/packages/qt.scm (python-pyside2-tools)[native-inputs]: Use label-less style. [arguments]: Use G-expressions. <#:configure-flags>: Use SEARCH-INPUT-FILE. Signed-off-by: Marius Bakke <marius@gnu.org>
| * gnu: Add python-pyside-6.Zhu Zihao2022-09-071-0/+72
| | | | | | | | | | | | * gnu/packages/qt.scm (python-pyside-6): New variable. Signed-off-by: Marius Bakke <marius@gnu.org>
| * gnu: python-pyside-2: Use "this-package-input" instead of "assoc-ref".Zhu Zihao2022-09-071-23/+25
| | | | | | | | | | | | | | | | * gnu/packages/qt.scm (python-pyside-2)[arguments]<#:configure-flags>: Use SEARCH-INPUT-FILE. <#:phases>: In phase "fix-qt-module-detection", use "this-package-input". Signed-off-by: Marius Bakke <marius@gnu.org>
| * gnu: python-pyside-2: Clarify the package inputs.Zhu Zihao2022-09-071-11/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The module "PySide.PyQtUiTools" depends on "qttools-5", it should be an input, not a native input. libxml2, libxslt, clang-toolchain is only used by python-shiboken-2. cmake-minimal is not used. * gnu/packages/qt.scm (python-pyside-2): [inputs]: Remove libxml2, libxslt, clang-toolchain. Add qttools-5. [native-inputs]: Remove cmake-minimal, qttools-5. [arguments]<#:phases>: Remove phase "set-clang-dir". Signed-off-by: Marius Bakke <marius@gnu.org>
| * gnu: python-pyside-2: Use G-expressions.Zhu Zihao2022-09-071-59/+57
| | | | | | | | | | | | | | | | * gnu/packages/qt.scm (python-pyside-2)[native-inputs]: Use label-less input style. [arguments]: Use G-expressions. Signed-off-by: Marius Bakke <marius@gnu.org>
| * gnu: Add python-shiboken-6Zhu Zihao2022-09-071-0/+34
| | | | | | | | | | | | * gnu/packages/qt.scm (python-shiboken-6): New variable. Signed-off-by: Marius Bakke <marius@gnu.org>
| * gnu: python-shiboken-2: Use G-expressions.Zhu Zihao2022-09-071-24/+29
| | | | | | | | | | | | | | | | * gnu/packages/qt.scm (python-shiboken-2)[arguments]: Use G-expressions. <#:phases>: In phase "set-build-env", Replace (assoc-ref inputs ...) with (this-package-input ...). Signed-off-by: Marius Bakke <marius@gnu.org>
* | gnu: qtdeclarative-5: Fix linking on riscv64-linux.Efraim Flashner2022-09-021-1/+11
| | | | | | | | | | * gnu/packages/qt.scm (qtdeclarative-5)[arguments]: Add phase when building for riscv64-linux to adjust the linker flags.
* | Merge branch 'master' into stagingMarius Bakke2022-09-011-1/+62
|\|
| * gnu: Add kdsoap.Brendan Tildesley2022-09-011-0/+31
| | | | | | | | | | | | * gnu/packages/qt.scm (kdsoap): New variable. Signed-off-by: Marius Bakke <marius@gnu.org>
| * gnu: libdbusmenu-qt: Move to (gnu packages qt).Brendan Tildesley2022-09-011-1/+31
| | | | | | | | | | | | | | * gnu/packages/lxqt.scm: Remove libdbusmenu-qt. * gnu/packages/qt.scm: Re-add libdbusmenu-qt. Signed-off-by: Marius Bakke <marius@gnu.org>
* | Merge branch 'master' into stagingMarius Bakke2022-08-281-1/+1
|\|
| * gnu: qtwebengine: Fix QTWEBENGINEPROCESS_PATH specification.Zhu Zihao2022-08-271-1/+1
| | | | | | | | | | | | | | * gnu/packages/qt.scm (qtwebengine)[native-search-paths]: Use "lib/qt6/libexec/QtWebEngineProcess" for search path. Signed-off-by: Marius Bakke <marius@gnu.org>
* | Merge branch 'master' into stagingMarius Bakke2022-08-271-49/+50
|\|
| * gnu: python-qtpy: Update to 2.2.0.Zhu Zihao2022-08-271-2/+2
| | | | | | | | | | | | * gnu/packages/qt.scm (python-qtpy): Update to 2.2.0. Signed-off-by: Marius Bakke <marius@gnu.org>
| * gnu: Rename procedure "qt5-urls" to "qt-urls" in (gnu packages qt).Zhu Zihao2022-08-251-44/+44
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This procedure now used by Qt5 and Qt6. "qt-urls" is more neutral than original one. * gnu/packages/qt.scm (qt5-urls): Rename to "qt-urls". (qtbase-5)[source]: Use "qt-urls" for uri field. (qtbase)[source]: Ditto. (qt5compat)[source]: Ditto. (qtsvg-5)[source]: Ditto. (qtsvg)[source]: Ditto. (qtimageformats)[source]: Ditto. (qtx11extras)[source]: Ditto. (qtxmlpatterns)[source]: Ditto. (qtdeclarative-5)[source]: Ditto. (qtdeclarative)[source]: Ditto. (qtconnectivity)[source]: Ditto. (qtwebsockets-5)[source]: Ditto. (qtwebsockets)[source]: Ditto. (qtsensors)[source]: Ditto. (qtmultimedia-5)[source]: Ditto. (qtshadertools)[source]: Ditto. (qtmultimedia)[source]: Ditto. (qtwayland)[source]: Ditto. (qtserialport)[source]: Ditto. (qtserialbus)[source]: Ditto. (qtwebchannel-5)[source]: Ditto. (qtwebchannel)[source]: Ditto. (qtwebglplugin)[source]: Ditto. (qtwebview)[source]: Ditto. (qtlottie)[source]: Ditto. (qttools-5)[source]: Ditto. (qttools)[source]: Ditto. (qtscript)[source]: Ditto. (qtquickcontrols-5)[source]: Ditto. (qtquickcontrols2-5)[source]: Ditto. (qtgraphicaleffects)[source]: Ditto. (qtgamepad)[source]: Ditto. (qtscxml)[source]: Ditto. (qtpositioning)[source]: Ditto. (qtpurchasing)[source]: Ditto. (qtcharts)[source]: Ditto. (qtdatavis3d)[source]: Ditto. (qtnetworkauth-5)[source]: Ditto. (qtnetworkauth)[source]: Ditto. (qtremoteobjects)[source]: Ditto. (qtspeech)[source]: Ditto. (qtwebengine-5)[source]: Ditto. (qtwebengine)[source]: Ditto. Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
| * gnu: dotherside: Update to 0.9.0.Zhu Zihao2022-08-221-2/+3
| | | | | | | | | | | | * gnu/packages/qt.scm (dotherside): Update to 0.9.0. Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
* | gnu: qtscxml: Fix build failure.Marius Bakke2022-08-121-1/+1
| | | | | | | | | | | | | | | | This fixes a faulty conflict resolution from the merge in commit b50eaa67642ebc25e9c896f2e700c08610e0a5da. * gnu/packages/qt.scm (qtscxml)[arguments]: Substitute arguments from QTSVG-5, not QTSVG.
* | Merge branch 'master' into stagingMarius Bakke2022-08-111-177/+1104
|\|
| * gnu: qtwayland: Remove input labels.Marius Bakke2022-08-111-12/+12
| | | | | | | | * gnu/packages/qt.scm (qtwayland)[inputs]: Remove labels.
| * gnu: qtwayland: Fix build with GCC 11.Marius Bakke2022-08-111-0/+1
| | | | | | | | | | | | * gnu/packages/patches/qtwayland-gcc-11.patch: New file. * gnu/local.mk (dist_patch_DATA): Adjust accordingly. * gnu/packages/qt.scm (qtwayland)[source](patches): New field.
| * gnu: python-pyside-2: Fix build.Guillaume Le Vaillant2022-08-031-8/+8
| | | | | | | | | | * gnu/packages/qt.scm (python-pyside-2)[arguments]: Use the correct names for Qt inputs in the 'fix-qt-module-detection' phase.
| * gnu: qt5ct: Fix build.Morgan Smith2022-08-031-27/+12
| | | | | | | | | | | | | | | | * gnu/packages/qt.scm (qt5ct)[build-system]: Change to qt-build-system. [arguments]: Adjust accordingly. [inputs]: Remove qtbase-5. Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
| * gnu: Add qtlottie.Maxim Cournoyer2022-08-011-0/+32
| | | | | | | | * gnu/packages/qt.scm (qtlottie): New variable.
| * gnu: Add qtpositioning.Maxim Cournoyer2022-07-311-0/+30
| | | | | | | | * gnu/packages/qt.scm (qtpositioning): New variable.
| * gnu: Add qtnetworkauth, version 6.3.1.Maxim Cournoyer2022-07-311-0/+20
| | | | | | | | * gnu/packages/qt.scm (qtnetworkauth): New variable.
| * gnu: qtnetworkauth: Rename to qtnetworkauth-5.Maxim Cournoyer2022-07-311-1/+1
| | | | | | | | | | | | Automated with: git grep -l qtnetworkauth | xargs sed 's/\bqtnetworkauth\b/\0-5/g' -i
| * gnu: Add qttools, version 6.3.1.Maxim Cournoyer2022-07-311-0/+27
| | | | | | | | * gnu/packages/qt.scm (qttools): New variable.
| * gnu: qttools: Rename to qttools-5.Maxim Cournoyer2022-07-311-13/+13
| | | | | | | | | | | | | | Automated with: git grep -l qttools | xargs sed 's/\bqttools\b/\0-5/g' -i git checkout NEWS
| * gnu: Add qt5compat.Maxim Cournoyer2022-07-311-0/+29
| | | | | | | | * gnu/packages/qt.scm (qt5compat): New variable.
| * gnu: Add qtwebengine, version 6.3.1.Maxim Cournoyer2022-07-311-0/+345
| | | | | | | | * gnu/packages/qt.scm (qtwebengine): New variable.
| * gnu: qtwebengine: Rename to qtwebengine-5.Maxim Cournoyer2022-07-311-7/+7
| | | | | | | | | | | | | | Automated with: git grep -l qtwebengine | xargs sed 's/\bqtwebengine\b/\0-5/g' -i git checkout NEWS
| * gnu: Add qtwebchannel, version 6.3.1.Maxim Cournoyer2022-07-311-0/+37
| | | | | | | | * gnu/packages/qt.scm (qtwebchannel): New variable.
| * gnu: qtwebchannel: Rename to qtwebchannel-5.Maxim Cournoyer2022-07-311-7/+7
| | | | | | | | | | | | | | Automated via: git grep -l qtwebchannel | xargs sed 's/\bqtwebchannel\b/\0-5/g' -i git checkout NEWS
| * gnu: Add qtwebsockets, version 6.3.1.Maxim Cournoyer2022-07-311-0/+39
| | | | | | | | * gnu/packages/qt.scm (qtwebsockets): New variable.
| * gnu: qtwebsockets: Rename to qtwebsockets-5.Maxim Cournoyer2022-07-311-6/+6
| | | | | | | | | | | | | | Automated via: git grep -l qtwebsockets | xargs sed 's/\bqtwebsockets\b/\0-5/g' -i git checkout NEWS
| * gnu: qtquickcontrols2: Define as obsoleted by qtdeclarative.Maxim Cournoyer2022-07-311-0/+6
| | | | | | | | * gnu/packages/qt.scm (qtquickcontrols2): New variable.
| * gnu: qtquickcontrols2: Rename to qtquickcontrols2-5.Maxim Cournoyer2022-07-311-3/+3
| | | | | | | | | | | | | | Automated via: git grep -l qtquickcontrols2 | xargs sed 's/\bqtquickcontrols2\b/\0-5/g' -i git checkout NEWS