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 40BA4138330 for ; Sat, 13 Jan 2018 23:29:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A5951E0895; Sat, 13 Jan 2018 23:29:00 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 88220E0895 for ; Sat, 13 Jan 2018 23:29:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 3EDA7335C68 for ; Sat, 13 Jan 2018 23:28:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A215D1B6 for ; Sat, 13 Jan 2018 23:28:55 +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: <1515886114.dfba4cdda344ef504d003e8a118aa78363c2261b.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-chemistry/molequeue/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-chemistry/molequeue/molequeue-0.8.0.ebuild X-VCS-Directories: sci-chemistry/molequeue/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: dfba4cdda344ef504d003e8a118aa78363c2261b X-VCS-Branch: master Date: Sat, 13 Jan 2018 23:28:55 +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-Archives-Salt: 54084b9a-323f-4240-84f8-4640d4c3670e X-Archives-Hash: 8281e138f43b44d952189b1df7c66bbd commit: dfba4cdda344ef504d003e8a118aa78363c2261b Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Jan 13 20:49:52 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Jan 13 23:28:34 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dfba4cdd sci-chemistry/molequeue: EAPI 6, missing deps Package-Manager: Portage-2.3.19, Repoman-2.3.6 sci-chemistry/molequeue/molequeue-0.8.0.ebuild | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/sci-chemistry/molequeue/molequeue-0.8.0.ebuild b/sci-chemistry/molequeue/molequeue-0.8.0.ebuild index 94a7ed2533c..2c20c0bfeea 100644 --- a/sci-chemistry/molequeue/molequeue-0.8.0.ebuild +++ b/sci-chemistry/molequeue/molequeue-0.8.0.ebuild @@ -1,11 +1,11 @@ # Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=6 PYTHON_COMPAT=( python2_7 ) -inherit cmake-utils multilib python-single-r1 versionator virtualx +inherit cmake-utils python-single-r1 versionator virtualx DESCRIPTION="Abstract, manage and coordinate execution of tasks" HOMEPAGE="https://www.openchemistry.org/projects/molequeue/" @@ -22,6 +22,7 @@ REQUIRED_USE="${PYTHON_REQUIRED_USE} RDEPEND="${PYTHON_DEPS} dev-qt/qtcore:5 + dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 zeromq? ( net-libs/cppzmq:0= )" @@ -41,13 +42,13 @@ src_prepare() { src_configure() { local mycmakeargs=( - $(cmake-utils_use_enable test TESTING) - $(cmake-utils_use_use zeromq ZERO_MQ) - $(cmake-utils_use_build doc DOCUMENTATION) - $(cmake-utils_use client MoleQueue_BUILD_CLIENT) - $(cmake-utils_use server MoleQueue_BUILD_APPLICATION) + -DBUILD_DOCUMENTATION=$(usex doc) + -DMoleQueue_BUILD_CLIENT=$(usex client) + -DoleQueue_BUILD_APPLICATION=$(usex server) + -DENABLE_TESTING=$(usex test) + -DUSE_ZERO_MQ=$(usex zeromq) -DINSTALL_LIBRARY_DIR=$(get_libdir) - ) + ) use zeromq && \ mycmakeargs+=( -DZeroMQ_ROOT_DIR=\"${EPREFIX}/usr\" )