Commit graph

162 commits

Author SHA1 Message Date
tnn
6ad01f9761 qt*: rename PLIST.unix to PLIST.notdarwin, to reflect what it's used for.
The previous name was confusing. Darwin *is* UNIX(R) according to TOG.
2020-03-18 21:55:23 +00:00
tnn
4084cc7258 qt5-qtbase: allow building without dbus 2020-03-18 21:48:03 +00:00
nia
097f96a0ce qt5: gnu++11... -multimedia needs alloca 2020-03-14 11:41:00 +00:00
wiz
4e3b1b97c2 librsvg: update bl3.mk to remove libcroco in rust case
recursive bump for the dependency change
2020-03-10 22:08:37 +00:00
wiz
f669fda471 *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
nia
f9f46f2cb9 qt5-qtbase: these options are only for the -base package 2020-03-05 11:58:07 +00:00
nia
79de05b6e5 qt5-qtbase: remove unused bits from options.mk 2020-03-05 11:56:19 +00:00
adam
8f253f5878 qt5: updated to 5.14.1
Compared to Qt 5.14.0, the new Qt 5.14.1 contains around 220 bug fixes including security issue fixes for both Qt (CVE-2020-0570) and 3rd party components (CVE-2019-19244, CVE-2019-19603, CVE-2019-19242, CVE-2019-19645, CVE-2019-19646 & CVE-2019-19880). Also in QtWebEngine there are many CVE fixes from Chromium. For details of the most important changes, please check the Change files of Qt 5.14.1.
2020-01-27 18:36:30 +00:00
ryoon
a549d7e0e7 qt5-qtbase: Use PLIST.Darwin instead of nonunix PLIST option
Pointed by adam@. Thank you.
2020-01-22 14:06:08 +00:00
ryoon
01dedfb42e qt5-qtbase: Add nonunix PLIST option for inverted unix option 2020-01-22 13:27:03 +00:00
adam
2448e377a9 qt5: updated to 5.14.0
New Features in Qt 5.14

Qt 3D Module
Overhauled the threading architecture. This includes the removal of the aspect thread.
Overhauled the frontend/backend node sync.
Enabled QTransform to have access to the world matrix.
Introduced Scene3DView.
Scene3D is now in sync with QtQuick, and can render as an underlay without an FBO.

Qt Bluetooth Module
Introduced a new, optional Win32 backend with support for Windows 7 and 8. This backend is not built by default, nor is it part of the pre-built packages.
QLowEnergyController: Introduced AuthorizationError.
Added the ability to include multiple manufacturer data entries per manufacturer ID.

Qt Core Module
Added support in QCalendar for calendars other than Gregorian, by implementation of suitable backends.
Added backends to implement the Gregorian, Jalali (Persian), Islamic Civil, Milankovic, and Julian calendars. We look forward to other contributions.
Added QColorConstants, a namespace providing constexpr QColor instances that don't cost any runtime overhead.

Qt GUI Module
Updated High-DPI support:
Introduced non-integer scale factors (for example, a scale factor of 150%) that applications can opt-in to use. Use QGuiApplication::highDpiScaleFactorRoundingPolicy or QT_SCALE_FACTOR_ROUNDING_POLICY to set the rounding policy.
Added the QT_ENABLE_HIGHDPI_SCALING environment variable, enabling high-DPI scaling based on display DPI. This replaces QT_AUTO_SCREEN_SCALE_FACTOR (now deprecated), and corresponds to the Qt::AA_EnableHighDpiScaling application attribute.
Added cross-platform support for the QT_FONT_DPI environment variable, for the purpose of developing and testing with specific DPI values.
Added color-space support for images; reading and writing color-spaces from JPEG, PNG, WebP and TIFF images, and performing color-space transformation on images.
Improvements to QTextDocument and QTextTable styling:
Added per-edge border styling via QTextTableCellFormat.
Added border-collapse mode.
Added support for (partial) HTML table style import and export.
Added support for reading and writing Markdown format to QTextDocument, as an alternative to HTML.

Qt Multimedia Module
Added QVideoFrame::Format_YUV422P.
Introduced support for the GStreamer OpenGL plugin.

