From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C4766138334 for ; Wed, 12 Dec 2018 11:56:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 73643E0869; Wed, 12 Dec 2018 11:56:22 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 479E4E0869 for ; Wed, 12 Dec 2018 11:56:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D9CF2335CA6 for ; Wed, 12 Dec 2018 11:56:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1B4024CB for ; Wed, 12 Dec 2018 11:56:17 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1544615747.4d39b7fcd55a1dfd4186b4d303c0c56a6732ad93.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: kde-apps/kross-interpreters/ X-VCS-Repository: repo/gentoo X-VCS-Files: kde-apps/kross-interpreters/kross-interpreters-18.08.3-r1.ebuild X-VCS-Directories: kde-apps/kross-interpreters/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 4d39b7fcd55a1dfd4186b4d303c0c56a6732ad93 X-VCS-Branch: master Date: Wed, 12 Dec 2018 11:56:17 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: a947a2a0-5e54-49a7-843e-53aca2e4800f X-Archives-Hash: a26e97b5bd0923d706766305070912f2 commit: 4d39b7fcd55a1dfd4186b4d303c0c56a6732ad93 Author: Andreas Sturmlechner gentoo org> AuthorDate: Wed Dec 12 11:11:22 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Dec 12 11:55:47 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d39b7fc kde-apps/kross-interpreters: Switch to ruby24 Closes: https://bugs.gentoo.org/672982 Package-Manager: Portage-2.3.52, Repoman-2.3.12 Signed-off-by: Andreas Sturmlechner gentoo.org> .../kross-interpreters-18.08.3-r1.ebuild | 37 ++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/kde-apps/kross-interpreters/kross-interpreters-18.08.3-r1.ebuild b/kde-apps/kross-interpreters/kross-interpreters-18.08.3-r1.ebuild new file mode 100644 index 00000000000..38f4ee94df9 --- /dev/null +++ b/kde-apps/kross-interpreters/kross-interpreters-18.08.3-r1.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python2_7 ) +USE_RUBY="ruby24" +inherit kde5 python-single-r1 ruby-single + +DESCRIPTION="Kross interpreter plugins for programming languages" +KEYWORDS="amd64 x86" +IUSE="+python ruby" + +REQUIRED_USE="|| ( python ruby ) python? ( ${PYTHON_REQUIRED_USE} )" + +DEPEND=" + $(add_frameworks_dep kross) + $(add_qt_dep qtgui) + $(add_qt_dep qtwidgets) + python? ( ${PYTHON_DEPS} ) + ruby? ( ${RUBY_DEPS} ) +" +RDEPEND="${DEPEND}" + +pkg_setup() { + use python && python-single-r1_pkg_setup + kde5_pkg_setup +} + +src_configure() { + local mycmakeargs=( + -DBUILD_python=$(usex python) + -DBUILD_ruby=$(usex ruby) + ) + + kde5_src_configure +}