summaryrefslogtreecommitdiff
path: root/x11/libfm-qt
diff options
context:
space:
mode:
authorpin <pin@pkgsrc.org>2020-06-01 10:38:55 +0000
committerpin <pin@pkgsrc.org>2020-06-01 10:38:55 +0000
commit22a97db77787637068d92165a4d123baf9aa85ee (patch)
treee1aa166b15e73e269b2b4b2e1d84d5e83bed11b6 /x11/libfm-qt
parent04409b6f7c3466db5984d94529568e3d99d5b99a (diff)
downloadpkgsrc-22a97db77787637068d92165a4d123baf9aa85ee.tar.gz
x11/libfm-qt: update to 0.15.1
libfm-qt-0.15.1 / 2020-05-16 ============================ * Bumped API version to 0.15.1. * Changed "logout" to "session" in password dialog (because a keyring session may not be the same as a desktop session). libfm-qt-0.15.0 / 2020-04-21 ============================ * Bumped API version to 0.15.0. * Bumped ABI version to 7.0.0. * Respect original order on launching multiple files. * Prevented a rare random crash in file dialog. * Activate a selected item with Enter/Return. * Never hide name column of detailed list view. * Fixed SMB recursive copy. * Workarounds for lack of file monitoring. * Removed unneeded headers from Fm namespace. * Show more info on item tooltip. * Replaced char raw strings literals. * Don't use implicit string conversions. * Removed duplicated string casts definitions. * Clarified the license usage in libfm-qt and fixed the license header of code we took from libfm. * The final fix of showing nonexistent files. * Workaround for GLib's recursive moving error. * Disabled selection corners in single-selection mode. * Row-by-row scrolling inside view when Shift is pressed. * Smarter extension handling on saving in file dialog. * Fixed a small miscalculation in detailed list rubber-band. * Fixes for smooth scrolling. * Added deletion time to Trash. * Completed the thumbnail transformations based on EXIF. * Replaced methods deprecated by Qt 5.13. * Don't start item DND until the cursor is really moved. * Support DND to Places panel. * Fix crash when window is closed before finishing mount operation. * Fixed DND with MTP. * Easier and richer auto-completion. * Fixed comparison of GiB-sized files. * Corrected lxqt-archiver's mimetypes and added arqiver to archivers list. * Don't show "untrust" emblem where it isn't needed. * Only select first columns on selecting all items of a list view. * Fixed problems in graying-out of cut files. * Fixed a crash in renaming bookmark with dot in its name. * Improved bookmark DND. * Fixed creating bookmark items with NULL path. * Always show real file names in Properties dialog. * Follow view setting when showing file names on tooltips. * Fixed lack of overwrite prompt in some cases with file dialog. * Fixed a potential cause of crash in showing errors. * An option to show folder context menu with Ctrl + right click. * Select the current folder on showing the directory tree. * Support DND to directory tree (in side pane). * Enforce eject button width (on side pane). * Added an option to show hidden file after others. * Set info query cancellation error to mild in dir list job. * Added frame to side pane combo and changed its text. * Fixed horizontal wheel scrolling in compact mode with Qt 5.14.0. * Keep Device Usage label, progressbar and text together. in properties dialog. * Use GIO's display/copy name when renaming/transferring files. * Consider locale when sorting custom actions. * Better DND from remote folders to external apps. * Made template options work (in pcmanfm-qt). * Activate side-pane's focused item on pressing Enter/Return. * Fixed selection with arrow keys after pressing selection corner. * Disable Create New in context menu when not possible. * Never consider icons selected in icon/thumbnail view. * Also open remote links in desktop entries. * Allow saving mount passwords if gnome-keyring is present. * Fixed disabled file DND in rare cases. * Sharp view icons with scale factors > 1.
Diffstat (limited to 'x11/libfm-qt')
-rw-r--r--x11/libfm-qt/Makefile17
-rw-r--r--x11/libfm-qt/PLIST10
-rw-r--r--x11/libfm-qt/buildlink3.mk5
-rw-r--r--x11/libfm-qt/distinfo10
4 files changed, 20 insertions, 22 deletions
diff --git a/x11/libfm-qt/Makefile b/x11/libfm-qt/Makefile
index 8952094528f..f7ece9d77a0 100644
--- a/x11/libfm-qt/Makefile
+++ b/x11/libfm-qt/Makefile
@@ -1,13 +1,13 @@
-# $NetBSD: Makefile,v 1.6 2020/04/22 08:43:33 pin Exp $
+# $NetBSD: Makefile,v 1.7 2020/06/01 10:38:55 pin Exp $
-DISTNAME= libfm-qt-0.14.1
-PKGREVISION= 3
+VERSION= 0.15.1
+DISTNAME= libfm-qt-${VERSION}
CATEGORIES= x11
-MASTER_SITES= https://downloads.lxqt.org/downloads/libfm-qt/0.14.1/
+MASTER_SITES= ${MASTER_SITE_GITHUB:=lxqt/libfm-qt/releases/download/${VERSION}/}
EXTRACT_SUFX= .tar.xz
-MAINTAINER= pin@NetBSD.org
-HOMEPAGE= https://lxqt.org/
+MAINTAINER= pkgsrc-users@NetBSD.org
+HOMEPAGE= https://github.com/lxqt/libfm-qt/
COMMENT= Core library of PCManFM-Qt
LICENSE= gnu-lgpl-v2.1 AND modified-bsd
@@ -27,10 +27,7 @@ SUBST_MESSAGE.prefix= Fixing paths.
SUBST_STAGE.prefix= pre-configure
SUBST_FILES.prefix= src/core/fileinfo.cpp
SUBST_FILES.prefix+= src/core/vfs/vfs-menu.c
-# Upstream has a typo in a hard-coded path of "xgd" where they mean "xdg".
-# On the next update, check vfs-menu.c, as this will likely be corrected
-# to "xdg": https://github.com/lxqt/libfm-qt/pull/528
-SUBST_SED.prefix= -e 's,/etc/xgd,${PKG_SYSCONFDIR},g'
+SUBST_SED.prefix= -e 's,/etc/xdg,${PKG_SYSCONFDIR},g'
SUBST_SED.prefix+= -e 's,/usr/share,${PREFIX}/share,g'
pre-configure:
diff --git a/x11/libfm-qt/PLIST b/x11/libfm-qt/PLIST
index 400fe882215..4e674b9255f 100644
--- a/x11/libfm-qt/PLIST
+++ b/x11/libfm-qt/PLIST
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.1 2020/02/20 06:07:54 gutteridge Exp $
+@comment $NetBSD: PLIST,v 1.2 2020/06/01 10:38:55 pin Exp $
include/libfm-qt/appchoosercombobox.h
include/libfm-qt/appchooserdialog.h
include/libfm-qt/applaunchcontext.h
@@ -95,11 +95,10 @@ include/libfm-qt/renamedialog.h
include/libfm-qt/sidepane.h
include/libfm-qt/utilities.h
include/libfm-qt/utilities_p.h
-include/libfm-qt/utils.h
include/libfm-qt/xdndworkaround.h
lib/libfm-qt.so
-lib/libfm-qt.so.6
-lib/libfm-qt.so.6.1.0
+lib/libfm-qt.so.7
+lib/libfm-qt.so.7.0.0
lib/pkgconfig/libfm-qt.pc
share/cmake/fm-qt/fm-qt-config-version.cmake
share/cmake/fm-qt/fm-qt-config.cmake
@@ -108,6 +107,8 @@ share/cmake/fm-qt/fm-qt-targets.cmake
share/libfm-qt/archivers.list
share/libfm-qt/terminals.list
share/libfm-qt/translations/libfm-qt_ar.qm
+share/libfm-qt/translations/libfm-qt_arn.qm
+share/libfm-qt/translations/libfm-qt_ast.qm
share/libfm-qt/translations/libfm-qt_ca.qm
share/libfm-qt/translations/libfm-qt_cs.qm
share/libfm-qt/translations/libfm-qt_cy.qm
@@ -126,6 +127,7 @@ share/libfm-qt/translations/libfm-qt_ja.qm
share/libfm-qt/translations/libfm-qt_lt.qm
share/libfm-qt/translations/libfm-qt_nb_NO.qm
share/libfm-qt/translations/libfm-qt_nl.qm
+share/libfm-qt/translations/libfm-qt_or.qm
share/libfm-qt/translations/libfm-qt_pl.qm
share/libfm-qt/translations/libfm-qt_pt.qm
share/libfm-qt/translations/libfm-qt_pt_BR.qm
diff --git a/x11/libfm-qt/buildlink3.mk b/x11/libfm-qt/buildlink3.mk
index fa7b7bfec48..af918cf3e0f 100644
--- a/x11/libfm-qt/buildlink3.mk
+++ b/x11/libfm-qt/buildlink3.mk
@@ -1,12 +1,11 @@
-# $NetBSD: buildlink3.mk,v 1.4 2020/04/12 08:28:12 adam Exp $
+# $NetBSD: buildlink3.mk,v 1.5 2020/06/01 10:38:55 pin Exp $
BUILDLINK_TREE+= libfm-qt
.if !defined(LIBFM_QT_BUILDLINK3_MK)
LIBFM_QT_BUILDLINK3_MK:=
-BUILDLINK_API_DEPENDS.libfm-qt+= libfm-qt>=0.14.1
-BUILDLINK_ABI_DEPENDS.libfm-qt?= libfm-qt>=0.14.1nb3
+BUILDLINK_API_DEPENDS.libfm-qt+= libfm-qt>=0.15.0
BUILDLINK_PKGSRCDIR.libfm-qt?= ../../x11/libfm-qt
.include "../../x11/qt5-qtbase/buildlink3.mk"
diff --git a/x11/libfm-qt/distinfo b/x11/libfm-qt/distinfo
index bfde5181b0f..f527f643d87 100644
--- a/x11/libfm-qt/distinfo
+++ b/x11/libfm-qt/distinfo
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.1 2020/02/20 06:07:54 gutteridge Exp $
+$NetBSD: distinfo,v 1.2 2020/06/01 10:38:55 pin Exp $
-SHA1 (libfm-qt-0.14.1.tar.xz) = 7aa6f6d3642dab532c7222a3d3a4c05699498689
-RMD160 (libfm-qt-0.14.1.tar.xz) = 51ecb0f285bbb9a20727e5a3ff7a96c53a52b472
-SHA512 (libfm-qt-0.14.1.tar.xz) = a265f6831a077ccb78a994828e6c69a22f2f6432b1f6ed6f404af41f013112870f7aee98067f2c466bec6cdfea040c10c7ce7e0f0ed977e5d266ec38e543d2a7
-Size (libfm-qt-0.14.1.tar.xz) = 328192 bytes
+SHA1 (libfm-qt-0.15.1.tar.xz) = 8c957bb06b77dc43f40bcb610fb0108a4d089876
+RMD160 (libfm-qt-0.15.1.tar.xz) = 42b340b9d07122cd305d5a216a05a89d886186fc
+SHA512 (libfm-qt-0.15.1.tar.xz) = 9bd3f61d830e4f7ba3e72d84e3ff1a07544f6f461d6eea7ecf2b31056020e08d47d83ef920b6e1a481a470dadfb995a6b3e3b57a13574d6abca617a84c71bdf5
+Size (libfm-qt-0.15.1.tar.xz) = 337396 bytes