Andreas Sturmlechner
2017-11-19 16:47:03 +01:00
parent edcfaadf31
commit e02b71c5a9
36 changed files with 0 additions and 871 deletions

View File

@@ -1 +0,0 @@
DIST kcollectd-0.9.tar.gz 97132 SHA256 d2d4cb9d8d1c0eb7695c3567c6f40d33fdf1655d63038cb0b170af2fadd2a3b1 SHA512 c6eeeb52e137484bbeae564c3e85b25df4b78ff8cd39dcad69316f0c36f645f37096a5117ea5e969f883d65ca8466928c19b0e6121a0156bc345c0a138fa273a WHIRLPOOL c98e8171068efc3fc461bd2b92cee6ce6909ad53462e1dda8b854cc9db6fd8b6d3556e69459d88ada6683b9a0980f450b399316c16d9e010a8672eed6ae93de6

View File

@@ -1,42 +0,0 @@
--- kcollectd-0.9.orig/kcollectd/kcollectd.cc
+++ kcollectd-0.9/kcollectd/kcollectd.cc
@@ -73,7 +73,7 @@
gui->show();
}
}
- catch(basic_filesystem_error<path> &e) {
+ catch(const std::exception &e) {
KMessageBox::error(0, i18n("Failed to read collectd-structure at \'%1\'\n"
"Terminating.", QString(RRD_BASEDIR)));
exit(1);
--- kcollectd-0.9.orig/kcollectd/gui.cc
+++ kcollectd-0.9/kcollectd/gui.cc
@@ -127,21 +127,21 @@
const directory_iterator end_itr;
for (directory_iterator host(rrdpath); host != end_itr; ++host ) {
if (is_directory(*host)) {
- QTreeWidgetItem *hostitem = mkItem(listview, host->leaf());
+ QTreeWidgetItem *hostitem = mkItem(listview, host->path().filename().string());
hostitem->setFlags(hostitem->flags() & ~Qt::ItemIsSelectable);
for (directory_iterator sensor(*host); sensor != end_itr; ++sensor ) {
if (is_directory(*sensor)) {
- QTreeWidgetItem *sensoritem = mkItem(hostitem, sensor->leaf());
+ QTreeWidgetItem *sensoritem = mkItem(hostitem, sensor->path().filename().string());
sensoritem->setFlags(sensoritem->flags() & ~Qt::ItemIsSelectable);
for (directory_iterator rrd(*sensor); rrd != end_itr; ++rrd ) {
if (is_regular(*rrd) && extension(*rrd) == ".rrd") {
QTreeWidgetItem *rrditem = mkItem(sensoritem, basename(*rrd));
rrditem->setFlags(rrditem->flags() & ~Qt::ItemIsSelectable);
std::ostringstream info;
- info << host->leaf() << delimiter
- << sensor->leaf() << delimiter
+ info << host->path().filename().string() << delimiter
+ << sensor->path().filename().string() << delimiter
<< basename(*rrd);
- get_datasources(rrd->string(), info.str(), rrditem);
+ get_datasources(rrd->path().string(), info.str(), rrditem);
}
}
}

View File

@@ -1,10 +0,0 @@
diff -ruN kcollectd-0.9.orig/kcollectd/CMakeLists.txt kcollectd-0.9/kcollectd/CMakeLists.txt
--- kcollectd-0.9.orig/kcollectd/CMakeLists.txt 2009-11-30 22:01:54.000000000 +0100
+++ kcollectd-0.9/kcollectd/CMakeLists.txt 2011-04-24 15:35:21.596229942 +0200
@@ -1,5 +1,5 @@
-set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAG} ${KDE4_ENABLE_EXCEPTIONS}")
+set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${KDE4_ENABLE_EXCEPTIONS}")
find_package(Boost COMPONENTS filesystem system)

View File

@@ -1,11 +0,0 @@
--- a/kcollectd/kcollectd.desktop
+++ b/kcollectd/kcollectd.desktop
@@ -5,7 +5,7 @@
Terminal=false
StartupNotify=true
Categories=Qt;KDE;Utility;
-MimeType=application/x-kcollectd
+MimeType=application/x-kcollectd;
Name=KDE collectd database-viewer
Name[de]=KDE collectd Datenbankbetrachter
GenericName=Collectd viewer

View File

@@ -1,52 +0,0 @@
Description: fix FTBFS with gcc-6
Author: Logan Rosen <logan@ubuntu.com>
Acked-By: Mattia Rizzolo <mattia@debian.org>
Bug-Debian: https://bugs.debian.org/831129
Last-Update: 2016-10-10
--- a/kcollectd/graph.cc
+++ b/kcollectd/graph.cc
@@ -564,9 +564,9 @@
paint.setPen(Qt::NoPen);
paint.setBrush(QBrush(color_minmax[color_nr++ % 8]));
for(int i=0; i<size; ++i) {
- while (i<size && (isnan(min_data[i]) || isnan(max_data[i]))) ++i;
+ while (i<size && (std::isnan(min_data[i]) || std::isnan(max_data[i]))) ++i;
int l = i;
- while (i<size && !isnan(min_data[i]) && !isnan(max_data[i])) ++i;
+ while (i<size && !std::isnan(min_data[i]) && !std::isnan(max_data[i])) ++i;
const int asize = i-l;
points.resize(asize*2);
int k;
@@ -597,9 +597,9 @@
if (!avg_data.empty()) {
paint.setPen(color_line[color_nr++ % 8]);
for(int i=0; i<size; ++i) {
- while (i<size && isnan(avg_data[i])) ++i;
+ while (i<size && std::isnan(avg_data[i])) ++i;
int l = i;
- while (i<size && !isnan(avg_data[i])) ++i;
+ while (i<size && !std::isnan(avg_data[i])) ++i;
const int asize = i-l;
points.resize(asize);
for(int k=0; k<asize; ++k, ++l) {
--- a/kcollectd/misc.cc
+++ b/kcollectd/misc.cc
@@ -119,7 +119,7 @@
// process avg_data
if (!avg_data.empty()) {
for(std::size_t i=0; i<size; ++i) {
- if (isnan(avg_data[i])) continue;
+ if (std::isnan(avg_data[i])) continue;
valid = true;
if (min > avg_data[i]) min = avg_data[i];
if (max < avg_data[i]) max = avg_data[i];
@@ -129,7 +129,7 @@
// process min/max-data
if (!min_data.empty() && !max_data.empty()) {
for(std::size_t i=0; i<size; ++i) {
- if (isnan(min_data[i]) || isnan(max_data[i])) continue;
+ if (std::isnan(min_data[i]) || std::isnan(max_data[i])) continue;
valid = true;
if (min > min_data[i]) min = min_data[i];
if (max < min_data[i]) max = min_data[i];

View File

@@ -1,28 +0,0 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit kde4-base
DESCRIPTION="Simple kdelibs4-based live data viewer for collectd"
HOMEPAGE="https://www.forwiss.uni-passau.de/~berberic/Linux/kcollectd.html"
SRC_URI="https://www.forwiss.uni-passau.de/~berberic/Linux/${PN}/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="4"
KEYWORDS="~amd64 ~x86"
IUSE="debug"
DEPEND="
dev-libs/boost:=
net-analyzer/rrdtool"
RDEPEND="${DEPEND}
|| ( app-admin/collectd[collectd_plugins_rrdtool] app-admin/collectd[collectd_plugins_rrdcached] )"
PATCHES=(
"${FILESDIR}/${P}-boost.patch"
"${FILESDIR}/${P}-cflags.patch"
"${FILESDIR}/${P}-desktop.patch"
"${FILESDIR}/${P}-gcc6.patch"
)

View File

@@ -1,8 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>kde@gentoo.org</email>
<name>Gentoo KDE Project</name>
</maintainer>
</pkgmetadata>

View File

@@ -1 +0,0 @@
DIST kdesudo-3.4.2.4.tar.gz 53670 SHA256 8fc9ad91c908b27eb1f4173653ba7762f645fc817a9b108d0dd835d8af425584 SHA512 a199236bd17f753651b48a8bf5bbed67b42ed34d10bc79b402706f5b09cb7d850338659a89aeb9ed8371110b6f360985aa035c59afee8d720bec4bd8855129f0 WHIRLPOOL 689c3060f72bde1cff1310facf7bdf87fcdc6d849c0e9ff1c4ccc2579cad80a19ab0867b3d4540927cdc870c9bba49d3068f63b1a91e3ef9240eb28787355922

View File

@@ -1,24 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
# FIXME. What is linguas_jv, different Japanese translation?
KDE_LINGUAS="ar cs da de el en_GB es et fa fi fr gl he hr hu id is it ja kk ko
lt lv ms nb nl oc pl pt pt_BR ro ru sk sv tl tr uk zh_CN zh_TW"
KDE_HANDBOOK="optional"
inherit kde4-base
DESCRIPTION="A frontend for sudo. Unlike kdesu, it uses directly sudo as backend"
HOMEPAGE="https://launchpad.net/kdesudo/"
SRC_URI="https://launchpad.net/${PN}/3.x/${PV}/+download/${P}.tar.gz"
LICENSE="FDL-1.2 GPL-2 LGPL-2"
SLOT="4"
KEYWORDS="amd64 x86"
IUSE="debug"
RDEPEND="
app-admin/sudo
"
DOCS=( AUTHORS ChangeLog README )

View File

@@ -1,11 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>kde@gentoo.org</email>
<name>Gentoo KDE Project</name>
</maintainer>
<upstream>
<remote-id type="launchpad">kdesudo</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -1 +0,0 @@
DIST kmid-2.4.0.tar.bz2 577246 SHA256 44c4cf65d011d38e278e8f4d8e03e17ed1cfb7c76c33916f890a1f46d17de43b SHA512 1a25ddae7133c492a6141795b3f87c49ed7c2621c97c163addc4c6328185710e65e526af7d87e0623e67eb48e3feace11da1047f7475dff8768406c219fb3ad0 WHIRLPOOL 81b7bc6f896e257201b0735592320f34e28a4f7818470243ee051750c88d8b1f35680f6adde6a06e640e0132d4c1a2894b94e2cf9ced06ae0387f6d50bf6a0a2

View File

@@ -1,27 +0,0 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
KDE_HANDBOOK="optional"
KDE_LINGUAS="ca ca@valencia cs da de en_GB es fr gl nb nl pt pt_BR
sr sr@ijekavian sr@ijekavianlatin sr@Latn sv tr uk zh_CN"
inherit kde4-base
DESCRIPTION="A MIDI/Karaoke player based on kdelibs"
HOMEPAGE="https://userbase.kde.org/KMid"
SRC_URI="mirror://sourceforge/kmid2/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="4"
KEYWORDS="amd64 x86"
IUSE="debug"
RDEPEND="
media-libs/alsa-lib
>=media-sound/drumstick-0.4
<media-sound/drumstick-1.0.0
"
DEPEND="${RDEPEND}"
DOCS=( ChangeLog README TODO )

View File

@@ -1,15 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>kde@gentoo.org</email>
<name>Gentoo KDE Project</name>
</maintainer>
<maintainer type="project">
<email>sound@gentoo.org</email>
<name>Gentoo Sound project</name>
</maintainer>
<upstream>
<remote-id type="sourceforge">kmid2</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -1 +0,0 @@
DIST 116892-konvertible-1.0.1.tar.bz2 195359 SHA256 1f44e169ae4dd643a5e1133e51f6503058be35dc2183c6a1d74a53118757f06d SHA512 025b5ae86e2f606ba13bee9f9b285770f86d093ac4e563a776d6c516b539dc99faedd7a6214585e5815fcc146beba219fa2b038d7ec717419734bf4043982a6d WHIRLPOOL db0eb7cd1adaeac8913493d5b69f03b43cce6c677d7cc2d04a8050cc2226d9b632277c82f468a444e6b7ea2744afdc5863a5998b279b466ab38b47755bfc991d

View File

@@ -1,30 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit kde4-base
DESCRIPTION="A program to convert audio formats with FFmpeg"
HOMEPAGE="http://www.kde-apps.org/content/show.php/Konvertible?content=116892"
SRC_URI="http://www.kde-apps.org/CONTENT/content-files/116892-${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="4"
KEYWORDS="~amd64 ~x86"
IUSE="debug +handbook taglib"
DEPEND="taglib? ( media-libs/taglib )"
RDEPEND="${DEPEND}
virtual/ffmpeg
"
DOCS=( ChangeLog README TODO )
src_configure() {
local mycmakeargs=(
$(cmake-utils_use_with taglib)
)
kde4-base_src_configure
}

View File

@@ -1,12 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>sound@gentoo.org</email>
<name>Gentoo Sound project</name>
</maintainer>
<maintainer type="project">
<email>kde@gentoo.org</email>
<name>Gentoo KDE Project</name>
</maintainer>
</pkgmetadata>

View File

@@ -1 +0,0 @@
DIST kstreamripper-0.7.100.tar.bz2 1019096 SHA256 7d081453034c0bd3429766118a7e18b65d0b2acc8d306993ff17df7ec647d76d SHA512 395a2238470bc40686ac29b5d0d05ec082668a23a908649d643edbe72cb3c581f74a46ad9607f98e6b8f43148e1993676e4e295578bbf9db4ee077498957aec0 WHIRLPOOL 23d47d3daa756d0c357c719c541e812d6c64a3332e78992977a8206e2aedd5c03d8b78d5d38558c087a711c4dc3acd30e249087bb8d154a1df33ea8e72969831

View File

@@ -1,11 +0,0 @@
diff -ruN kstreamripper.orig/src/version.h.cmake kstreamripper/src/version.h.cmake
--- kstreamripper.orig/src/version.h.cmake 2011-09-07 19:54:40.000000000 +0200
+++ kstreamripper/src/version.h.cmake 2011-12-18 20:17:53.521611664 +0100
@@ -21,6 +21,6 @@
/** This macro indicates that
* #myMessageOutput() should be included in the binary. */
-#define CUSTOMMESSAGEHANDLER
+/* #define CUSTOMMESSAGEHANDLER */
#endif

View File

@@ -1,27 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit kde4-base
DESCRIPTION="Program for ripping internet radios"
HOMEPAGE="http://kstreamripper.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
LICENSE="GPL-2 GPL-3"
SLOT="4"
KEYWORDS="amd64 x86"
IUSE="debug"
DEPEND=""
#>=net-libs/libproxy-0.3.1
RDEPEND="${DEPEND}
media-sound/streamripper
"
S=${WORKDIR}/${PN}
DOCS=( TODO.odt )
PATCHES=( "${FILESDIR}/${P}-nodebuglog.patch" )

View File

@@ -1,15 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>sound@gentoo.org</email>
<name>Gentoo Sound project</name>
</maintainer>
<maintainer type="project">
<email>kde@gentoo.org</email>
<name>Gentoo KDE Project</name>
</maintainer>
<upstream>
<remote-id type="sourceforge">kstreamripper</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -1 +0,0 @@
DIST qutim-0.3.3.p_1.tar.xz 8708952 SHA256 945dc03d25ccd985b8c0d0d4ef2c98e3731428135c60df4a0deaf9c9b1a8f2e3 SHA512 658c0d114a6771cd7ae9f3090e6ab6deba8e92465b9cd966d7ab4d4626dbb7335a712d7c0f64c886d7bcb7a3fbcd0b18398946a366ec1e150a9e2ae5e4e638e9 WHIRLPOOL 05c3360134fd41f8dabad232cef42db2222f1973bee32dcf02d1784634b6c0163066f739c15c7ad1b46af9a8f9b0d90b9e4e9cf79f72f6f754af2f50b95f8d5c

View File

@@ -1,151 +0,0 @@
From bb8654db870d983d5b6558d9f16b22f443315eaf Mon Sep 17 00:00:00 2001
From: Alexander Golubev <fatzer2@gmail.com>
Date: Mon, 3 Nov 2014 16:30:27 +0300
Subject: [PATCH 3/3] protocol/astral: migrate to qt-telepaphy API v0.9
---
protocols/astral/src/astralaccount.cpp | 12 ++++++------
protocols/astral/src/astralaccount.h | 14 +++++++-------
protocols/astral/src/astralcontact.h | 6 +++---
protocols/astral/src/astralplugin.cpp | 6 +++---
protocols/astral/src/astralroster.cpp | 14 +++++++-------
protocols/astral/src/astralsession.h | 4 ++--
6 files changed, 28 insertions(+), 28 deletions(-)
diff --git a/protocols/astral/src/astralaccount.cpp b/protocols/astral/src/astralaccount.cpp
index 1d51707..e9bf729 100644
--- a/protocols/astral/src/astralaccount.cpp
+++ b/protocols/astral/src/astralaccount.cpp
@@ -26,9 +26,9 @@
#include "astralprotocol.h"
#include "astralroster.h"
#include "astralsessionmanager.h"
-#include <TelepathyQt4/Account>
-#include <TelepathyQt4/AccountManager>
-#include <TelepathyQt4/PendingChannel>
+#include <TelepathyQt/Account>
+#include <TelepathyQt/AccountManager>
+#include <TelepathyQt/PendingChannel>
#include <QDebug>
struct AstralAccountPrivate
@@ -146,14 +146,14 @@ void AstralAccount::onNewChannels(const Tp::ChannelDetailsList &channels)
qDebug() << "AstralAccount::onNewChannels";
foreach (const Tp::ChannelDetails &details, channels)
{
- QString channelType = details.properties.value(QLatin1String(TELEPATHY_INTERFACE_CHANNEL ".ChannelType")).toString();
- bool requested = details.properties.value(QLatin1String(TELEPATHY_INTERFACE_CHANNEL ".Requested")).toBool();
+ QString channelType = details.properties.value(TP_QT_IFACE_CHANNEL + QLatin1String(".ChannelType")).toString();
+ bool requested = details.properties.value(TP_QT_IFACE_CHANNEL + QLatin1String(".Requested")).toBool();
qDebug() << " channelType:" << channelType;
qDebug() << " requested :" << requested;
qDebug() << " channelPath:" << details.channel.path();
qDebug() << " properties :" << details.properties;
- if (channelType == TELEPATHY_INTERFACE_CHANNEL_TYPE_TEXT && !requested)
+ if (channelType == TP_QT_IFACE_CHANNEL_TYPE_TEXT && !requested)
{
TextChannelPtr channel = TextChannel::create(p->conn,
details.channel.path(),
diff --git a/protocols/astral/src/astralaccount.h b/protocols/astral/src/astralaccount.h
index 2781fb9..6e4378d 100644
--- a/protocols/astral/src/astralaccount.h
+++ b/protocols/astral/src/astralaccount.h
@@ -26,13 +26,13 @@
#define ASTRALACCOUNT_H
#include <qutim/account.h>
-#include <TelepathyQt4/ConnectionManager>
-#include <TelepathyQt4/Connection>
-#include <TelepathyQt4/TextChannel>
-#include <TelepathyQt4/AccountManager>
-#include <TelepathyQt4/PendingConnection>
-#include <TelepathyQt4/PendingOperation>
-#include <TelepathyQt4/PendingReady>
+#include <TelepathyQt/ConnectionManager>
+#include <TelepathyQt/Connection>
+#include <TelepathyQt/TextChannel>
+#include <TelepathyQt/AccountManager>
+#include <TelepathyQt/PendingConnection>
+#include <TelepathyQt/PendingOperation>
+#include <TelepathyQt/PendingReady>
#include "astralroster.h"
diff --git a/protocols/astral/src/astralcontact.h b/protocols/astral/src/astralcontact.h
index ce0e9dd..5adfb07 100644
--- a/protocols/astral/src/astralcontact.h
+++ b/protocols/astral/src/astralcontact.h
@@ -26,9 +26,9 @@
#define ASTRALCONTACT_H
#include <qutim/contact.h>
-#include <TelepathyQt4/Types>
-#include <TelepathyQt4/Contact>
-#include <TelepathyQt4/Connection>
+#include <TelepathyQt/Types>
+#include <TelepathyQt/Contact>
+#include <TelepathyQt/Connection>
using namespace Tp;
using namespace qutim_sdk_0_3;
diff --git a/protocols/astral/src/astralplugin.cpp b/protocols/astral/src/astralplugin.cpp
index e907866..d79642e 100644
--- a/protocols/astral/src/astralplugin.cpp
+++ b/protocols/astral/src/astralplugin.cpp
@@ -24,9 +24,9 @@
****************************************************************************/
#include "astralplugin.h"
#include <QtCore/QtDebug>
-#include <TelepathyQt4/Debug>
-#include <TelepathyQt4/Constants>
-#include <TelepathyQt4/Types>
+#include <TelepathyQt/Debug>
+#include <TelepathyQt/Constants>
+#include <TelepathyQt/Types>
//#include <TelepathyQt4/ConnectionInterfaceAvatarsInterface>
AstralPlugin::AstralPlugin()
diff --git a/protocols/astral/src/astralroster.cpp b/protocols/astral/src/astralroster.cpp
index 9eb209f..588cc55 100644
--- a/protocols/astral/src/astralroster.cpp
+++ b/protocols/astral/src/astralroster.cpp
@@ -24,13 +24,13 @@
****************************************************************************/
#include "astralroster.h"
#include "astralaccount.h"
-#include <TelepathyQt4/Types>
-#include <TelepathyQt4/Contact>
-#include <TelepathyQt4/ContactManager>
-#include <TelepathyQt4/PendingConnection>
-#include <TelepathyQt4/PendingContacts>
-#include <TelepathyQt4/PendingOperation>
-#include <TelepathyQt4/PendingReady>
+#include <TelepathyQt/Types>
+#include <TelepathyQt/Contact>
+#include <TelepathyQt/ContactManager>
+#include <TelepathyQt/PendingConnection>
+#include <TelepathyQt/PendingContacts>
+#include <TelepathyQt/PendingOperation>
+#include <TelepathyQt/PendingReady>
struct AstralRosterPrivate
{
diff --git a/protocols/astral/src/astralsession.h b/protocols/astral/src/astralsession.h
index fa78e45..a5dd1c3 100644
--- a/protocols/astral/src/astralsession.h
+++ b/protocols/astral/src/astralsession.h
@@ -26,8 +26,8 @@
#define ASTRALSESSION_H
#include <qutim/chatunit.h>
-#include <TelepathyQt4/TextChannel>
-#include <TelepathyQt4/Message>
+#include <TelepathyQt/TextChannel>
+#include <TelepathyQt/Message>
using namespace qutim_sdk_0_3;
using namespace Tp;
--
2.0.4

View File

@@ -1,26 +0,0 @@
Fix issues caused by turning on -std=c++14 by default in gcc.6.1+.
See Gentoo-Bug #623572.
Upstream commit 7453ef49e8fb64b05cfe7b8c0622bf00eba3080f "Turned on -std=c++11 by default " does the same changes.
diff --git a/protocols/irc/src/irccommandalias.cpp b/protocols/irc/src/irccommandalias.cpp
index cfe8a620e..41282f15f 100644
--- a/protocols/irc/src/irccommandalias.cpp
+++ b/protocols/irc/src/irccommandalias.cpp
@@ -148,7 +148,7 @@ QString IrcPingAlias::generate(IrcCommandAlias::Type aliasType, const QStringLis
}
#define ADD_BAN_CMD(MODE, TYPE, NAME, TITLE, ADDITIONALCMD) \
- cmd = new IrcCommandAlias(NAME, "MODE %n +b "MODE ADDITIONALCMD, IrcCommandAlias::Participant); \
+ cmd = new IrcCommandAlias(NAME, "MODE %n +b " MODE ADDITIONALCMD, IrcCommandAlias::Participant); \
gen = new IrcActionGenerator(QIcon(), TITLE, cmd); \
gen->setType(TYPE); \
MenuController::addAction<IrcChannelParticipant>(gen, kickBanGroup);
@@ -172,7 +172,7 @@ QString IrcPingAlias::generate(IrcCommandAlias::Type aliasType, const QStringLis
REGISTER_CTCP_CMD(TITLE)
#define ADD_MODE(MODE, PRIORITY, NAME, TITLE)\
- cmd = new IrcCommandAlias(NAME, "MODE %n "MODE" %o", IrcCommandAlias::Participant);\
+ cmd = new IrcCommandAlias(NAME, "MODE %n " MODE " %o", IrcCommandAlias::Participant);\
gen = new IrcActionGenerator(QIcon(), TITLE, cmd);\
gen->setPriority(PRIORITY);\
MenuController::addAction<IrcChannelParticipant>(gen, modesGroup);\

View File

@@ -1,42 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>fatzer2@gmail.com</email>
<name>Alexander Golubev</name>
<description>Proxied maintainer. Assign bugs on him</description>
</maintainer>
<maintainer type="project">
<email>proxy-maint@gentoo.org</email>
<name>Proxy Maintainers</name>
</maintainer>
<upstream>
<maintainer>
<email>euroelessar@yandex.ru</email>
<name>Ruslan Nigmatullin</name>
</maintainer>
<bugs-to>https://github.com/euroelessar/qutim/issues</bugs-to>
</upstream>
<use>
<flag name="aspell">Enable spellchecking using <pkg>app-text/aspell</pkg></flag>
<flag name="awn">Enable integration with gnome-extra/avant-window-navigator</flag>
<flag name="crypt">Enable AES crypto plugin</flag>
<flag name="histman">Enable history importer plugin</flag>
<flag name="hunspell">Enable spellchecking using <pkg>app-text/hunspell</pkg></flag>
<flag name="irc">Enable IRC protocol support</flag>
<flag name="mrim">Enable mail.ru protocol support</flag>
<flag name="otr">Enable plugin for encrypted conversations (Off-The-Record messaging)</flag>
<flag name="phonon">Add sound support via <pkg>media-libs/phonon</pkg></flag>
<flag name="purple">Enable libpurple-based protocol support</flag>
<flag name="qml">Enable QtQuick-based chat plugin</flag>
<flag name="sdl">Add sound support via <pkg>media-libs/sdl-mixer</pkg></flag>
<flag name="vkontakte">Enable vkontakte protocol support</flag>
<flag name="webkit">Enable Adium-like WebView plugin</flag>
<flag name="xscreensaver">Use X screensaver protocol extension to monitor idle/active status based on mouse/keyboard events</flag>
<flag name="tools">Enable some extra tools for qt developers</flag>
<flag name="telepathy">Enable to connect various IMs through <pkg>net-libs/telepathy-qt</pkg></flag>
<flag name="antiboss">Enable support for the antiboss plugin</flag>
<flag name="espionage">!!Not recomended, contains privacy risk!! Enable control plugin that controls user by sending messages and roster to remote server</flag>
<flag name="plugman">Enable downloadable content management with <pkg>dev-libs/libattica</pkg></flag>
</use>
</pkgmetadata>

View File

@@ -1,170 +0,0 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
LANGS="ar be bg cs de en_GB es fr he nds ru sk uk uz zh_CN"
inherit qt4-r2 cmake-utils
MY_PV="${PV/_p/.p_}"
DESCRIPTION="Qt4-based multi-protocol instant messenger"
HOMEPAGE="https://www.qutim.org"
SRC_URI="https://www.qutim.org/dwnl/80/${PN}-${MY_PV}.tar.xz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 x86"
# general USE
IUSE="doc +sound tools"
# protocol uses
IUSE="$IUSE telepathy irc xmpp mrim oscar purple vkontakte"
# plugins
IUSE="$IUSE antiboss aspell ayatana awn crypt dbus debug -espionage histman hunspell
otr plugman phonon purple qml sdl +ssl +xscreensaver webkit"
REQUIRED_USE="
oscar? ( ssl )
qml? ( webkit )
"
# Minimum Qt version required
QT_PV="4.7.0:4"
CDEPEND="
x11-libs/libqxt
>=dev-qt/qtcore-${QT_PV}[ssl?]
>=dev-qt/qtgui-${QT_PV}
>=dev-qt/qtscript-${QT_PV}
>=dev-qt/qtdeclarative-${QT_PV}
telepathy? ( >=net-libs/telepathy-qt-0.3 )
xmpp? (
app-crypt/qca:2[qt4(+)]
>=net-libs/jreen-1.2.0[qt4]
)
oscar? ( app-crypt/qca:2[qt4(+)] )
purple? ( net-im/pidgin )
vkontakte? ( >=dev-qt/qtwebkit-${QT_PV} )
aspell? ( app-text/aspell )
awn? ( >=dev-qt/qtdbus-${QT_PV} )
crypt? ( app-crypt/qca:2[qt4(+)] )
dbus? ( >=dev-qt/qtdbus-${QT_PV} )
espionage? ( app-crypt/qca:2[qt4(+)] )
histman? ( >=dev-qt/qtsql-${QT_PV} )
ayatana? ( >=dev-libs/libindicate-qt-0.2.2 )
hunspell? ( app-text/hunspell )
otr? ( >=net-libs/libotr-4.0.0 )
phonon? ( media-libs/phonon[qt4] )
plugman? (
dev-libs/libattica
app-arch/libarchive
)
qml? (
>=dev-qt/qtopengl-${QT_PV}
)
sdl? ( media-libs/sdl-mixer )
xscreensaver? ( x11-libs/libXScrnSaver )
webkit? ( >=dev-qt/qtwebkit-${QT_PV} )
"
DEPEND="${CDEPEND}
virtual/pkgconfig
doc? ( app-doc/doxygen )
"
RDEPEND="${CDEPEND}
xmpp? ( app-crypt/qca:2[gpg] )
oscar? ( app-crypt/qca:2[ssl] )
kde-frameworks/oxygen-icons
"
DOCS=( AUTHORS ChangeLog )
PATCHES=(
"${FILESDIR}/${PN}-0.3.2-astral-migrate-qt-telepaphy.patch"
"${FILESDIR}/${PN}-0.3.3-fix-build-with-gcc-6.1.0-and-above.patch"
)
S="${WORKDIR}/${PN}-${MY_PV}"
src_prepare() {
# fix automagic dep on libXScrnSaver
if ! use xscreensaver; then
sed -i -e '/XSS xscrnsaver/d' \
core/src/corelayers/idledetector/CMakeLists.txt || die
fi
# remove unwanted translations
local lang
for lang in ${LANGS}; do
use linguas_${lang} || rm -f translations/modules/*/${lang}.{po,ts}
done
cmake-utils_src_prepare
}
src_configure() {
local mycmakeargs=(
-DSYSTEM_JREEN=ON
$(cmake-utils_use_with doc DOXYGEN)
$(cmake-utils_use doc QUTIM_GENERATE_DOCS)
$(cmake-utils_use sound QUTIM_INSTALL_SOUND_THEME )
$(cmake-utils_use tools QUTIM_DEVELOPER_BUILD )
# protocols
$(cmake-utils_use telepathy ASTRAL )
$(cmake-utils_use irc )
$(cmake-utils_use xmpp JABBER )
$(cmake-utils_use mrim )
$(cmake-utils_use oscar )
$(cmake-utils_use purple QUETZAL )
$(cmake-utils_use vkontakte )
# plugins
$(cmake-utils_use webkit ADIUMWEBVIEW )
$(cmake-utils_use crypt AESCRYPTO )
$(cmake-utils_use antiboss ANTIBOSS )
$(cmake-utils_use aspell ASPELLER )
$(cmake-utils_use awn AWN )
$(cmake-utils_use espionage CONTROL ) # Also requires -DENABLE_ESPIONAGE=ON (see bellow)
$(cmake-utils_use dbus DBUSAPI )
$(cmake-utils_use dbus DBUSNOTIFICATIONS )
$(cmake-utils_use histman HISTMAN )
$(cmake-utils_use hunspell HUNSPELLER )
$(cmake-utils_use ayatana INDICATOR )
$(cmake-utils_use qml KINETICPOPUPS )
$(cmake-utils_use phonon PHONONSOUND )
$(cmake-utils_use plugman PLUGMAN )
$(cmake-utils_use debug LOGGER )
$(cmake-utils_use dbus NOWPLAYING )
$(cmake-utils_use otr OFFTHERECORD )
$(cmake-utils_use qml QMLCHAT )
$(cmake-utils_use sdl SDLSOUND )
$(cmake-utils_use_enable espionage )
-DLINUXINTEGRATION=ON
-DDOCKTILE=OFF # QtDockTile currenly supports only unity;
# consider to make it optional if it also support kde or whatever
-DUPDATER=OFF
-DCMAKE_DISABLE_FIND_PACKAGE_QtMobility=ON # required dependency last-rited
-DKDEINTEGRATION=OFF # bug 631122
)
# NOTE: Integration plugins are autodisabled:
# symbianintegration macintegration maemo5integration haikunotifications meegointegration winintegration
cmake-utils_src_configure
}
pkg_postinst () {
elog "Next qutim plugins are enabled by default:"
elog " antispam autopaster autoreply birthdayreminder blogimprover clconf"
elog " emoedit floaties formula highlighter imagepub massmessaging"
elog " oldcontactdelegate qrcicons screenshoter scriptapi unreadmessageskeeper urlpreview"
elog " weather webhistory yandexnarod"
elog "If you have strong reasons to make their build optional feel free to fill bugrepot."
if use espionage; then
ewarn "You have enabled the control (espionage) plugin. It may "
ewarn "deal negative security impact on the privacy of your client."
fi
}

View File

@@ -1 +0,0 @@
DIST knutclient-1.0.5.tar.gz 1413989 SHA256 470ab12d5a8edf67f17ed1a52a12bd1977c22c68d5b0348ba812a24dc960b126 SHA512 24e8495f1c3d31e76885bbda3f3c4459e7426271c8bc1410d3e0cb37b829ed660cd87db7c57a54d522e1788297f6d23ab617a44e8dcf7f3f48b5077a58bfc2d6 WHIRLPOOL 552d133ff96182688a5bc8be7406715470c874a40256b1b423c2d04e4ed282408507ad5d95e1ec35dc54f757291e641c6509302340e36c35648040c22047340d

View File

@@ -1,15 +0,0 @@
Removes deprecated and useless items.
--- a/knutclient.desktop
+++ b/knutclient.desktop
@@ -6,9 +6,8 @@
Comment[de]=
Comment[cs]=Klient pro UPS syst<73> NUT
Comment[es]=Cliente KDE para NUT
-Exec=knutclient -caption "%c" %i %m
+Exec=knutclient
Icon=knutclient
-MiniIcon=knutclient
Type=Application
X-DocPath=knutclient/index.html
GenericName=KNutClient

View File

@@ -1,18 +0,0 @@
Forwarded: no
Description: Fix the build with gcc 6
Author: Adrian Bunk <bunk@stusta.de>
Bug-Debian: https://bugs.debian.org/811882
--- a/src/knutprefdlg.cpp
+++ b/src/knutprefdlg.cpp
@@ -957,9 +957,9 @@
QHBoxLayout *setFontLayout = new QHBoxLayout();
QStringList fontsList;
KFontChooser::getFontList(fontsList, KFontChooser::SmoothScalableFonts);
- m_fontWidget = new KFontChooser(mainPageWidget, false, fontsList);
+ m_fontWidget = new KFontChooser(mainPageWidget, KFontChooser::NoDisplayFlags, fontsList);
setFontLayout->addWidget (m_fontWidget ,0);
topLayout->addLayout(setFontLayout);
topLayout->addStretch( 20 );

View File

@@ -1,27 +0,0 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
KDE_LINGUAS="cs de es fr it pl pt_BR ru uk"
KDE_HANDBOOK="optional"
MY_P="knc${PV//./}"
inherit kde4-base
DESCRIPTION="Visual client for UPS systems based on kdelibs-4"
HOMEPAGE="https://sites.google.com/a/prynych.cz/knutclient/"
SRC_URI="ftp://ftp.buzuluk.cz/pub/alo/knutclient/stable/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="4"
KEYWORDS="~amd64 ~x86"
IUSE="debug"
PATCHES=(
"${FILESDIR}/${P}-desktop.patch"
"${FILESDIR}/${P}-gcc6.patch"
)
DOCS=( ChangeLog )
S="${WORKDIR}/${MY_P}"

View File

@@ -1,8 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>kde@gentoo.org</email>
<name>Gentoo KDE Project</name>
</maintainer>
</pkgmetadata>

View File

@@ -326,7 +326,6 @@ app-text/poppler cairo-qt
# Need vulnerable libotr version (see bug #576914).
net-im/centerim otr
=net-im/climm-0.7.1 otr
net-im/qutim otr
# James Le Cuirot <chewi@gentoo.org> (14 Mar 2016)
# jtds:1.2 needs removing because it depends on Java 6. Unfortunately

View File

@@ -202,26 +202,6 @@ sys-devel/autoconf:2.65
sys-devel/autoconf:2.67
sys-devel/autoconf:2.68
# Andreas Sturmlechner <asturm@gentoo.org> (22 Oct 2017)
# Dead upstream, depends on dead kdelibs4/Qt4.
# Masked for removal in 30 days. Bug #634388
media-sound/kstreamripper
# Andreas Sturmlechner <asturm@gentoo.org> (22 Oct 2017)
# Dead upstream, depends on dead kdelibs4/Qt4.
# Masked for removal in 30 days. Bug #634384
kde-misc/kcollectd
# Andreas Sturmlechner <asturm@gentoo.org> (22 Oct 2017)
# Dead upstream, depends on dead kdelibs4/Qt4.
# Masked for removal in 30 days. Bug #579518
media-sound/kmid
# Andreas Sturmlechner <asturm@gentoo.org> (22 Oct 2017)
# Reverse-deps on dead, masked Qt4WebKit.
# Masked for removal in 30 days. Bug #623928
net-im/qutim
# Kent Fredric <kentnl@gentoo.org> (21 Oct 2017)
# Has not been usable since we cleaned the last Moose it worked on back
# in 2012. Removal in 30 days. Bug #634938
@@ -234,28 +214,6 @@ dev-perl/File-Stat-Moose
<x11-base/xorg-server-1.19.2
<x11-base/xorg-drivers-1.19
# Andreas Sturmlechner <asturm@gentoo.org> (21 Oct 2017)
# Dead upstream, depends on dead kdelibs4/Qt4.
# Masked for removal in 30 days. Bug #629018
sci-calculators/keurocalc
# Andreas Sturmlechner <asturm@gentoo.org> (21 Oct 2017)
# Dead upstream, depends on dead kdelibs4/Qt4.
# Masked for removal in 30 days. Bug #629018
net-misc/knutclient
# Andreas Sturmlechner <asturm@gentoo.org> (21 Oct 2017)
# Dead upstream, depends on dead kdelibs4/Qt4.
# Possible KF5-based alternative is media-sound/soundkonverter.
# Masked for removal in 30 days. Bug #634386
media-sound/konvertible
# Andreas Sturmlechner <asturm@gentoo.org> (21 Oct 2017)
# Dead upstream, depends on dead kdelibs4/Qt4, security liability.
# If at all necessary we use kde-plasma/kde-cli-tools[kdesu]
# for that purpose. Masked for removal in 30 days. Bug #634382
kde-misc/kdesudo
# Andreas K. Hüttel <dilfridge@gentoo.org> (20 Oct 2017)
# Doesn't build with glibc-2.25, doesn't build, needs a
# version bump, needs a maintainer. Bugs 604364, 599004,

View File

@@ -1,6 +1,5 @@
slotmove media-gfx/blender 2.60 0
move net-voip/telepathy-sofiasip net-voip/telepathy-rakia
slotmove kde-misc/kcollectd 0 4
slotmove kde-misc/kanyremote 0 4
move app-i18n/ibus-mozc app-i18n/mozc
move sys-auth/nss-ldapd sys-auth/nss-pam-ldapd

View File

@@ -1 +0,0 @@
DIST keurocalc-1.2.3.tgz 1809685 SHA256 f6e33fcce3b8670b00c021ee3b2b3ecd5a6f1e7422af28b19a8c18a1cd10ec88 SHA512 5b87fd1b3c53c9aa226cae5a7ad2dfe223bf6d557ea5dd4ade4dea884bb9ca03a89e642e66ae5a906d29116d58be1d7e999d271a9122355b8ac265ff33b991d6 WHIRLPOOL 7c4765ec9d98fd8f9776fde6902ecc4fd22b4838b4e4c9b58e30cba8602e87cc651294d6b818d4b12e674cb766dd04e6aa202056ffff159e647b994eb33d832e

View File

@@ -1,31 +0,0 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
KDE_LINGUAS="bg bs ca ca@valencia cs da de el en_GB es et fi fr ga gl hu it
ja ko nb nds nl pl pt pt_BR ru sk sl sr sr@Latn sv tr ug uk zh_TW"
KDE_HANDBOOK="optional"
inherit kde4-base
DESCRIPTION="A universal currency converter and calculator"
HOMEPAGE="http://opensource.bureau-cornavin.com/keurocalc/index.html"
SRC_URI="http://opensource.bureau-cornavin.com/keurocalc/sources/${P}.tgz"
LICENSE="GPL-2+ FDL-1.2"
SLOT="4"
KEYWORDS="amd64 x86"
IUSE="debug"
DOCS=( AUTHORS TODO )
src_prepare() {
# bug 500560
sed -e "s/PO_FILES //" -i po/*/CMakeLists.txt || die
# bug 518070
sed -e "/cmake_minimum_required/a cmake_policy(SET CMP0002 OLD)" \
-i CMakeLists.txt || die
kde4-base_src_prepare
}

View File

@@ -1,8 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>kde@gentoo.org</email>
<name>Gentoo KDE Project</name>
</maintainer>
</pkgmetadata>