public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Andreas Sturmlechner" <asturm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/kdevplatform/
Date: Tue, 29 Aug 2017 21:27:24 +0000 (UTC)	[thread overview]
Message-ID: <1504042014.182a7767205169305d89feb2abcd492c00264d9d.asturm@gentoo> (raw)

commit:     182a7767205169305d89feb2abcd492c00264d9d
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 17 21:00:13 2017 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Tue Aug 29 21:26:54 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=182a7767

dev-util/kdevplatform: 5.1.2 version bump

 dev-util/kdevplatform/Manifest                  |   1 +
 dev-util/kdevplatform/kdevplatform-5.1.2.ebuild | 107 ++++++++++++++++++++++++
 2 files changed, 108 insertions(+)

diff --git a/dev-util/kdevplatform/Manifest b/dev-util/kdevplatform/Manifest
index ff1a1c4b0f1..93ba398fea7 100644
--- a/dev-util/kdevplatform/Manifest
+++ b/dev-util/kdevplatform/Manifest
@@ -1 +1,2 @@
 DIST kdevplatform-5.1.1.tar.xz 2047948 SHA256 3159440512b1373c1a4b35f401ba1f81217de9578372b45137af141eeda6e726 SHA512 2780bc8f321be262bb9c2152fa8c58d52c93d48411122a5ce8d00f11becc8885c9697be7159cbcbb57c0a3f049912f96e67bc274af7ffa90cebf62eeba1eb572 WHIRLPOOL 60ea7b77d5edc007e91d141affbb9c9d46a4cbf52efc21e7b0202d07132d553e266af2968802843758a40905aeb5f568fff787fd4f68c48698619b5f8528378a
+DIST kdevplatform-5.1.2.tar.xz 2051776 SHA256 e622ddad552a678baaf1166d5cbdc5fd1192d2324300c52ef2d25f1c6778664a SHA512 cba58144b1c431789c6ceedee673f365af411a185944c5f6e2d8a8f46bf8bd817de0bbbb454d8ee6c2db28675a78940cb4293bb5e6430bdce77e4bd98e335889 WHIRLPOOL bb0fa4e8895b018710a7b020951f31cbe8801bf4eae411e2c29fab13201b76e14ee465d63deb0c9953ec7a91a5533db1a2e57357986aab52fe64fef80f0a7ad1

