Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/x11/qtermwidget x11/qtermwidget: update to 0.15.0



details:   https://anonhg.NetBSD.org/pkgsrc/rev/1c946aa16ea2
branches:  trunk
changeset: 433295:1c946aa16ea2
user:      pin <pin%pkgsrc.org@localhost>
date:      Mon Jun 01 10:53:09 2020 +0000

description:
x11/qtermwidget: update to 0.15.0

qtermwidget-0.15.0 / 2020-04-24
===============================

  * Bumped version to 0.15.0.
  * Replaced Q_WS_MAC with Q_OS_MACOS for Qt5 compatibility.
  * KPty: Don't conditionalize chownpty existence on HAVE_OPENPTY.
  * cmake: set CMAKE_BUILD_WITH_INSTALL_NAME_DIR ON for macOS.
  * Fixed the default font on macOS.
  * pyqt: Fixes deprecation warning (CMP0002).
  * Fixed the PyQt5 binding with Qt  5.11.
  * Swap Qt's ControlModifier and MetaModifier on macOS.
  * C++11 code updates.
  * Use braced initializer list in returns.
  * Fixed the memory access violation in TerminalDisplay's method `getCharacterPosition`.
  * Completed the support for transient scrollbars.
  * Added `saveHistory` to QTermWidget.
  * Use vanilla Qt instead of patched one.
  * Don't set the selection clipboard if it's unsupported.
  * Announce truecolor support via COLORTERM.
  * Fixed numpad handling and added entries for numpad 5.
  * Allow to disable drawing line chars.
  * Use QRectF for cursor drawing and fix artifacts in hidpi.
  * Fixed compilation on NetBSD.
  * Added sendKeyEvent() API.
  * Fixed flickering on font change.
  * Select all text when opening search bar.
  * Removed some debug outputs.
  * Removed (duplicated) string casts definitions.
  * Removed obsolete qCopy.
  * Fix SearchBar light text over white background with dark themes.
  * pyqt: also check for sip 5.x path.
  * Prevented a c++11 range-loop might detach Qt container.
  * Dropped the deprecated QString method `sprintf()`.
  * Avoid buffer overflows exploits.
  * Fixed build with LLVM/clang.
  * Explicitly mark exported classes.
  * Fixed QCharRef's deprecated behavior.
  * Correctly initialize sigsets.

diffstat:

 x11/qtermwidget/Makefile      |  12 ++++++------
 x11/qtermwidget/PLIST         |   6 +++++-
 x11/qtermwidget/buildlink3.mk |   4 ++--
 x11/qtermwidget/distinfo      |  12 +++++-------
 4 files changed, 18 insertions(+), 16 deletions(-)

diffs (88 lines):

diff -r 2462aec02c9c -r 1c946aa16ea2 x11/qtermwidget/Makefile
--- a/x11/qtermwidget/Makefile  Mon Jun 01 10:48:18 2020 +0000
+++ b/x11/qtermwidget/Makefile  Mon Jun 01 10:53:09 2020 +0000
@@ -1,13 +1,13 @@
-# $NetBSD: Makefile,v 1.5 2020/04/22 08:45:02 pin Exp $
+# $NetBSD: Makefile,v 1.6 2020/06/01 10:53:09 pin Exp $
 
-DISTNAME=      qtermwidget-0.14.1
-PKGREVISION=   3
+VERSION=       0.15.0
+DISTNAME=      qtermwidget-${VERSION}
 CATEGORIES=    x11
-MASTER_SITES=  https://downloads.lxqt.org/downloads/qtermwidget/0.14.1/
+MASTER_SITES=  ${MASTER_SITE_GITHUB:=lxqt/qtermwidget/releases/download/${VERSION}/}
 EXTRACT_SUFX=  .tar.xz
 
-MAINTAINER=    pin%NetBSD.org@localhost
-HOMEPAGE=      https://lxqt.org/
+MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE=      https://github.com/lxqt/qtermwidget/
 COMMENT=       Terminal emulator widget for Qt5
 LICENSE=       gnu-lgpl-v2.1 AND modified-bsd
 
diff -r 2462aec02c9c -r 1c946aa16ea2 x11/qtermwidget/PLIST
--- a/x11/qtermwidget/PLIST     Mon Jun 01 10:48:18 2020 +0000
+++ b/x11/qtermwidget/PLIST     Mon Jun 01 10:53:09 2020 +0000
@@ -1,8 +1,9 @@
-@comment $NetBSD: PLIST,v 1.1 2020/02/20 05:47:44 gutteridge Exp $
+@comment $NetBSD: PLIST,v 1.2 2020/06/01 10:53:09 pin Exp $
 include/qtermwidget5/Emulation.h
 include/qtermwidget5/Filter.h
 include/qtermwidget5/qtermwidget.h
 include/qtermwidget5/qtermwidget_export.h
+include/qtermwidget5/qtermwidget_version.h
 lib/cmake/qtermwidget5/qtermwidget5-config-version.cmake
 lib/cmake/qtermwidget5/qtermwidget5-config.cmake
 lib/cmake/qtermwidget5/qtermwidget5-targets-release.cmake
@@ -44,6 +45,8 @@
 share/qtermwidget5/kb-layouts/macbook.keytab
 share/qtermwidget5/kb-layouts/solaris.keytab
 share/qtermwidget5/kb-layouts/vt420pc.keytab
+share/qtermwidget5/translations/qtermwidget_arn.qm
+share/qtermwidget5/translations/qtermwidget_ast.qm
 share/qtermwidget5/translations/qtermwidget_ca.qm
 share/qtermwidget5/translations/qtermwidget_cs.qm
 share/qtermwidget5/translations/qtermwidget_cy.qm
@@ -60,6 +63,7 @@
 share/qtermwidget5/translations/qtermwidget_nb_NO.qm
 share/qtermwidget5/translations/qtermwidget_pl.qm
 share/qtermwidget5/translations/qtermwidget_pt.qm
+share/qtermwidget5/translations/qtermwidget_pt_BR.qm
 share/qtermwidget5/translations/qtermwidget_tr.qm
 share/qtermwidget5/translations/qtermwidget_zh_CN.qm
 share/qtermwidget5/translations/qtermwidget_zh_TW.qm
diff -r 2462aec02c9c -r 1c946aa16ea2 x11/qtermwidget/buildlink3.mk
--- a/x11/qtermwidget/buildlink3.mk     Mon Jun 01 10:48:18 2020 +0000
+++ b/x11/qtermwidget/buildlink3.mk     Mon Jun 01 10:53:09 2020 +0000
@@ -1,11 +1,11 @@
-# $NetBSD: buildlink3.mk,v 1.1 2020/02/20 05:47:44 gutteridge Exp $
+# $NetBSD: buildlink3.mk,v 1.2 2020/06/01 10:53:09 pin Exp $
 
 BUILDLINK_TREE+=       qtermwidget
 
 .if !defined(QTERMWIDGET_BUILDLINK3_MK)
 QTERMWIDGET_BUILDLINK3_MK:=
 
-BUILDLINK_API_DEPENDS.qtermwidget+=    qtermwidget>=0.14.1
+BUILDLINK_API_DEPENDS.qtermwidget+=    qtermwidget>=0.15.0
 BUILDLINK_PKGSRCDIR.qtermwidget?=      ../../x11/qtermwidget
 
 #.include "../../x11/qt5-qtbase/buildlink3.mk"
diff -r 2462aec02c9c -r 1c946aa16ea2 x11/qtermwidget/distinfo
--- a/x11/qtermwidget/distinfo  Mon Jun 01 10:48:18 2020 +0000
+++ b/x11/qtermwidget/distinfo  Mon Jun 01 10:53:09 2020 +0000
@@ -1,8 +1,6 @@
-$NetBSD: distinfo,v 1.2 2020/04/23 04:11:19 gutteridge Exp $
+$NetBSD: distinfo,v 1.3 2020/06/01 10:53:09 pin Exp $
 
-SHA1 (qtermwidget-0.14.1.tar.xz) = 07d99b8f4a673fa1f965716f0db89a4ba9e3f9b5
-RMD160 (qtermwidget-0.14.1.tar.xz) = 73bcdbf8847c1816b42ff3da3dbb7c67c1b58a4d
-SHA512 (qtermwidget-0.14.1.tar.xz) = 6b6d4abd6fc21f10f5323321f26132c0ff5b9682d09a086e265e57976deb60fca8db9a9906a29a0ed8d0e7b83417d5852df55d0118936d5f7a1342a9c2cb6410
-Size (qtermwidget-0.14.1.tar.xz) = 178952 bytes
-SHA1 (patch-lib_kpty.cpp) = 083f01444518ef6e9596417a112bde6b2f4b5c5c
-SHA1 (patch-lib_kpty__p.h) = bd122197507218057e6bf90139a8e1f332281a98
+SHA1 (qtermwidget-0.15.0.tar.xz) = 25671ac9b32732464b2488c0a4a8640427cab080
+RMD160 (qtermwidget-0.15.0.tar.xz) = 7b87a7e6db416ff38671c1f6bc7bc022e1f01ba2
+SHA512 (qtermwidget-0.15.0.tar.xz) = 95f44c77d0b678b1a204b559a7adb2fb68b2e82b2357d89239e9fc1c6f445346d84ec7f395d58f17a2ef7b42e58c02590f637683193eae4f7efbd001b61857c7
+Size (qtermwidget-0.15.0.tar.xz) = 181284 bytes



Home | Main Index | Thread Index | Old Index