summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author0xd34df00d <0xd34df00d@gmail.com>2017-02-05 01:33:58 +0100
committerDavid Seifert <soap@gentoo.org>2017-02-05 10:39:01 +0100
commita45ae1e0e667875770581b71e703434aab2fd358 (patch)
tree1ac57ccdf1bd7c7af56ca5ee7dceaf684ccb363a /app-leechcraft/lc-core
parentdev-libs/libuv: ppc64 stable (bug 607222). (diff)
downloadgentoo-a45ae1e0e667875770581b71e703434aab2fd358.tar.gz
gentoo-a45ae1e0e667875770581b71e703434aab2fd358.tar.bz2
gentoo-a45ae1e0e667875770581b71e703434aab2fd358.zip
app-leechcraft: removed ancient versions 0.6.60, 0.6.65 and 0.6.70.
Closes: https://github.com/gentoo/gentoo/pull/3818
Diffstat (limited to 'app-leechcraft/lc-core')
-rw-r--r--app-leechcraft/lc-core/Manifest3
-rw-r--r--app-leechcraft/lc-core/files/lc-core-0.6.65-dbus-optional.patch87
-rw-r--r--app-leechcraft/lc-core/files/lc-core-0.6.65-gcc-4.9.patch48
-rw-r--r--app-leechcraft/lc-core/files/lc-core-0.6.70-c++11-direct-list-initialization.patch35
-rw-r--r--app-leechcraft/lc-core/lc-core-0.6.60.ebuild53
-rw-r--r--app-leechcraft/lc-core/lc-core-0.6.65.ebuild58
-rw-r--r--app-leechcraft/lc-core/lc-core-0.6.70.ebuild58
7 files changed, 0 insertions, 342 deletions
diff --git a/app-leechcraft/lc-core/Manifest b/app-leechcraft/lc-core/Manifest
deleted file mode 100644
index 1911f838b33a..000000000000
--- a/app-leechcraft/lc-core/Manifest
+++ /dev/null
@@ -1,3 +0,0 @@
-DIST leechcraft-0.6.60.tar.xz 5089252 SHA256 669c2325235c3c49dfc9a30d38c1ad08c0a6abf1ebbf2c8d33eca27e976e1b6d SHA512 0bac75f96bfc43c692e8b61ba5e9b6b82d535a78bd310966c36579666feb8b87217a9d74cfe792fa32b57b9b04e158239acbf2422014735d2316cbda2d8b39ec WHIRLPOOL f3056faab0006830afbcf5f3448094e530c908d432cebec731f305f34347e514db55416a911674c28445a3cd4e542136fd053ee5e444b3cf93e086dc9e88428c
-DIST leechcraft-0.6.65.tar.xz 5067580 SHA256 b821fb8716b3ba04862bbb358a738609ead84cd9c86b569fe31c712b48c2a7fd SHA512 94e3cfa42bea572cb2feeaf4c7153c8d7e08e0597d447db5033b72222cea67370e8948d0dd0e2b89585583a88b4ee3df7b32d72dcd624d383e79b9472ceffe30 WHIRLPOOL bc589f46c89351328e25e6e32febdcba8ead639a8d1daf18df7352372d66fb8f8e7e5bbef02d49b6a00a7f5ffa15d66699b79cc73f64ea1bf8b59949fcd81b8a
-DIST leechcraft-0.6.70.tar.xz 5204940 SHA256 3e7f51da0b7eec6df11471ada409d752754f3badc388b8f0adab3f056fabcd45 SHA512 fedf0467e39bd512c937b25f5da62af2be7908831169e1d82d10af43b7c164be2658138663578d7658c3692d5269dd3df9e391744561443f49771edd063ba408 WHIRLPOOL a0aef0bdc11d4b3a3680a055671208db0528bb4744930a0fecab6d1fbf99cc87f4fd8483e98e93357a4c0dda1f3edc1a20a9a725b28ea9003c564469531a2d37
diff --git a/app-leechcraft/lc-core/files/lc-core-0.6.65-dbus-optional.patch b/app-leechcraft/lc-core/files/lc-core-0.6.65-dbus-optional.patch
deleted file mode 100644
index 6d784608b3bc..000000000000
--- a/app-leechcraft/lc-core/files/lc-core-0.6.65-dbus-optional.patch
+++ /dev/null
@@ -1,87 +0,0 @@
-commit 2e221a116dacf7541af8bfe6110856a70b8a8f70
-Author: 0xd34df00d <0xd34df00d@gmail.com>
-Date: Mon Jun 16 14:54:15 2014 +0400
-
- [Core] DBus loaders made optional.
-
-diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt
-index c138fd5..dc2b8d6 100644
---- a/src/core/CMakeLists.txt
-+++ b/src/core/CMakeLists.txt
-@@ -5,8 +5,10 @@ include_directories (${CMAKE_CURRENT_BINARY_DIR}
- ${Boost_INCLUDE_DIR}
- )
-
-+option (WITH_DBUS_LOADERS "Build D-Bus loaders on UNIX" OFF)
-+
- if (NOT USE_QT5)
-- if (NOT WIN32)
-+ if (WITH_DBUS_LOADERS)
- set (QT_USE_QTDBUS TRUE)
- endif ()
- set (QT_USE_QTNETWORK TRUE)
-@@ -101,7 +103,7 @@ set (SRCS
- loaders/sopluginloader.cpp
- )
-
--if (UNIX AND NOT APPLE)
-+if (WITH_DBUS_LOADERS)
- set (SRCS
- ${SRCS}
- loaders/dbuspluginloader.cpp
-@@ -179,6 +181,6 @@ if (USE_QT5)
- QT5_USE_MODULES (leechcraft Gui Network Widgets Xml Sql Script Concurrent DBus Svg)
- endif ()
-
--if (UNIX AND NOT APPLE)
-+if (WITH_DBUS_LOADERS)
- add_subdirectory (loaders/dbus)
- endif ()
-commit 4017753193a769a8bf7de6a54ec2c66954401e2f
-Author: 0xd34df00d <0xd34df00d@gmail.com>
-Date: Mon Jun 16 17:15:57 2014 +0400
-
- [Core] Fixed linking without WITH_DBUS_LOADERS.
-
-diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt
-index dc2b8d6..5f593ea 100644
---- a/src/core/CMakeLists.txt
-+++ b/src/core/CMakeLists.txt
-@@ -7,6 +7,10 @@ include_directories (${CMAKE_CURRENT_BINARY_DIR}
-
- option (WITH_DBUS_LOADERS "Build D-Bus loaders on UNIX" OFF)
-
-+if (WITH_DBUS_LOADERS)
-+ add_definitions (-DWITH_DBUS_LOADERS)
-+endif ()
-+
- if (NOT USE_QT5)
- if (WITH_DBUS_LOADERS)
- set (QT_USE_QTDBUS TRUE)
-diff --git a/src/core/pluginmanager.cpp b/src/core/pluginmanager.cpp
-index e769715..4cb479a 100644
---- a/src/core/pluginmanager.cpp
-+++ b/src/core/pluginmanager.cpp
-@@ -56,9 +56,11 @@
- #include "shortcutmanager.h"
- #include "application.h"
- #include "loaders/sopluginloader.h"
--#ifdef Q_OS_LINUX
-- #include "loaders/dbuspluginloader.h"
-+
-+#ifdef WITH_DBUS_LOADERS
-+#include "loaders/dbuspluginloader.h"
- #endif
-+
- #include "settingstab.h"
-
- namespace LeechCraft
-@@ -985,7 +987,7 @@ namespace LeechCraft
-
- Loaders::IPluginLoader_ptr PluginManager::MakeLoader (const QString& filename)
- {
--#ifndef Q_OS_LINUX
-+#ifndef WITH_DBUS_LOADERS
- return Loaders::IPluginLoader_ptr (new Loaders::SOPluginLoader (filename));
- #else
- if (DBusMode_)
diff --git a/app-leechcraft/lc-core/files/lc-core-0.6.65-gcc-4.9.patch b/app-leechcraft/lc-core/files/lc-core-0.6.65-gcc-4.9.patch
deleted file mode 100644
index 1ea3cc410c67..000000000000
--- a/app-leechcraft/lc-core/files/lc-core-0.6.65-gcc-4.9.patch
+++ /dev/null
@@ -1,48 +0,0 @@
-From 2db7cf510491e3ef2f25341b35b3705acf824bc3 Mon Sep 17 00:00:00 2001
-From: 0xd34df00d <0xd34df00d@gmail.com>
-Date: Thu, 12 Jun 2014 23:38:39 +0400
-Subject: [PATCH] [Interfaces] Added missing include.
-
----
- src/interfaces/itexteditor.h | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/src/interfaces/itexteditor.h b/src/interfaces/itexteditor.h
-index 059b936..0004bc5 100644
---- a/src/interfaces/itexteditor.h
-+++ b/src/interfaces/itexteditor.h
-@@ -29,6 +29,7 @@
-
- #pragma once
-
-+#include <functional>
- #include <QPair>
- #include <QList>
- #include <QRegExp>
---
-1.9.3
-
-From 317cbe27a95cc6536f163c0c833eeb1b4fb3f53b Mon Sep 17 00:00:00 2001
-From: 0xd34df00d <0xd34df00d@gmail.com>
-Date: Thu, 12 Jun 2014 23:32:15 +0400
-Subject: [PATCH] [Util] Added a missing include.
-
----
- src/util/qml/plotitem.h | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/src/util/qml/plotitem.h b/src/util/qml/plotitem.h
-index 194c69c..8185851 100644
---- a/src/util/qml/plotitem.h
-+++ b/src/util/qml/plotitem.h
-@@ -29,6 +29,7 @@
-
- #pragma once
-
-+#include <functional>
- #include <QDeclarativeItem>
- #include "qmlconfig.h"
-
---
-1.9.3
-
diff --git a/app-leechcraft/lc-core/files/lc-core-0.6.70-c++11-direct-list-initialization.patch b/app-leechcraft/lc-core/files/lc-core-0.6.70-c++11-direct-list-initialization.patch
deleted file mode 100644
index b5b670060117..000000000000
--- a/app-leechcraft/lc-core/files/lc-core-0.6.70-c++11-direct-list-initialization.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-GCC 5.1 and upwards are more strict with direct initialization:
-* /var/tmp/portage/app-leechcraft/lc-core-0.6.70/work/leechcraft-0.6.70/src/util/network/addresses.cpp:46:3: error: direct-list-* initialization of ‘auto’ requires exactly one element [-fpermissive]
-* };
-See also:
-https://bugs.gentoo.org/show_bug.cgi?id=574030
-
---- leechcraft-0.6.70/src/util/network/addresses.cpp
-+++ leechcraft-0.6.70/src/util/network/addresses.cpp
-@@ -38,7 +38,7 @@
- AddrList_t GetLocalAddresses (int defaultPort)
- {
- AddrList_t defaultAddrs;
-- const auto locals
-+ const auto locals =
- {
- QHostAddress::parseSubnet ("10.0.0.0/8"),
- QHostAddress::parseSubnet ("172.16.0.0/12"),
---- leechcraft-0.6.70/src/util/xdg/xdg.cpp
-+++ leechcraft-0.6.70/src/util/xdg/xdg.cpp
-@@ -44,13 +44,13 @@
-
- QPixmap GetAppPixmap (const QString& name)
- {
-- const auto prefixes
-+ const auto prefixes =
- {
- "/usr/share/pixmaps/",
- "/usr/local/share/pixmaps/"
- };
-
-- const auto sizes { "192", "128", "96", "72", "64", "48", "36", "32" };
-+ const auto sizes = { "192", "128", "96", "72", "64", "48", "36", "32" };
- const QStringList themes
- {
- "/usr/local/share/icons/hicolor/",
diff --git a/app-leechcraft/lc-core/lc-core-0.6.60.ebuild b/app-leechcraft/lc-core/lc-core-0.6.60.ebuild
deleted file mode 100644
index 4f1323dff0ab..000000000000
--- a/app-leechcraft/lc-core/lc-core-0.6.60.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-EGIT_REPO_URI="git://github.com/0xd34df00d/leechcraft.git"
-EGIT_PROJECT="leechcraft-${PV}"
-
-inherit eutils confutils leechcraft
-
-DESCRIPTION="Core of LeechCraft, the modular network client"
-
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="debug doc +sqlite postgres +qwt"
-
-COMMON_DEPEND=">=dev-libs/boost-1.46
- dev-qt/qtcore:4
- dev-qt/qtdbus:4
- dev-qt/qtdeclarative:4
- dev-qt/qtgui:4
- dev-qt/qtscript:4
- dev-qt/qtsql:4[postgres?,sqlite?]
- dev-qt/qtwebkit:4
- qwt? ( x11-libs/qwt:6 )"
-DEPEND="${COMMON_DEPEND}
- doc? ( app-doc/doxygen )"
-RDEPEND="${COMMON_DEPEND}
- dev-qt/qtsvg:4
- || (
- kde-frameworks/oxygen-icons
- x11-themes/kfaenza
- )"
-
-REQUIRED_USE="|| ( postgres sqlite )"
-
-src_configure() {
- local mycmakeargs=(
- -DWITH_PLUGINS=False
- $(cmake-utils_use_with doc DOCS)
- $(cmake-utils_use_with qwt QWT)
- )
- if [[ ${PV} != 9999 ]]; then
- mycmakeargs+=( -DLEECHCRAFT_VERSION=${PV} )
- fi
- cmake-utils_src_configure
-}
-
-src_install() {
- cmake-utils_src_install
- use doc && dohtml -r "${CMAKE_BUILD_DIR}/${PN#lc-}"/out/html/*
-}
diff --git a/app-leechcraft/lc-core/lc-core-0.6.65.ebuild b/app-leechcraft/lc-core/lc-core-0.6.65.ebuild
deleted file mode 100644
index 1df615c3fa36..000000000000
--- a/app-leechcraft/lc-core/lc-core-0.6.65.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-EGIT_REPO_URI="git://github.com/0xd34df00d/leechcraft.git"
-EGIT_PROJECT="leechcraft-${PV}"
-
-inherit eutils confutils leechcraft
-
-DESCRIPTION="Core of LeechCraft, the modular network client"
-
-SLOT="0"
-KEYWORDS=" ~amd64 ~x86"
-IUSE="debug doc +sqlite postgres +qwt"
-
-COMMON_DEPEND=">=dev-libs/boost-1.46
- dev-qt/qtcore:4
- dev-qt/qtdbus:4
- dev-qt/qtdeclarative:4
- dev-qt/qtgui:4
- dev-qt/qtscript:4
- dev-qt/qtsql:4[postgres?,sqlite?]
- dev-qt/qtwebkit:4
- qwt? ( x11-libs/qwt:6 )"
-DEPEND="${COMMON_DEPEND}
- doc? ( app-doc/doxygen )"
-RDEPEND="${COMMON_DEPEND}
- dev-qt/qtsvg:4
- || (
- kde-frameworks/oxygen-icons
- x11-themes/kfaenza
- )"
-
-REQUIRED_USE="|| ( postgres sqlite )"
-
-PATCHES=(
- "${FILESDIR}"/${P}-dbus-optional.patch
- "${FILESDIR}"/${P}-gcc-4.9.patch
-)
-
-src_configure() {
- local mycmakeargs=(
- -DWITH_PLUGINS=False
- $(cmake-utils_use_with doc DOCS)
- $(cmake-utils_use_with qwt QWT)
- )
- if [[ ${PV} != 9999 ]]; then
- mycmakeargs+=( -DLEECHCRAFT_VERSION=${PV} )
- fi
- cmake-utils_src_configure
-}
-
-src_install() {
- cmake-utils_src_install
- use doc && dohtml -r "${CMAKE_BUILD_DIR}/${PN#lc-}"/out/html/*
-}
diff --git a/app-leechcraft/lc-core/lc-core-0.6.70.ebuild b/app-leechcraft/lc-core/lc-core-0.6.70.ebuild
deleted file mode 100644
index 2d87d607853c..000000000000
--- a/app-leechcraft/lc-core/lc-core-0.6.70.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-EGIT_REPO_URI="git://github.com/0xd34df00d/leechcraft.git"
-EGIT_PROJECT="leechcraft-${PV}"
-
-inherit eutils confutils leechcraft
-
-DESCRIPTION="Core of LeechCraft, the modular network client"
-
-SLOT="0"
-KEYWORDS=" amd64 x86"
-IUSE="debug doc +sqlite postgres +qwt"
-
-COMMON_DEPEND=">=dev-libs/boost-1.46:=[threads]
- dev-qt/qtcore:4
- dev-qt/qtdbus:4
- dev-qt/qtdeclarative:4
- dev-qt/qtgui:4
- dev-qt/qtscript:4
- dev-qt/qtsql:4[postgres?,sqlite?]
- dev-qt/qtwebkit:4
- dev-qt/qtdbus:4
- qwt? ( x11-libs/qwt:6 )"
-DEPEND="${COMMON_DEPEND}
- doc? ( app-doc/doxygen )"
-RDEPEND="${COMMON_DEPEND}
- dev-qt/qtsvg:4
- || (
- kde-frameworks/oxygen-icons
- x11-themes/kfaenza
- )"
-
-REQUIRED_USE="|| ( postgres sqlite )"
-
-PATCHES=(
- "${FILESDIR}/${P}-c++11-direct-list-initialization.patch"
-)
-
-src_configure() {
- local mycmakeargs=(
- -DWITH_PLUGINS=False
- $(cmake-utils_use_with doc DOCS)
- $(cmake-utils_use_with qwt QWT)
- )
- if [[ ${PV} != 9999 ]]; then
- mycmakeargs+=( -DLEECHCRAFT_VERSION=${PV} )
- fi
- cmake-utils_src_configure
-}
-
-src_install() {
- cmake-utils_src_install
- use doc && dohtml -r "${CMAKE_BUILD_DIR}/${PN#lc-}"/out/html/*
-}