diff --git a/dev-util/kdevplatform/kdevplatform-5.1.2.ebuild b/dev-util/kdevplatform/kdevplatform-5.1.2.ebuild
new file mode 100644
index 00000000000..e93015314f5
--- /dev/null
+++ b/dev-util/kdevplatform/kdevplatform-5.1.2.ebuild
@@ -0,0 +1,107 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+EGIT_BRANCH="5.1"
+KDEBASE="kdevelop"
+KDE_TEST="true"
+VIRTUALDBUS_TEST="true"
+VIRTUALX_REQUIRED="test"
+inherit kde5
+
+DESCRIPTION="KDE development support libraries and apps"
+IUSE="cvs reviewboard subversion +welcomepage"
+[[ ${KDE_BUILD_TYPE} = release ]] && KEYWORDS="~amd64 ~x86"
+
+COMMON_DEPEND="
+	$(add_frameworks_dep karchive)
+	$(add_frameworks_dep kbookmarks)
+	$(add_frameworks_dep kcmutils)
+	$(add_frameworks_dep kcodecs)
+	$(add_frameworks_dep kcompletion)
+	$(add_frameworks_dep kconfig)
+	$(add_frameworks_dep kconfigwidgets)
+	$(add_frameworks_dep kcoreaddons)
+	$(add_frameworks_dep kdeclarative)
+	$(add_frameworks_dep kguiaddons)
+	$(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 knotifications)
+	$(add_frameworks_dep knotifyconfig)
+	$(add_frameworks_dep kparts)
+	$(add_frameworks_dep kservice)
+	$(add_frameworks_dep ktexteditor)
+	$(add_frameworks_dep ktextwidgets)
+	$(add_frameworks_dep kwidgetsaddons)
+	$(add_frameworks_dep kwindowsystem)
+	$(add_frameworks_dep kxmlgui)
+	$(add_frameworks_dep sonnet)
+	$(add_frameworks_dep threadweaver)
+	$(add_kdeapps_dep libkomparediff2)
+	$(add_qt_dep qtdbus)
+	$(add_qt_dep qtgui)
+	$(add_qt_dep qttest)
+	$(add_qt_dep qtwebkit)
+	$(add_qt_dep qtwidgets)
+	$(add_qt_dep qtxml)
+	dev-libs/grantlee:5
+	reviewboard? ( dev-libs/purpose )
+	subversion? (
+		dev-libs/apr:1
+		dev-libs/apr-util:1
+		dev-vcs/subversion
+	)
+	welcomepage? ( $(add_qt_dep qtdeclarative 'widgets') )
+"
+DEPEND="${COMMON_DEPEND}
+	dev-libs/boost
+	$(add_qt_dep qtconcurrent)
+"
+RDEPEND="${COMMON_DEPEND}
+	cvs? ( dev-vcs/cvs )
+	reviewboard? ( $(add_kdeapps_dep ktp-accounts-kcm) )
+	!dev-util/kdevelop:4
+	!dev-util/kdevplatform:4
+"
+
+REQUIRED_USE="test? ( welcomepage )"
+
+RESTRICT+=" test"
+
+src_prepare() {
+	kde5_src_prepare
+	# root tests subdirectory actually does not contain tests, installs stuff
+	if ! use test; then
+		sed -i -e "/add_subdirectory(tests)/ s/#DONOTCOMPILE //" \
+			CMakeLists.txt || die "Failed to fix CMakeLists.txt"
+		sed -i -e '1s/^/find_package(Qt5Test \$\{QT_MIN_VERSION\})\n/' \
+			tests/CMakeLists.txt || die "Failed to fix tests/CMakeLists.txt"
+	fi
+}
+
+src_configure() {
+	local mycmakeargs=(
+		-DBUILD_cvs=$(usex cvs)
+		$(cmake-utils_use_find_package reviewboard KDEExperimentalPurpose)
+		$(cmake-utils_use_find_package subversion SubversionLibrary)
+		$(cmake-utils_use_find_package welcomepage Qt5QuickWidgets)
+	)
+
+	kde5_src_configure
+}
+
+pkg_postinst() {
+	kde5_pkg_postinst
+
+	if ! has_version "kde-apps/konsole" ; then
+		echo
+		elog "For konsole view, please install kde-apps/konsole"
+		echo
+	fi
+}


             reply	other threads:[~2017-08-29 21:27 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-08-29 21:27 Andreas Sturmlechner [this message]
  -- strict thread matches above, loose matches on Subject: below --
2017-12-16 10:31 [gentoo-commits] repo/gentoo:master commit in: dev-util/kdevplatform/ Tobias Klausmann
2017-10-29 23:56 Thomas Deutschmann
2017-08-19 20:21 Andreas Sturmlechner
2017-08-19 15:03 Michael Palimaka
2017-07-31 12:20 Tobias Klausmann
2017-06-04 10:45 Michael Palimaka
2017-05-06 20:05 Andreas Sturmlechner
2017-05-06 17:20 Agostino Sarubbo
2017-05-06 13:26 Agostino Sarubbo
2017-03-18 21:41 Johannes Huber
2017-03-04 12:22 Johannes Huber
2016-12-26 10:51 Aaron Bauman
2016-12-17  8:32 Johannes Huber
2016-12-17  8:32 Johannes Huber
2016-12-01 18:26 Johannes Huber
2016-12-01 18:26 Johannes Huber
2016-10-30 18:09 Johannes Huber
2016-09-21 14:57 Michael Palimaka
2016-08-31 15:03 Michael Palimaka
2016-08-31 14:23 Michael Palimaka
2016-08-20 18:28 Michael Palimaka
2015-12-26 12:03 Agostino Sarubbo
2015-12-25 16:47 Agostino Sarubbo
2015-12-01 11:20 Agostino Sarubbo
2015-10-26 18:50 Michael Palimaka
2015-09-06 14:35 Agostino Sarubbo
2015-08-09 17:36 Mikle Kolyada

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=1504042014.182a7767205169305d89feb2abcd492c00264d9d.asturm@gentoo \
    --to=asturm@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