Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/zmqpp/
Date: Sun, 27 Feb 2022 00:26:17
Message-Id: 1645921369.153fc1acbc29bd1b73420a52f63392b88f853fe2.sam@gentoo
1 commit: 153fc1acbc29bd1b73420a52f63392b88f853fe2
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 27 00:22:49 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 27 00:22:49 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=153fc1ac
7
8 net-libs/zmqpp: update EAPI 7 -> 8
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 net-libs/zmqpp/{zmqpp-4.2.0.ebuild => zmqpp-4.2.0-r1.ebuild} | 9 +++++----
13 1 file changed, 5 insertions(+), 4 deletions(-)
14
15 diff --git a/net-libs/zmqpp/zmqpp-4.2.0.ebuild b/net-libs/zmqpp/zmqpp-4.2.0-r1.ebuild
16 similarity index 88%
17 rename from net-libs/zmqpp/zmqpp-4.2.0.ebuild
18 rename to net-libs/zmqpp/zmqpp-4.2.0-r1.ebuild
19 index 1394708a3dff..147cd25d9633 100644
20 --- a/net-libs/zmqpp/zmqpp-4.2.0.ebuild
21 +++ b/net-libs/zmqpp/zmqpp-4.2.0-r1.ebuild
22 @@ -1,7 +1,9 @@
23 -# Copyright 1999-2021 Gentoo Authors
24 +# Copyright 1999-2022 Gentoo Authors
25 # Distributed under the terms of the GNU General Public License v2
26
27 -EAPI=6
28 +EAPI=8
29 +
30 +inherit cmake
31
32 if [[ ${PV} == 9999 ]]; then
33 inherit git-r3
34 @@ -10,7 +12,6 @@ else
35 SRC_URI="https://github.com/zeromq/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
36 KEYWORDS="~amd64 ~x86"
37 fi
38 -inherit cmake-utils
39
40 DESCRIPTION="ZeroMQ 'highlevel' C++ bindings"
41 HOMEPAGE="https://github.com/zeromq/zmqpp"
42 @@ -31,5 +32,5 @@ src_configure() {
43 -DZMQPP_BUILD_STATIC=$(usex static-libs)
44 )
45
46 - cmake-utils_src_configure
47 + cmake_src_configure
48 }