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 6C57A138351 for ; Mon, 27 Apr 2020 07:02:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B0174E0ADC; Mon, 27 Apr 2020 07:02:09 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 89087E0ADC for ; Mon, 27 Apr 2020 07:02:09 +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 8462834FAEF for ; Mon, 27 Apr 2020 07:02:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 44CF01F4 for ; Mon, 27 Apr 2020 07:02:07 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1587940751.22a51934ff9d11166e19f5bcdcab25c3b4dbb4cb.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-libs/qhttpengine/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-libs/qhttpengine/qhttpengine-1.0.1-r1.ebuild dev-libs/qhttpengine/qhttpengine-1.0.1.ebuild dev-libs/qhttpengine/qhttpengine-9999.ebuild X-VCS-Directories: dev-libs/qhttpengine/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 22a51934ff9d11166e19f5bcdcab25c3b4dbb4cb X-VCS-Branch: master Date: Mon, 27 Apr 2020 07:02:07 +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: 10ba9e08-a062-4742-8d61-07d7dc9eb73f X-Archives-Hash: 3e8d59d4890f706388ade52855693192 commit: 22a51934ff9d11166e19f5bcdcab25c3b4dbb4cb Author: Alessandro Barbieri gmail com> AuthorDate: Sun Apr 26 22:19:54 2020 +0000 Commit: Andrew Ammerlaan riseup net> CommitDate: Sun Apr 26 22:39:11 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=22a51934 dev-libs/qhttpengine: added missing restrict for tests Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Alessandro Barbieri gmail.com> .../{qhttpengine-1.0.1.ebuild => qhttpengine-1.0.1-r1.ebuild} | 7 +++---- dev-libs/qhttpengine/qhttpengine-9999.ebuild | 7 +++---- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/dev-libs/qhttpengine/qhttpengine-1.0.1.ebuild b/dev-libs/qhttpengine/qhttpengine-1.0.1-r1.ebuild similarity index 93% rename from dev-libs/qhttpengine/qhttpengine-1.0.1.ebuild rename to dev-libs/qhttpengine/qhttpengine-1.0.1-r1.ebuild index 7c18be5..0715dd8 100644 --- a/dev-libs/qhttpengine/qhttpengine-1.0.1.ebuild +++ b/dev-libs/qhttpengine/qhttpengine-1.0.1-r1.ebuild @@ -1,14 +1,14 @@ # Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI="7" inherit cmake DESCRIPTION="HTTP server for Qt applications" HOMEPAGE="https://github.com/nitroshare/qhttpengine" -if [[ ${PV} == "9999" ]] ; then +if [[ "${PV}" == "9999" ]] ; then inherit git-r3 EGIT_REPO_URI="https://github.com/nitroshare/${PN}.git" else @@ -19,9 +19,8 @@ fi LICENSE="MIT" SLOT="5" - IUSE="doc examples test" - +RESTRICT="!test? ( test )" RDEPEND=" dev-qt/qtnetwork:5 " diff --git a/dev-libs/qhttpengine/qhttpengine-9999.ebuild b/dev-libs/qhttpengine/qhttpengine-9999.ebuild index 7c18be5..0715dd8 100644 --- a/dev-libs/qhttpengine/qhttpengine-9999.ebuild +++ b/dev-libs/qhttpengine/qhttpengine-9999.ebuild @@ -1,14 +1,14 @@ # Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI="7" inherit cmake DESCRIPTION="HTTP server for Qt applications" HOMEPAGE="https://github.com/nitroshare/qhttpengine" -if [[ ${PV} == "9999" ]] ; then +if [[ "${PV}" == "9999" ]] ; then inherit git-r3 EGIT_REPO_URI="https://github.com/nitroshare/${PN}.git" else @@ -19,9 +19,8 @@ fi LICENSE="MIT" SLOT="5" - IUSE="doc examples test" - +RESTRICT="!test? ( test )" RDEPEND=" dev-qt/qtnetwork:5 "