Qt Network Module
Introduced the HTTP/2 Configuration API.
Introduced network connectivity monitoring.
Added support for Kerberos proxy authentication.

Qt QML Module
Added qmlRegisterSingletonInstance() function. This allows to expose a QObject as a singleton to QML, without having to create a factory function as required by qmlRegisterSingletonType(). It is meant as a type safe replacement of setContextProperty() in common usages.
Added qmlRegisterAnonymousType() as a replacement for qmlRegisterType(). It allows to specify the URI and major version, which enables better tooling support.
Added an experimental -U option to qmllint. When set, access to unqualified identifiers generates warnings.

Qt Quick Module
Added a preview of the graphics API independent scenegraph renderer as an opt-in feature. This allows running qualifying Qt Quick applications on top of Vulkan, Metal, or Direct3D 11, instead of OpenGL. Currently supported platforms:
Windows 10 (Direct3D)
Linux with X11/xcb (Vulkan)
macOS (Metal or Vulkan with MoltenVK)
Android 7.0+ (Vulkan)
Added support for the Markdown format (including CommonMark and GitHub dialects) to Text and TextEdit as an alternative to HTML. This includes the GitHub checklist extension, allowing to toggle checkboxes in a TextEdit.
Switched TextEdit to use an I-beam cursor by default, and a pointing-hand cursor when hovering over a checkbox or a link. Default cursors can be overridden.
Added WheelHandler, an event handler for the mouse wheel, and optionally for emulated mouse wheel events coming from a trackpad.
Added BoundaryRule in Qt.labs.animation: a PropertyValueInterceptor that restricts the range of values a numeric property can have, applies "resistance" when overshooting a value, and provides the ability to animate it back to its normal range. It's particularly useful in combination with WheelHandler, providing physics similar to Flickable.
Added currentFrame and frameCount properties to Image and BorderImage, just as AnimatedImage has; for example, this allows choosing an individual icon from an .ICO file that contains multiple icons.
Added PathPolyline and PathMultiline as additional ways of drawing and/or filling arbitrary polygons and sets of polygons with Qt Quick Shapes.

Qt Serial Bus Module
Added operators to compare QCanBusDevice::Filter for equality or inequality.
Added the QCanBusDevice::OperationError and QCanBusDevice::TimeoutError codes to signal operation and timeout errors.
Added the QCanBusDevice::busStatus() function to query the bus status from the CAN bus device.
Added the QCanBusDevice::resetController() function to release the CAN controller from bus off state.
SocketCAN: Added the configuration parameter QCanBusDevice::ProtocolKey to use another protocol inside the protocol family PF_CAN.
SocketCAN: If libsocketcan is available, the CAN bus bitrate can be retrieved and set at runtime.
PeakCAN: Added support for PCAN-USB devices on macOS by using the MacCAN library.
Exposed the underlying QIODevice used for Modbus communication. This enables, for example, setting the serial port hardware flow control (RTS/CTS).

Qt Test Module
Introduced initMain() function to perform any initialization that must happen before QApplication exists.

Qt WebEngine Module
Updated to Chromium 77.
Added a new API to control the life-cycle of QWebEnginePage.

Qt Widgets Module
Added support for the Markdown format (including CommonMark and GitHub dialects) to QTextEdit and QTextBrowser as an alternative to HTML. This includes the GitHub checklist extension, allowing to toggle checkboxes if the widget is editable. QTextBrowser::setSource() detects Markdown based on the file extension.
2020-01-21 20:25:36 +00:00
jperkin
26c1bffc9f *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
dbj
9670281840 x11/qt5-qtbase: fix darwin compile when headers not in /usr/include 2019-12-24 06:21:20 +00:00
dbj
8dd80295bf x11/qt5-qtbase: fix compile macosx < 10.13
define kIOSurfaceSuccess if it's not already defined
2019-12-24 06:20:41 +00:00
adam
35629dc1f9 qt5: updated to 5.13.2
Qt 5.13.2 Released

We have released Qt 5.13.2 today. As a patch release, Qt 5.13.2 does not add any new functionality but provides many bug fixes and other improvements.

