aboutsummaryrefslogtreecommitdiffstats
path: root/community/kio
diff options
context:
space:
mode:
Diffstat (limited to 'community/kio')
-rw-r--r--community/kio/APKBUILD10
-rw-r--r--community/kio/D23670.patch27
2 files changed, 4 insertions, 33 deletions
diff --git a/community/kio/APKBUILD b/community/kio/APKBUILD
index bca49bf00b..e82a03c64c 100644
--- a/community/kio/APKBUILD
+++ b/community/kio/APKBUILD
@@ -1,8 +1,8 @@
# Contributor: Bart Ribbers <bribbers@disroot.org>
# Maintainer: Bart Ribbers <bribbers@disroot.org>
pkgname=kio
-pkgver=5.61.0
-pkgrel=1
+pkgver=5.62.0
+pkgrel=0
pkgdesc="Resource and network access abstraction"
arch="all"
url="https://community.kde.org/Frameworks"
@@ -14,8 +14,7 @@ depends_dev="qt5-qtscript-dev karchive-dev kconfig-dev kcoreaddons-dev
knotifications-dev"
makedepends="$depends_dev extra-cmake-modules doxygen qt5-qttools-dev libxslt-dev libxml2-dev kdoctools-dev"
checkdepends="xvfb-run"
-source="https://download.kde.org/stable/frameworks/${pkgver%.*}/kio-$pkgver.tar.xz
- D23670.patch"
+source="https://download.kde.org/stable/frameworks/${pkgver%.*}/kio-$pkgver.tar.xz"
subpackages="$pkgname-dev $pkgname-doc $pkgname-lang"
options="!check" # Fails due to requiring physical devices not normally available and test 14 hangs
@@ -35,5 +34,4 @@ check() {
package() {
DESTDIR="$pkgdir" make install
}
-sha512sums="ae744e393fc0466b1221fb97db030782af1bd60724e1d4033b88e577fd516fe6ebfe9367e13ea9818da57cfb84375aa8ce5c2d69829ebdc754343bcdd2d65f44 kio-5.61.0.tar.xz
-ca4262f0e702b4b1dcf5ffd95c2ea2ae70cc217a62e4473500f9252a9c05fb6a6fff32ff8ff4aab249ac8ecc91fc169358090710b8fe43adff368a9a5c57d2dc D23670.patch"
+sha512sums="1f8ee878f18496b78a6efbfdb5719acda68c182d6ab945b3075df9fdc8439fc1cabddd491e0c51bde3d127fc16e7890ac616074345b0602b354c6aee41413231 kio-5.62.0.tar.xz"
diff --git a/community/kio/D23670.patch b/community/kio/D23670.patch
deleted file mode 100644
index 7eb064e7d0..0000000000
--- a/community/kio/D23670.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-diff --git a/src/widgets/kpropertiesdialog.cpp b/src/widgets/kpropertiesdialog.cpp
---- a/src/widgets/kpropertiesdialog.cpp
-+++ b/src/widgets/kpropertiesdialog.cpp
-@@ -1155,15 +1155,15 @@
- if (isLocal) {
- KMountPoint::Ptr mp = KMountPoint::currentMountPoints().findByPath(url.toLocalFile());
-
-- l = new QLabel(i18n("File System:"), d->m_frame);
-- grid->addWidget(l, curRow, 0, Qt::AlignRight);
-+ if (mp) {
-+ l = new QLabel(i18n("File System:"), d->m_frame);
-+ grid->addWidget(l, curRow, 0, Qt::AlignRight);
-
-- l = new QLabel(d->m_frame);
-- grid->addWidget(l, curRow++, 2);
-- l->setTextInteractionFlags(Qt::TextSelectableByMouse | Qt::TextSelectableByKeyboard);
-- l->setText(mp->mountType());
-+ l = new QLabel(d->m_frame);
-+ grid->addWidget(l, curRow++, 2);
-+ l->setTextInteractionFlags(Qt::TextSelectableByMouse | Qt::TextSelectableByKeyboard);
-+ l->setText(mp->mountType());
-
-- if (mp) {
- l = new QLabel(i18n("Mounted on:"), d->m_frame);
- grid->addWidget(l, curRow, 0, Qt::AlignRight);
-
-