Gentoo Archives: gentoo-commits

From: Alessandro Barbieri <lssndrbarbieri@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-libs/qhttpengine/
Date: Sun, 26 Apr 2020 22:39:26
Message-Id: 1587940751.22a51934ff9d11166e19f5bcdcab25c3b4dbb4cb.Alessandro-Barbieri@gentoo
1 commit: 22a51934ff9d11166e19f5bcdcab25c3b4dbb4cb
2 Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
3 AuthorDate: Sun Apr 26 22:19:54 2020 +0000
4 Commit: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
5 CommitDate: Sun Apr 26 22:39:11 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=22a51934
7
8 dev-libs/qhttpengine: added missing restrict for tests
9
10 Package-Manager: Portage-2.3.99, Repoman-2.3.22
11 Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
12
13 .../{qhttpengine-1.0.1.ebuild => qhttpengine-1.0.1-r1.ebuild} | 7 +++----
14 dev-libs/qhttpengine/qhttpengine-9999.ebuild | 7 +++----
15 2 files changed, 6 insertions(+), 8 deletions(-)
16
17 diff --git a/dev-libs/qhttpengine/qhttpengine-1.0.1.ebuild b/dev-libs/qhttpengine/qhttpengine-1.0.1-r1.ebuild
18 similarity index 93%
19 rename from dev-libs/qhttpengine/qhttpengine-1.0.1.ebuild
20 rename to dev-libs/qhttpengine/qhttpengine-1.0.1-r1.ebuild
21 index 7c18be5..0715dd8 100644
22 --- a/dev-libs/qhttpengine/qhttpengine-1.0.1.ebuild
23 +++ b/dev-libs/qhttpengine/qhttpengine-1.0.1-r1.ebuild
24 @@ -1,14 +1,14 @@
25 # Copyright 1999-2020 Gentoo Authors
26 # Distributed under the terms of the GNU General Public License v2
27
28 -EAPI=7
29 +EAPI="7"
30
31 inherit cmake
32
33 DESCRIPTION="HTTP server for Qt applications"
34 HOMEPAGE="https://github.com/nitroshare/qhttpengine"
35
36 -if [[ ${PV} == "9999" ]] ; then
37 +if [[ "${PV}" == "9999" ]] ; then
38 inherit git-r3
39 EGIT_REPO_URI="https://github.com/nitroshare/${PN}.git"
40 else
41 @@ -19,9 +19,8 @@ fi
42
43 LICENSE="MIT"
44 SLOT="5"
45 -
46 IUSE="doc examples test"
47 -
48 +RESTRICT="!test? ( test )"
49 RDEPEND="
50 dev-qt/qtnetwork:5
51 "
52
53 diff --git a/dev-libs/qhttpengine/qhttpengine-9999.ebuild b/dev-libs/qhttpengine/qhttpengine-9999.ebuild
54 index 7c18be5..0715dd8 100644
55 --- a/dev-libs/qhttpengine/qhttpengine-9999.ebuild
56 +++ b/dev-libs/qhttpengine/qhttpengine-9999.ebuild
57 @@ -1,14 +1,14 @@
58 # Copyright 1999-2020 Gentoo Authors
59 # Distributed under the terms of the GNU General Public License v2
60
61 -EAPI=7
62 +EAPI="7"
63
64 inherit cmake
65
66 DESCRIPTION="HTTP server for Qt applications"
67 HOMEPAGE="https://github.com/nitroshare/qhttpengine"
68
69 -if [[ ${PV} == "9999" ]] ; then
70 +if [[ "${PV}" == "9999" ]] ; then
71 inherit git-r3
72 EGIT_REPO_URI="https://github.com/nitroshare/${PN}.git"
73 else
74 @@ -19,9 +19,8 @@ fi
75
76 LICENSE="MIT"
77 SLOT="5"
78 -
79 IUSE="doc examples test"
80 -
81 +RESTRICT="!test? ( test )"
82 RDEPEND="
83 dev-qt/qtnetwork:5
84 "