Compared to Qt 5.13.1, the new Qt 5.13.2 contains more than 200 bug fixes. For details of the most important changes, please check the Change files of Qt 5.13.2.
2019-11-05 14:58:43 +00:00
rillig
121d00ed27 x11: align variable assignments
pkglint -Wall -F --only aligned --only indent -r

No manual corrections.
2019-11-03 09:14:06 +00:00
nia
ad28b726ed Add x11/qt5-qtwayland.
Qt5 module for Wayland support

Note: while it does seem silly to have this in the X11 category, it's for
consistency with other core qt5 packages.
2019-10-28 21:35:43 +00:00
nros
f2be6b53f3 Turn of vulkan for qt5.
Turn of vulkan for qt5 since we currently do not have vulkan support
in pkgsrc and it might cause build problems as seen in PR pkg/54024.
2019-10-07 11:52:36 +00:00
nia
3646601936 qt5-qtbase: Fix package creation with gtk3 2019-09-18 19:53:11 +00:00
adam
f01446aec6 qt5: updated to 5.13.1
As a patch release, Qt 5.13.1 does not add any new functionality but provides many bug fixes and other improvements
2019-09-16 19:24:52 +00:00
markd
039969fa9c qt5-qtbase: note Makefile.common used by qt5-qtspeech 2019-08-30 06:33:38 +00:00
wiz
84e123ddd2 Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
ryoon
8208e65235 Fix a checksum 2019-08-10 11:16:24 +00:00
adam
3e7252b3d2 qt5: updated to 5.13.0
New in Qt 5.13 and Tools Update

Get ready for a round of great new features and development tools! Highlights include

* Improvements to Qt Quick, Qt Quick Controls 2, Qt 3D, Qt WebEngine, and more
* Full support for Qt for WebAssembly and Qt KNX
* Sketch support for Qt Design Studio and other upgrades to our UI design tools
2019-08-09 17:41:38 +00:00
nia
e723d9855a qt5-qtbase: Fix package creation with gtk3 option. 2019-07-24 19:44:55 +00:00
wiz
1ac2210b6f *: recursive bump for gdk-pixbuf2-2.38.1 2019-07-21 22:23:57 +00:00
wiz
c30c5fbc0b *: recursive bump for nettle 3.5.1 2019-07-20 22:45:58 +00:00
adam
84895305f3 qt5: updated to 5.12.4
Qt 5.12.4 release provides a number of bug fixes, as well as performance and other improvements. As an important new item it provides binaries build with OpenSSL 1.1.1, including the new TLS 1.3 functionality.
2019-07-01 05:49:43 +00:00
maya
316640de32 qt5-qtbase: avoid using semaphores as mutexes on netbsd.
they're quite constrained: the max number of semaphores is limited.

bump PKGREVISION
2019-04-28 12:46:31 +00:00
adam
e63b884ac0 qt5: updated to 5.12.3
Qt 5.12.3, the third patch release of Qt 5.12 LTS, is released today. While not adding new features, the Qt 5.12.3 release provides a number of bug fixes, as well as performance and other improvements.

Compared to Qt 5.12.2, the new Qt 5.12.3 provides almost 200 bug fixes. For details of the most important changes, please check the Change files of Qt 5.12.3.

Qt 5.12 LTS will receive many more patch releases throughout the coming years and we recommend all active developed projects to migrate to Qt 5.12 LTS. Qt 5.9 LTS is currently in ‘Strict’ phase and receives only the selected important bug and security fixes, while Qt 5.12 LTS is currently receiving all the bug fixes. Qt 5.6 Support has ended in March 2019, so all active projects still using Qt 5.6 LTS should migrate to a later version of Qt.
2019-04-25 19:43:15 +00:00
ryoon
6fc378bce9 Recursive revbump from textproc/icu 2019-04-03 00:32:25 +00:00
markd
ad7e5a07ec qt5-qtbase: fix setting QMAKE_COMPILER
QMAKE_COMPILER is meant to signify the compiler family being used
     gcc              for gcc
     gcc clang llvm   for clang
