diff options
author | Tobias C. Berner <tcberner@FreeBSD.org> | 2019-04-18 16:55:13 +0000 |
---|---|---|
committer | Tobias C. Berner <tcberner@FreeBSD.org> | 2019-04-18 16:55:13 +0000 |
commit | 1c18b6d5c88cf72cd09ad7f2b52ae59059b1bdc4 (patch) | |
tree | 8f2ebeab17be4671f083ca2da87e45ff3a8c178f /archivers/ark | |
parent | 5a3b74ef4494a27b5d10abefb96f08e74d04f5f7 (diff) | |
download | freebsd-ports-1c18b6d5c88cf72cd09ad7f2b52ae59059b1bdc4.zip |
Update KDE Applications to 19.04.0
The changelog can be found here:
- https://kde.org/announcements/announce-applications-19.04.0.php
Due to crashes on start, multimedia/kdenlive was kept at 18.12.3 for now.
Diffstat (limited to 'archivers/ark')
-rw-r--r-- | archivers/ark/Makefile | 1 | ||||
-rw-r--r-- | archivers/ark/distinfo | 6 | ||||
-rw-r--r-- | archivers/ark/files/patch-git_a3bcf9bec | 26 | ||||
-rw-r--r-- | archivers/ark/pkg-plist | 2 |
4 files changed, 4 insertions, 31 deletions
diff --git a/archivers/ark/Makefile b/archivers/ark/Makefile index e06262de9553..e59120970adf 100644 --- a/archivers/ark/Makefile +++ b/archivers/ark/Makefile @@ -2,7 +2,6 @@ PORTNAME= ark DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 3 CATEGORIES= archivers kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/archivers/ark/distinfo b/archivers/ark/distinfo index a0bfa7cfb591..9c9c5a1ffb3f 100644 --- a/archivers/ark/distinfo +++ b/archivers/ark/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810954 -SHA256 (KDE/applications/18.12.3/ark-18.12.3.tar.xz) = ecf781b5d3691bb967c9170938c1133e2972ee97d71aab2de65487a952700722 -SIZE (KDE/applications/18.12.3/ark-18.12.3.tar.xz) = 2580024 +TIMESTAMP = 1555094758 +SHA256 (KDE/applications/19.04.0/ark-19.04.0.tar.xz) = 35e8e516a8554e086264d9a9a4fa66c2b47fa227eb9e512a1d0d24172cd07a84 +SIZE (KDE/applications/19.04.0/ark-19.04.0.tar.xz) = 2582636 diff --git a/archivers/ark/files/patch-git_a3bcf9bec b/archivers/ark/files/patch-git_a3bcf9bec deleted file mode 100644 index 4697f7ea73bf..000000000000 --- a/archivers/ark/files/patch-git_a3bcf9bec +++ /dev/null @@ -1,26 +0,0 @@ -commit a3bcf9becddd5725725089add15fbae39c79757e -Author: Elvis Angelaccio <elvis.angelaccio@kde.org> -Date: Sat Mar 9 13:05:35 2019 +0100 - - Fix creation of tar archives - - Usage of QString::compare() breaks the creation of tar archives, because - `zst` is "bigger" than `tar` which means ark would use the `zstd` filter - even when creating a simple tar archive. - - BUG: 405136 - FIXED-IN: 19.03.80 - -diff --git a/plugins/libarchive/readwritelibarchiveplugin.cpp b/plugins/libarchive/readwritelibarchiveplugin.cpp -index 38f62881..e83d0087 100644 ---- plugins/libarchive/readwritelibarchiveplugin.cpp -+++ plugins/libarchive/readwritelibarchiveplugin.cpp -@@ -352,7 +352,7 @@ bool ReadWriteLibarchivePlugin::initializeNewFileWriterFilters(const Compression - qCDebug(ARK) << "Detected lz4 compression for new file"; - ret = archive_write_add_filter_lz4(m_archiveWriter.data()); - #ifdef HAVE_ZSTD_SUPPORT -- } else if (filename().rightRef(3).compare(QLatin1String("zst"), Qt::CaseInsensitive)) { -+ } else if (filename().right(3).toUpper() == QLatin1String("ZST")) { - qCDebug(ARK) << "Detected zstd compression for new file"; - ret = archive_write_add_filter_zstd(m_archiveWriter.data()); - #endif diff --git a/archivers/ark/pkg-plist b/archivers/ark/pkg-plist index 76a592ce273b..4f27537ded46 100644 --- a/archivers/ark/pkg-plist +++ b/archivers/ark/pkg-plist @@ -1,7 +1,7 @@ bin/ark etc/xdg/ark.categories lib/libkerfuffle.so.%%KDE_APPLICATIONS_VERSION_SHORT%% -lib/libkerfuffle.so.%%KDE_APPLICATIONS_VERSION%% +lib/libkerfuffle.so.19.4.0 %%QT_PLUGINDIR%%/arkpart.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_cli7z.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_clirar.so |