summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Palimaka <kensington@gentoo.org>2016-08-25 06:38:45 +1000
committerMichael Palimaka <kensington@gentoo.org>2016-08-25 20:46:59 +1000
commit37150fa963eb3aa155eb9e94c3d6b233154ca1de (patch)
tree8bce549e96d6e85c58e00d1b3cbd303869107118 /kde-apps/kstars
parentmedia-libs/libart_lgpl: eapi bump, fix src_install phase (and, then, really d... (diff)
downloadgentoo-37150fa963eb3aa155eb9e94c3d6b233154ca1de.tar.gz
gentoo-37150fa963eb3aa155eb9e94c3d6b233154ca1de.tar.bz2
gentoo-37150fa963eb3aa155eb9e94c3d6b233154ca1de.zip
kde-apps: remove 15.12.3
Diffstat (limited to 'kde-apps/kstars')
-rw-r--r--kde-apps/kstars/Manifest1
-rw-r--r--kde-apps/kstars/files/kstars-15.12.0-unused-kf5-deps.patch79
-rw-r--r--kde-apps/kstars/files/kstars-15.12.0-unused-qt-deps.patch60
-rw-r--r--kde-apps/kstars/kstars-15.12.3.ebuild68
4 files changed, 0 insertions, 208 deletions
diff --git a/kde-apps/kstars/Manifest b/kde-apps/kstars/Manifest
index e33da15069b2..de65e11e1e97 100644
--- a/kde-apps/kstars/Manifest
+++ b/kde-apps/kstars/Manifest
@@ -1,2 +1 @@
-DIST kstars-15.12.3.tar.xz 17064136 SHA256 b944eb9799250596990e5a0e3fcefe4c466f987980404bae09bb37fed70e43cd SHA512 a10326777fb4dc8565b4f1ae68cfe6c8f20b74e392eaabb72c67cc8afa8318e96de8a6685f04727e5d9db6d2dee9e35024a7d09e9ec7190192b035a1e0c406d6 WHIRLPOOL 71782f04b53dd0590b141f620b9c84d611fcf921ad9a37168c129722d8bc707ebe280d64b7184123a4e169eff2bbdb0c9f2195f9588ad12d119a1313fa1c8012
DIST kstars-16.04.3.tar.xz 17124120 SHA256 c710a87b7cfb13d8fc5eaec9d91345c1988b20d852b827c1a2a97faa219a2f95 SHA512 96eb9318951d10ffc9471636a60af713097ee9e5b06e68208646f304c802614eb9ebeda53146f1dbfc3a7e35fea3e06c13702ec64f25f9e8e9ee75721fe6c57f WHIRLPOOL 13c77699bf03a8c4d6697edcddf0f26e3200c77ecd7415f10aadbc539497bd906d79e55ef56409af20bf0e5670cf66051369afb2e69e56c4c1de0d382d4f6d26
diff --git a/kde-apps/kstars/files/kstars-15.12.0-unused-kf5-deps.patch b/kde-apps/kstars/files/kstars-15.12.0-unused-kf5-deps.patch
deleted file mode 100644
index 0623845a20f1..000000000000
--- a/kde-apps/kstars/files/kstars-15.12.0-unused-kf5-deps.patch
+++ /dev/null
@@ -1,79 +0,0 @@
-From: Akarsh Simha <akarsh@kde.org>
-Date: Thu, 31 Dec 2015 10:40:37 +0000
-Subject: [NEEDS TESTING] Remove "fake" KF5 dependencies from CMakeLists.txt
-X-Git-Url: http://quickgit.kde.org/?p=kstars.git&a=commitdiff&h=14ca537e2676267bed73a40f0b8efd94d7cbc761
----
-[NEEDS TESTING] Remove "fake" KF5 dependencies from CMakeLists.txt
-
-Removed the following KF5 frameworks: JobWidgets, DBusAddons, TextEditor
-
-Moved the Notifications KF5 framework as required only if INDI is
-present.
-
-Builds both with and without INDI (but not in a completely thorough
-test) on my setup (ArchLinux)
-
-Jasem: please double check that it builds correctly for you too
-with/without INDI.
-
-CCMAIL: mutlaqja@ikarustech.com
----
-
-
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -32,16 +32,13 @@
- GuiAddons
- WidgetsAddons
- NewStuff
-- DBusAddons
-+# DBusAddons
- I18n
- Init
-- JobWidgets
- KIO
- XmlGui
- Plotting
-- TextEditor
- IconThemes
-- Notifications
- )
-
- find_package(Eigen3 REQUIRED)
-@@ -61,6 +58,8 @@
- find_package(INDI 1.2.0)
- #FIXME is there a better way to do this?
- if (INDI_FOUND)
-+#FIXME is the following the right way of doing this?
-+find_package(KF5 REQUIRED COMPONENTS Notifications)
- SET(HAVE_INDI 1)
- else(INDI_FOUND)
- SET(HAVE_INDI 0)
-
---- a/kstars/CMakeLists.txt
-+++ b/kstars/CMakeLists.txt
-@@ -541,10 +541,9 @@
- KF5::KIOFileWidgets
- KF5::WidgetsAddons
- KF5::Plotting
-- KF5::TextEditor
-- KF5::DBusAddons
-+# KF5::TextEditor
-+# KF5::DBusAddons
- KF5::IconThemes
-- KF5::Notifications
- Qt5::Gui
- Qt5::PrintSupport
- Qt5::Sql
-@@ -561,7 +560,9 @@
- target_link_libraries(KStarsLib ${CFITSIO_LIBRARIES})
- endif (CFITSIO_FOUND)
- if (INDI_FOUND)
-- target_link_libraries(KStarsLib ${CMAKE_THREAD_LIBS_INIT} ${INDI_LIBRARIES} ${INDI_CLIENT_LIBRARIES} z)
-+ target_link_libraries(KStarsLib ${CMAKE_THREAD_LIBS_INIT}
-+ ${INDI_LIBRARIES} ${INDI_CLIENT_LIBRARIES}
-+ KF5::Notifications z)
- endif (INDI_FOUND)
- if (WCSLIB_FOUND)
- target_link_libraries(KStarsLib ${WCSLIB_LIBRARIES})
-
diff --git a/kde-apps/kstars/files/kstars-15.12.0-unused-qt-deps.patch b/kde-apps/kstars/files/kstars-15.12.0-unused-qt-deps.patch
deleted file mode 100644
index f819ec40decc..000000000000
--- a/kde-apps/kstars/files/kstars-15.12.0-unused-qt-deps.patch
+++ /dev/null
@@ -1,60 +0,0 @@
-From: Jasem Mutlaq <mutlaqja@ikarustech.com>
-Date: Wed, 30 Dec 2015 17:02:20 +0000
-Subject: Removing unncessary dependencies on Qt modules for Test OpenGL QML QtQuick QtMultimedia. We should re-enable QML/QtQuick if someone manager to migrate what is interesting tonight tool
-X-Git-Url: http://quickgit.kde.org/?p=kstars.git&a=commitdiff&h=2f09f40aca053048ffb65621e3c18780cdc5cbe3
----
-Removing unncessary dependencies on Qt modules for Test OpenGL QML QtQuick QtMultimedia. We should re-enable QML/QtQuick if someone manager to migrate what is interesting tonight tool
----
-
-
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -16,7 +16,8 @@
- set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH})
- set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules" ${CMAKE_MODULE_PATH})
-
--find_package(Qt5 5.2 REQUIRED COMPONENTS Gui Qml Quick Xml Sql Svg OpenGL PrintSupport Multimedia Test)
-+#find_package(Qt5 5.2 REQUIRED COMPONENTS Gui Qml Quick Xml Sql Svg PrintSupport)
-+find_package(Qt5 5.2 REQUIRED COMPONENTS Gui Xml Sql Svg PrintSupport)
- include(KDEInstallDirs)
- include(KDECompilerSettings)
- include(KDECMakeSettings)
---- a/kstars/CMakeLists.txt
-+++ b/kstars/CMakeLists.txt
-@@ -549,9 +549,8 @@
- Qt5::PrintSupport
- Qt5::Sql
- Qt5::Svg
-- Qt5::Multimedia
-- Qt5::Qml
-- Qt5::Quick
-+ #Qt5::Qml
-+ #Qt5::Quick
- ${ZLIB_LIBRARIES}
- )
-
---- a/kstars/kstars.cpp
-+++ b/kstars/kstars.cpp
-@@ -39,7 +39,7 @@
- #include "dialogs/finddialog.h"
- #include "dialogs/exportimagedialog.h"
- #include "observinglist.h"
--#include "whatsinteresting/wiview.h"
-+//#include "whatsinteresting/wiview.h"
-
- #include "kstarsadaptor.h"
-
---- a/kstars/kstarsactions.cpp
-+++ b/kstars/kstarsactions.cpp
-@@ -30,8 +30,8 @@
- #include <QDockWidget>
- #include <QPointer>
- #include <QInputDialog>
--#include <QQuickWindow>
--#include <QQuickView>
-+//#include <QQuickWindow>
-+//#include <QQuickView>
- #include <QDebug>
- #include <QAction>
- #include <QFileDialog>
-
diff --git a/kde-apps/kstars/kstars-15.12.3.ebuild b/kde-apps/kstars/kstars-15.12.3.ebuild
deleted file mode 100644
index b4c93105ed3b..000000000000
--- a/kde-apps/kstars/kstars-15.12.3.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-KDE_HANDBOOK="forceoptional"
-KDE_PUNT_BOGUS_DEPS="true"
-PYTHON_COMPAT=( python2_7 )
-inherit kde5 python-single-r1
-
-DESCRIPTION="Desktop Planetarium"
-HOMEPAGE="https://www.kde.org/applications/education/kstars https://edu.kde.org/kstars"
-KEYWORDS="amd64 x86"
-IUSE="indi wcs xplanet"
-
-# TODO: AstrometryNet requires new package
-# FIXME: doesn't build without sci-libs/cfitsio as of 15.04.0
-COMMON_DEPEND="
- $(add_frameworks_dep kconfig)
- $(add_frameworks_dep kconfigwidgets)
- $(add_frameworks_dep kcoreaddons)
- $(add_frameworks_dep kguiaddons)
- $(add_frameworks_dep ki18n)
- $(add_frameworks_dep kiconthemes)
- $(add_frameworks_dep kinit)
- $(add_frameworks_dep kio)
- $(add_frameworks_dep knewstuff)
- $(add_frameworks_dep kplotting)
- $(add_frameworks_dep kwidgetsaddons)
- $(add_frameworks_dep kxmlgui)
- $(add_qt_dep qtdbus)
- $(add_qt_dep qtgui)
- $(add_qt_dep qtprintsupport)
- $(add_qt_dep qtsql)
- $(add_qt_dep qtsvg)
- $(add_qt_dep qtwidgets)
- $(add_qt_dep qtxml)
- >=sci-libs/cfitsio-0.390
- sys-libs/zlib
- indi? (
- $(add_frameworks_dep knotifications)
- >=sci-libs/indilib-1.0.0
- )
- wcs? ( sci-astronomy/wcslib )
- xplanet? ( x11-misc/xplanet )
-"
-DEPEND="${COMMON_DEPEND}
- dev-cpp/eigen:3
-"
-RDEPEND="${COMMON_DEPEND}
- ${PYTHON_DEPS}
-"
-
-PATCHES=(
- "${FILESDIR}/${PN}-15.12.0-unused-qt-deps.patch"
- "${FILESDIR}/${PN}-15.12.0-unused-kf5-deps.patch"
-)
-
-src_configure() {
- local mycmakeargs=(
- $(cmake-utils_use_find_package indi INDI)
- $(cmake-utils_use_find_package wcs WCSLIB)
- $(cmake-utils_use_find_package xplanet Xplanet)
- )
-
- kde5_src_configure
-}