all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Maxim Cournoyer <maxim.cournoyer@gmail.com>
To: 47684@debbugs.gnu.org
Cc: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Subject: [bug#47684] [PATCH 0/2] Add Qt 6 (qtbase)
Date: Fri,  9 Apr 2021 22:02:26 -0400	[thread overview]
Message-ID: <20210410020226.16215-1-maxim.cournoyer@gmail.com> (raw)

Hello!

These two commits are to introduce qtbase at version 6, the next major Qt
version.  The patches and phases of the current qtbase could mostly be reused,
but needed some adjustment as the build system has migrated to CMake using its
ninja backend.  I could have reused most of the configure script flags, but
some flags were gone, and some didn't seem to work anymore, so I translated
the configure script arguments into CMake configure flags.  I also tried my
best to enable the test suite, but even disabling all the GUI tests that fail
because of not having a real X serer, there was still about 20% of the tests
failing and it was using more than one hour to complete on a fast machine, so
I ended up disabling it for now.

Thank you!

Maxim Cournoyer (2):
  gnu: Rename qtbase to qtbase-5.
  gnu: Add qtbase (version 6).

 gnu/packages/admin.scm            |   2 +-
 gnu/packages/aidc.scm             |   2 +-
 gnu/packages/animation.scm        |   4 +-
 gnu/packages/astronomy.scm        |   4 +-
 gnu/packages/audio.scm            |  20 +--
 gnu/packages/bioinformatics.scm   |   2 +-
 gnu/packages/bittorrent.scm       |   2 +-
 gnu/packages/calendar.scm         |   2 +-
 gnu/packages/chemistry.scm        |   6 +-
 gnu/packages/compression.scm      |   2 +-
 gnu/packages/connman.scm          |   2 +-
 gnu/packages/cvassistant.scm      |   2 +-
 gnu/packages/display-managers.scm |   2 +-
 gnu/packages/djvu.scm             |   2 +-
 gnu/packages/documentation.scm    |   2 +-
 gnu/packages/ebook.scm            |   2 +-
 gnu/packages/education.scm        |   8 +-
 gnu/packages/electronics.scm      |   2 +-
 gnu/packages/emulators.scm        |  10 +-
 gnu/packages/engineering.scm      |  16 +-
 gnu/packages/fcitx.scm            |   2 +-
 gnu/packages/fcitx5.scm           |   6 +-
 gnu/packages/finance.scm          |  12 +-
 gnu/packages/flashing-tools.scm   |   4 +-
 gnu/packages/fpga.scm             |   2 +-
 gnu/packages/game-development.scm |   6 +-
 gnu/packages/games.scm            |  96 +++++------
 gnu/packages/geo.scm              |   6 +-
 gnu/packages/gnupg.scm            |   4 +-
 gnu/packages/gpodder.scm          |   2 +-
 gnu/packages/gps.scm              |   6 +-
 gnu/packages/graphics.scm         |   4 +-
 gnu/packages/gstreamer.scm        |   2 +-
 gnu/packages/image-processing.scm |   6 +-
 gnu/packages/image-viewers.scm    |   6 +-
 gnu/packages/image.scm            |   2 +-
 gnu/packages/irc.scm              |   2 +-
 gnu/packages/jami.scm             |   2 +-
 gnu/packages/kde-frameworks.scm   | 172 ++++++++++----------
 gnu/packages/kde-internet.scm     |  16 +-
 gnu/packages/kde-multimedia.scm   |  26 +--
 gnu/packages/kde-pim.scm          |  80 +++++-----
 gnu/packages/kde-plasma.scm       |  12 +-
 gnu/packages/kde-systemtools.scm  |  14 +-
 gnu/packages/kde-utils.scm        |  22 +--
 gnu/packages/kde.scm              |  48 +++---
 gnu/packages/language.scm         |   4 +-
 gnu/packages/lego.scm             |   2 +-
 gnu/packages/linphone.scm         |   2 +-
 gnu/packages/logo.scm             |   2 +-
 gnu/packages/lxqt.scm             |  56 +++----
 gnu/packages/maths.scm            |  10 +-
 gnu/packages/messaging.scm        |  14 +-
 gnu/packages/mpd.scm              |   2 +-
 gnu/packages/music.scm            |  40 ++---
 gnu/packages/networking.scm       |   4 +-
 gnu/packages/ocr.scm              |   2 +-
 gnu/packages/password-utils.scm   |   4 +-
 gnu/packages/pdf.scm              |  10 +-
 gnu/packages/photo.scm            |   2 +-
 gnu/packages/polkit.scm           |   2 +-
 gnu/packages/printers.scm         |   4 +-
 gnu/packages/profiling.scm        |   2 +-
 gnu/packages/pumpio.scm           |   2 +-
 gnu/packages/python-xyz.scm       |   2 +-
 gnu/packages/qt.scm               | 257 +++++++++++++++++++++++-------
 gnu/packages/radio.scm            |  16 +-
 gnu/packages/robotics.scm         |   4 +-
 gnu/packages/scribus.scm          |   2 +-
 gnu/packages/sync.scm             |   6 +-
 gnu/packages/syndication.scm      |   2 +-
 gnu/packages/synergy.scm          |   2 +-
 gnu/packages/telegram.scm         |   2 +-
 gnu/packages/telephony.scm        |   4 +-
 gnu/packages/terminals.scm        |   2 +-
 gnu/packages/tex.scm              |   4 +-
 gnu/packages/text-editors.scm     |   4 +-
 gnu/packages/video.scm            |  20 +--
 gnu/packages/web-browsers.scm     |   2 +-
 gnu/packages/web.scm              |  10 +-
 gnu/packages/xdisorg.scm          |   2 +-
 gnu/packages/xorg.scm             |   2 +-
 82 files changed, 655 insertions(+), 506 deletions(-)

-- 
2.31.1





             reply	other threads:[~2021-04-10  2:03 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-04-10  2:02 Maxim Cournoyer [this message]
2021-04-10  2:06 ` [bug#47684] [PATCH 1/2] gnu: Rename qtbase to qtbase-5 Maxim Cournoyer
2021-04-10  2:06   ` [bug#47684] [PATCH 2/2] gnu: Add qtbase (version 6) Maxim Cournoyer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210410020226.16215-1-maxim.cournoyer@gmail.com \
    --to=maxim.cournoyer@gmail.com \
    --cc=47684@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.