summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--kde-apps/kdenetwork-filesharing/Manifest1
-rw-r--r--kde-apps/kdenetwork-filesharing/files/kdenetwork-filesharing-22.12.0-gcc13.patch24
-rw-r--r--kde-apps/kdenetwork-filesharing/kdenetwork-filesharing-22.12.2.ebuild42
3 files changed, 0 insertions, 67 deletions
diff --git a/kde-apps/kdenetwork-filesharing/Manifest b/kde-apps/kdenetwork-filesharing/Manifest
index 3de00b193787..87ecf0783535 100644
--- a/kde-apps/kdenetwork-filesharing/Manifest
+++ b/kde-apps/kdenetwork-filesharing/Manifest
@@ -1,3 +1,2 @@
DIST kdenetwork-filesharing-22.08.3.tar.xz 379024 BLAKE2B 23b879c7c0224a477c1cf06c68e9c8129a7013ebb12cea0a641ca229666bd82febac860dadaa84c4558065cdc27da074aaec15ad6d8bb95054cfa5bae5f314b6 SHA512 f982854de25bee7cf34efdb16ba6152f3817feddaf343ae1af74492dba2aa2deef5aa3546a614bc9d1343cbb15aa90d9008d47f9beaf185e0b078526ff92151d
-DIST kdenetwork-filesharing-22.12.2.tar.xz 464504 BLAKE2B 3ca78d924884f1f8a1b24151611f4970e0e6dc9b96984b31795d2f9532074f892c730773371b3f68496273a725327a686ce389b23850e62b67b76651ffab7296 SHA512 94dcef99b6f6713b9fc8995a6488fc65e2f255f30cc3f712e84924b0cb70461c3b4117445b164389ed1ed152c23e9a5e66974a21880c951d4fa713e68f7fbf45
DIST kdenetwork-filesharing-22.12.3.tar.xz 465560 BLAKE2B 8300bc48ce54d73b705768264ecf201e0fb67798362d567f7dd2406c4d369306c55eb0e8a3a9b1f8c9a4dab7d2f1836e568925a192001fdb6427f83d7796a873 SHA512 238561e5723fa885339b07c4f766df2b07b4c104c65a852bc1cb07fcf99cfa7b12738bd8b14cb452848bf5dce7aa87c281b1f5ea6541612206fe19bb02076592
diff --git a/kde-apps/kdenetwork-filesharing/files/kdenetwork-filesharing-22.12.0-gcc13.patch b/kde-apps/kdenetwork-filesharing/files/kdenetwork-filesharing-22.12.0-gcc13.patch
deleted file mode 100644
index 309108854e24..000000000000
--- a/kde-apps/kdenetwork-filesharing/files/kdenetwork-filesharing-22.12.0-gcc13.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-https://invent.kde.org/network/kdenetwork-filesharing/-/commit/5c2d4ff3092155d24164c24a2a9a610325ff7174
-
-From: Sam James <sam@gentoo.org>
-Date: Sun, 11 Dec 2022 13:23:56 +0000
-Subject: [PATCH] samba: Fix build with GCC 13 (add missing <cstdint> include)
-
-GCC 13 (as usual for new compiler releases) shuffles around some
-internal includes and so <cstdint> is no longer transitively included.
-
-Explicitly include <cstdint> for uint32_t.
-
-Bug: https://bugs.gentoo.org/885315
---- a/samba/aclproperties/debug.h
-+++ b/samba/aclproperties/debug.h
-@@ -3,6 +3,7 @@
-
- #pragma once
-
-+#include <cstdint>
- #include <string>
-
- struct ACE;
---
-GitLab
diff --git a/kde-apps/kdenetwork-filesharing/kdenetwork-filesharing-22.12.2.ebuild b/kde-apps/kdenetwork-filesharing/kdenetwork-filesharing-22.12.2.ebuild
deleted file mode 100644
index 38f8638a5610..000000000000
--- a/kde-apps/kdenetwork-filesharing/kdenetwork-filesharing-22.12.2.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-KFMIN=5.101.0
-QTMIN=5.15.5
-inherit ecm gear.kde.org
-
-DESCRIPTION="Samba filesharing plugin for file properties"
-HOMEPAGE="https://apps.kde.org/kdenetwork_filesharing/"
-
-LICENSE="GPL-2" # TODO: CHECK
-SLOT="5"
-KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
-IUSE=""
-
-DEPEND="
- >=dev-qt/qtdeclarative-${QTMIN}:5
- >=dev-qt/qtgui-${QTMIN}:5
- >=dev-qt/qtwidgets-${QTMIN}:5
- >=kde-frameworks/kcompletion-${KFMIN}:5
- >=kde-frameworks/kcoreaddons-${KFMIN}:5
- >=kde-frameworks/ki18n-${KFMIN}:5
- >=kde-frameworks/kio-${KFMIN}:5
- >=kde-frameworks/kwidgetsaddons-${KFMIN}:5
-"
-RDEPEND="${DEPEND}
- >=dev-qt/qtquickcontrols2-${QTMIN}:5
- >=kde-frameworks/kirigami-${KFMIN}:5
- net-fs/samba
-"
-
-PATCHES=( "${FILESDIR}"/${PN}-22.12.0-gcc13.patch ) # bug 885315, git master
-
-src_configure() {
- local mycmakeargs=(
- -DCMAKE_DISABLE_FIND_PACKAGE_PackageKitQt5=ON
- )
-
- ecm_src_configure
-}