summaryrefslogtreecommitdiff
path: root/kde-frameworks/kio
diff options
context:
space:
mode:
authorJohannes Huber <johu@gentoo.org>2016-05-19 15:51:16 +0200
committerJohannes Huber <johu@gentoo.org>2016-05-19 15:51:26 +0200
commit7e74157770cd75d61e69388bdb6ba8dfa04d89e4 (patch)
treec81c1ed6a55e351c653f553b32f33edc9cdd0250 /kde-frameworks/kio
parent2ffc5ba602a3505a63f0dd0f15fbd38036cef3f3 (diff)
downloadgentoo-7e74157770cd75d61e69388bdb6ba8dfa04d89e4.tar.gz
gentoo-7e74157770cd75d61e69388bdb6ba8dfa04d89e4.tar.xz
kde-frameworks: Remove KDE Frameworks 5.18.0
Package-Manager: portage-2.3.0_rc1
Diffstat (limited to 'kde-frameworks/kio')
-rw-r--r--kde-frameworks/kio/Manifest1
-rw-r--r--kde-frameworks/kio/files/kio-5.18.0-ftp-timestamps.patch60
-rw-r--r--kde-frameworks/kio/kio-5.18.0.ebuild82
3 files changed, 0 insertions, 143 deletions
diff --git a/kde-frameworks/kio/Manifest b/kde-frameworks/kio/Manifest
index 1e17fca7265..7c6313918e5 100644
--- a/kde-frameworks/kio/Manifest
+++ b/kde-frameworks/kio/Manifest
@@ -1,3 +1,2 @@
-DIST kio-5.18.0.tar.xz 2877312 SHA256 da526bb9b7f02b9670cf6bea54645a89a5b32d008204a4f2253bdd5e74df0f08 SHA512 35a1fbf27b4d0ffdf3297659e2c1a8b9add92d20f1cf6a3adbb79eed36164abc21caa543931ad3be39695f001d250638c091ed398e1776cc6e1fda8c3556d3a0 WHIRLPOOL ad812a7f12b78b00de95d5d41186927c14a37ef431c3adc5a611a5f0d89340c1f63e1bdffe16216a831229b3a995de312744e55245893953b6408ebcaae60883
DIST kio-5.21.0.tar.xz 2895592 SHA256 583e403f6d7813be1cd03f9b14c69bd1a6d8398dfd1e9fd87aa5883d6b949923 SHA512 eda2733dcb024ac29aae5b3cbe05354ee5d4e726d82b82edf43616fa37bb7a4f7ce8315b9a60d31f64f9ce4d7c65c44ad4a4399820fd84455f4ba18ecefab7b6 WHIRLPOOL 10d46b594c25116ede12ffc7fe2223e1e2a4993232a756a77aa63ecd29f47602bf5486b23662e557cf3d269f0cf8ac85c67d9a972a75f1880230b6a22c07826b
DIST kio-5.22.0.tar.xz 2895072 SHA256 1ecf2fba135dc5403fbc843ade047f9b2586db6ce34e772a46abfaa417f5760a SHA512 f770cb2f28371e5b2c647f6a7981a1f400d4908774460a15384ce060ec657d46ad132dec35a21aba1aae3f45c728d7a3617b3b1506353b84d0bbd5d44580a622 WHIRLPOOL 49098e4644ff1319995265266092c506663782be609bfb88074edaed483f7c31616f833d3c95399182e2d7309643529469c8e5926d30bd032c57d9b84149a650
diff --git a/kde-frameworks/kio/files/kio-5.18.0-ftp-timestamps.patch b/kde-frameworks/kio/files/kio-5.18.0-ftp-timestamps.patch
deleted file mode 100644
index 71a7d8ce248..00000000000
--- a/kde-frameworks/kio/files/kio-5.18.0-ftp-timestamps.patch
+++ /dev/null
@@ -1,60 +0,0 @@
-From: Wolfgang Bauer <wbauer@tmo.at>
-Date: Thu, 07 Jan 2016 12:38:55 +0000
-Subject: [kio_ftp] fix display of file/directory modification time/date
-X-Git-Url: http://quickgit.kde.org/?p=kio.git&a=commitdiff&h=68af1d7e89b7fed136d4cc62b76c1c6ded2d94eb
----
-[kio_ftp] fix display of file/directory modification time/date
-
-- QDate() treats the year literally (i.e. 90 is really year 90, not
-1990), so subtracting 1900 is wrong.
-- Use QDate::currentDate() instead of QDateTime::currentDateTime(), we
-only need the current date anyway
-- Initialize day, month, and year to the current date instead of 0. In
-the case when no year is mentioned in the server's reply (the year is
-implicit), it wasn't set to the current year at all, so the result was
-either 0 or -1.
-
-BUG: 354597
-FIXED-IN: 5.19.0
-REVIEW: 126659
----
-
-
---- a/src/ioslaves/ftp/ftp.cpp
-+++ b/src/ioslaves/ftp/ftp.cpp
-@@ -1763,18 +1763,16 @@
- // Parsing the date is somewhat tricky
- // Examples : "Oct 6 22:49", "May 13 1999"
-
-- // First get current time - we need the current month and year
-- QDateTime currentTime(QDateTime::currentDateTime());
-- int currentMonth = currentTime.date().month();
-+ // First get current date - we need the current month and year
-+ QDate currentDate(QDate::currentDate());
-+ int currentMonth = currentDate.month();
- //qDebug() << "Current time :" << asctime( tmptr );
-- // Reset time fields
-- currentTime.setTime(QTime(0, 0, 0));
-- // Get day number (always second field)
-- int day = 0;
-- int month = 0;
-- int year = 0;
-+ int day = currentDate.day();
-+ int month = currentDate.month();
-+ int year = currentDate.year();
- int minute = 0;
- int hour = 0;
-+ // Get day number (always second field)
- if (p_date_2) {
- day = atoi(p_date_2);
- }
-@@ -1794,7 +1792,7 @@
-
- // Parse third field
- if (qstrlen(p_date_3) == 4) { // 4 digits, looks like a year
-- year = atoi(p_date_3) - 1900;
-+ year = atoi(p_date_3);
- } else {
- // otherwise, the year is implicit
- // according to man ls, this happens when it is between than 6 months
-
diff --git a/kde-frameworks/kio/kio-5.18.0.ebuild b/kde-frameworks/kio/kio-5.18.0.ebuild
deleted file mode 100644
index 07be335e51a..00000000000
--- a/kde-frameworks/kio/kio-5.18.0.ebuild
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-KDE_TEST="forceoptional"
-VIRTUALX_REQUIRED="test"
-inherit kde5
-
-DESCRIPTION="Framework providing transparent file and data management"
-LICENSE="LGPL-2+"
-KEYWORDS="amd64 ~arm ~x86"
-IUSE="acl +handbook kerberos +kwallet X"
-
-COMMON_DEPEND="
- $(add_frameworks_dep karchive)
- $(add_frameworks_dep kbookmarks)
- $(add_frameworks_dep kcodecs)
- $(add_frameworks_dep kcompletion)
- $(add_frameworks_dep kconfig)
- $(add_frameworks_dep kconfigwidgets)
- $(add_frameworks_dep kcoreaddons)
- $(add_frameworks_dep kdbusaddons)
- $(add_frameworks_dep ki18n)
- $(add_frameworks_dep kiconthemes)
- $(add_frameworks_dep kitemviews)
- $(add_frameworks_dep kjobwidgets)
- $(add_frameworks_dep knotifications)
- $(add_frameworks_dep kservice)
- $(add_frameworks_dep ktextwidgets)
- $(add_frameworks_dep kwidgetsaddons)
- $(add_frameworks_dep kwindowsystem)
- $(add_frameworks_dep kxmlgui)
- $(add_frameworks_dep solid)
- dev-qt/qtdbus:5
- dev-qt/qtgui:5
- dev-qt/qtnetwork:5[ssl]
- dev-qt/qtscript:5
- dev-qt/qtwidgets:5
- dev-qt/qtxml:5
- dev-libs/libxml2
- dev-libs/libxslt
- acl? (
- sys-apps/attr
- virtual/acl
- )
- kerberos? ( virtual/krb5 )
- kwallet? ( $(add_frameworks_dep kwallet) )
- X? ( dev-qt/qtx11extras:5 )
-"
-DEPEND="${COMMON_DEPEND}
- dev-qt/qtconcurrent:5
- handbook? ( $(add_frameworks_dep kdoctools) )
- test? ( sys-libs/zlib )
- X? (
- x11-libs/libX11
- x11-libs/libXrender
- x11-proto/xproto
- )
-"
-PDEPEND="
- $(add_frameworks_dep kded)
-"
-RDEPEND="${COMMON_DEPEND}"
-
-# tests hang
-RESTRICT="test"
-
-PATCHES=( "${FILESDIR}/${P}-ftp-timestamps.patch" )
-
-src_configure() {
- local mycmakeargs=(
- $(cmake-utils_use_find_package acl)
- $(cmake-utils_use_find_package handbook KF5DocTools)
- $(cmake-utils_use_find_package kerberos GSSAPI)
- $(cmake-utils_use_find_package kwallet KF5Wallet)
- $(cmake-utils_use_find_package X X11)
- )
-
- kde5_src_configure
-}