should properly fix the build issue seen on CentOS and likely other
systems.
2019-04-01 19:58:51 +00:00
markd
e9c7331ffa qt5-qtbase: add missing # to comment 2019-04-01 04:33:01 +00:00
markd
ee158c692c qt5-qtbase: workaround to get package building correctly on redhat/centos 2019-03-31 19:00:24 +00:00
markd
505173a626 qt5-qtbase: explictly disable tslib in case its found in base system
remove tslib related entries from PLIST.Linux
2019-03-27 10:16:34 +00:00
adam
1db0f1c0ea qt5: updated to 5.12.2
5.12.2:
While not adding new features, the Qt 5.12.2 release provides a number of bug
fixes and other improvements.

Compared to Qt 5.12.1, the new Qt 5.12.2 contains more than 250 bug fixes. For
details of the most important changes, please check the Change files of Qt
5.12.2.

With Qt 5.12.2 we bring back widely asked MinGW 32 bit prebuild binaries in
addition to 64 bit ones.

Qt 5.12 LTS will receive many more patch releases throughout the coming years
and we recommend all active developed projects to migrate to Qt 5.12 LTS. Qt
5.9 LTS is currently in ‘Strict’ phase and receives only the selected important
bug and security fixes, while Qt 5.12 LTS is currently receiving all the bug
fixes. With Qt 5.6 Support ending in March 2019 all active projects still using
Qt 5.6 LTS should now migrate to a later version of Qt.
2019-03-26 11:14:16 +00:00
tnn
1acfe03f13 append to PKG_SUPPORTED_OPTIONS since this file is used by multiple pkgs 2019-01-26 22:58:04 +00:00
adam
06d691ed93 qt5: updated to 5.12.0
Just in time for the end of the year, we have released Qt 5.12 LTS today. This is a long-term-supported (LTS) release that we will support for 3 years to come. We have had a strong focus on quality and fixed more than 2000 bugs since the last Qt LTS version, Qt 5.9.7 – make that over 5000 bugfixes since Qt 5.6.3. Of course, this is only the start, and we will work hard on continuously improving the quality of Qt 5.12 in upcoming patches
2018-12-18 09:57:17 +00:00
adam
16dd5de231 revbump after updating textproc/icu 2018-12-09 18:51:58 +00:00
kleink
f1a683c990 Revbump after cairo 1.16.0 update. 2018-11-14 22:20:58 +00:00
markd
63e22beeea qt5-qtbase: add QMAKE_PLATFORM+=linux to the linux qmake.conf
remove patch that was working around the lack of the above.
no PKGREVISON bump as linux wasn't building without this and other
platforms haven't changed.
2018-11-13 09:24:37 +00:00
ryoon
b86dfe6873 Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
jperkin
7d05b68baa qt5-qtbase: Unset QMAKE_LFLAGS_RPATHLINK.
Fixes build of editors/texstudio on SunOS which was previously trying to
pass unsupported arguments to the linker.  We don't support -rpath-link
anyway.
2018-10-31 12:15:54 +00:00
adam
33facd693b Added x11/qt5-qtcharts, x11/qt5-qtnetworkauth 2018-10-06 22:41:22 +00:00
adam
293e512b8e qt5: updated to 5.11.2
Qt 5.11.2 Released

Qt 5.11.2 is released today. As a patch release it does not add any new functionality, but provides important bug fixes, security updates and other improvements.

Compared to Qt 5.11.1, the Qt 5.11.2 release provides fixes for more than 250 bugs and it contains around 800 changes in total. For details of the most important changes, please check the Change files of Qt 5.11.2.
2018-10-01 17:44:46 +00:00
wiz
93b46879c7 Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
minskim
c30b34d420 x11/qt5-*: Fix install_name on Darwin
This should fix PR 53460.
2018-07-26 02:16:05 +00:00
ryoon
b9c1e1d533 Recursive revbump from textproc/icu-62.1 2018-07-20 03:33:47 +00:00
adam
b7aa96810e qt5: updated to 5.11.1
Release Qt 5.11.1 does not add any new functionality, but provides important bug fixes and other improvements.
There are fixes for over 150 bugs and it contains more than 700 changes compared to Qt 5.11.0.
2018-06-22 06:29:20 +00:00
adam
bcaba131ef qt5: updated to 5.11.0
Qt 5.11 comes with quite a few new features as well as many bug fixes to existing functionality.
2018-06-19 07:21:23 +00:00