From: "Michael Palimaka" <kensington@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] proj/kde:master commit in: dev-util/kdevelop/files/, dev-util/kdevelop/
Date: Wed, 31 Aug 2016 14:30:17 +0000 (UTC) [thread overview]
Message-ID: <1472653807.cae4c2337cff0a927842a57f1b6bee520fd87a9c.kensington@gentoo> (raw)
commit: cae4c2337cff0a927842a57f1b6bee520fd87a9c
Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 31 14:29:29 2016 +0000
Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Wed Aug 31 14:30:07 2016 +0000
URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=cae4c233
dev-util/kdevelop: moved to main tree
Package-Manager: portage-2.3.0
.../kdevelop/files/kdevelop-5.0.0-fix-cpp.patch | 47 ----------
dev-util/kdevelop/kdevelop-5.0.0.ebuild | 99 ----------------------
2 files changed, 146 deletions(-)
diff --git a/dev-util/kdevelop/files/kdevelop-5.0.0-fix-cpp.patch b/dev-util/kdevelop/files/kdevelop-5.0.0-fix-cpp.patch
deleted file mode 100644
index 9b15fe9..0000000
--- a/dev-util/kdevelop/files/kdevelop-5.0.0-fix-cpp.patch
+++ /dev/null
@@ -1,47 +0,0 @@
-From: Milian Wolff <mail@milianw.de>
-Date: Mon, 22 Aug 2016 10:47:26 +0000
-Subject: Fix compile
-X-Git-Url: http://quickgit.kde.org/?p=kdevelop.git&a=commitdiff&h=f4b5b7538be64328cf8462ee438caaac6c0907aa
----
-Fix compile
-
-BUG: 367659
----
-
-
---- a/languages/cpp/cppduchain/cppducontext.cpp
-+++ b/languages/cpp/cppduchain/cppducontext.cpp
-@@ -39,7 +39,8 @@
- REGISTER_DUCHAIN_ITEM_WITH_DATA(CppNormalDUContext, DUContextData);
-
- template<>
--QWidget* CppDUContext<TopDUContext>::createNavigationWidget( Declaration* decl, TopDUContext* topContext, const QString& htmlPrefix, const QString& htmlSuffix ) const {
-+QWidget* CppDUContext<TopDUContext>::createNavigationWidget(Declaration* decl, TopDUContext* topContext, const QString& htmlPrefix, const QString& htmlSuffix,
-+ AbstractNavigationWidget::DisplayHints /*hints*/) const {
- if( decl == 0 ) {
- Path path( url().str() );
- IncludeItem i;
-@@ -55,7 +56,8 @@
- }
-
- template<>
--QWidget* CppDUContext<DUContext>::createNavigationWidget(Declaration* decl, TopDUContext* topContext, const QString& htmlPrefix, const QString& htmlSuffix) const {
-+QWidget* CppDUContext<DUContext>::createNavigationWidget(Declaration* decl, TopDUContext* topContext, const QString& htmlPrefix, const QString& htmlSuffix,
-+ AbstractNavigationWidget::DisplayHints /*hints*/) const {
- if( decl == 0 ) {
- if( owner() )
- return new NavigationWidget( DeclarationPointer(owner()), TopDUContextPointer(topContext ? topContext : this->topContext()), htmlPrefix, htmlSuffix );
-
---- a/languages/cpp/cppduchain/cppducontext.h
-+++ b/languages/cpp/cppduchain/cppducontext.h
-@@ -652,7 +652,8 @@
- return instantiateDeclarationAndContext( surroundingContext, source, this, info, 0, 0 );
- }
-
-- virtual QWidget* createNavigationWidget(Declaration* decl, TopDUContext* topContext, const QString& htmlPrefix, const QString& htmlSuffix) const override;
-+ virtual QWidget* createNavigationWidget(Declaration* decl, TopDUContext* topContext, const QString& htmlPrefix, const QString& htmlSuffix,
-+ KDevelop::AbstractNavigationWidget::DisplayHints hints = KDevelop::AbstractNavigationWidget::NoHints) const override;
-
- enum {
- Identity = BaseContext::Identity + 50
-
diff --git a/dev-util/kdevelop/kdevelop-5.0.0.ebuild b/dev-util/kdevelop/kdevelop-5.0.0.ebuild
deleted file mode 100644
index c533824..0000000
--- a/dev-util/kdevelop/kdevelop-5.0.0.ebuild
+++ /dev/null
@@ -1,99 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-EGIT_BRANCH="5.0"
-KDE_HANDBOOK="forceoptional"
-KDE_TEST="forceoptional-recursive"
-VIRTUALX_REQUIRED="test"
-inherit kde5
-
-DESCRIPTION="Integrated Development Environment, supporting KF5/Qt, C/C++ and much more"
-LICENSE="GPL-2 LGPL-2"
-IUSE="+cxx +cmake +gdbui +ninja okteta +plasma +qmake qthelp"
-[[ ${KDE_BUILD_TYPE} = release ]] && KEYWORDS="~amd64 ~x86"
-
-COMMON_DEPEND="
- $(add_frameworks_dep kcmutils)
- $(add_frameworks_dep kcompletion)
- $(add_frameworks_dep kconfig)
- $(add_frameworks_dep kconfigwidgets)
- $(add_frameworks_dep kcoreaddons)
- $(add_frameworks_dep kcrash)
- $(add_frameworks_dep kdeclarative)
- $(add_frameworks_dep ki18n)
- $(add_frameworks_dep kiconthemes)
- $(add_frameworks_dep kio)
- $(add_frameworks_dep kitemmodels)
- $(add_frameworks_dep kitemviews)
- $(add_frameworks_dep kjobwidgets)
- $(add_frameworks_dep knewstuff)
- $(add_frameworks_dep knotifyconfig)
- $(add_frameworks_dep kparts)
- $(add_frameworks_dep kservice)
- $(add_frameworks_dep ktexteditor)
- $(add_frameworks_dep kwidgetsaddons)
- $(add_frameworks_dep kwindowsystem)
- $(add_frameworks_dep kxmlgui)
- $(add_frameworks_dep threadweaver)
- $(add_qt_dep qtdbus)
- $(add_qt_dep qtdeclarative)
- $(add_qt_dep qtgui)
- $(add_qt_dep qtnetwork)
- $(add_qt_dep qtwebkit)
- $(add_qt_dep qtwidgets)
- $(add_qt_dep qtxml)
- >=dev-util/kdevplatform-${PV}:5
- x11-misc/shared-mime-info
- cxx? ( >=sys-devel/clang-3.5.0 )
- gdbui? ( $(add_plasma_dep libksysguard) )
- okteta? ( $(add_kdeapps_dep okteta) )
- plasma? (
- $(add_frameworks_dep krunner)
- $(add_frameworks_dep plasma)
- )
- qmake? ( dev-util/kdevelop-pg-qt:5 )
- qthelp? ( $(add_qt_dep qthelp) )
-"
-DEPEND="${COMMON_DEPEND}
- $(add_qt_dep qtconcurrent)
-"
-RDEPEND="${COMMON_DEPEND}
- $(add_kdeapps_dep kapptemplate)
- $(add_kdeapps_dep kio-extras)
- >=sys-devel/gdb-7.0[python]
- ninja? ( dev-util/ninja )
- !dev-util/kdevelop:4
- !dev-util/kdevelop-clang
- !dev-util/kdevelop-qmake
- !dev-util/kdevelop-qmljs
- !<kde-apps/kapptemplate-16.04.0
-"
-
-RESTRICT+=" test"
-# see bug 366471
-
-PATCHES=(
- "${FILESDIR}/${PN}-ninja-optional.patch"
- "${FILESDIR}/${P}-fix-cpp.patch"
-)
-
-src_configure() {
- local mycmakeargs=(
- -DLEGACY_CPP_SUPPORT=$(usex !cxx)
- -DBUILD_cpp=OFF
- -DBUILD_cmake=$(usex cmake)
- -DBUILD_cmakebuilder=$(usex cmake)
- $(cmake-utils_use_find_package gdbui KF5SysGuard)
- -DBUILD_executeplasmoid=$(usex plasma)
- $(cmake-utils_use_find_package plasma KF5Plasma)
- -DBUILD_ninjabuilder=$(usex ninja)
- $(cmake-utils_use_find_package okteta OktetaKastenControllers)
- $(cmake-utils_use_find_package qmake KDevelop-PG-Qt)
- -DBUILD_qthelp=$(usex qthelp)
- )
-
- kde5_src_configure
-}
next reply other threads:[~2016-08-31 14:30 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-08-31 14:30 Michael Palimaka [this message]
-- strict thread matches above, loose matches on Subject: below --
2023-03-29 13:32 [gentoo-commits] proj/kde:master commit in: dev-util/kdevelop/files/, dev-util/kdevelop/ Sam James
2016-10-30 18:03 Johannes Huber
2015-07-16 18:38 Johannes Huber
2014-03-12 13:06 Johannes Huber
2013-12-27 16:19 Chris Reffett
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1472653807.cae4c2337cff0a927842a57f1b6bee520fd87a9c.kensington@gentoo \
--to=kensington@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox