Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/aixlog/
Date: Mon, 28 Sep 2020 13:03:05
Message-Id: 1601298158.95f28daeb7b8e4cd7ed75cfa564a00fcdd8cccc8.juippis@gentoo
1 commit: 95f28daeb7b8e4cd7ed75cfa564a00fcdd8cccc8
2 Author: Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr>
3 AuthorDate: Sun Sep 6 18:27:12 2020 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 28 13:02:38 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95f28dae
7
8 dev-cpp/aixlog: sync live
9
10 Package-Manager: Portage-3.0.4, Repoman-3.0.1
11 Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
12 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
13
14 dev-cpp/aixlog/aixlog-9999.ebuild | 15 +++++++--------
15 1 file changed, 7 insertions(+), 8 deletions(-)
16
17 diff --git a/dev-cpp/aixlog/aixlog-9999.ebuild b/dev-cpp/aixlog/aixlog-9999.ebuild
18 index 1246304bfa0..b1164d6bbd1 100644
19 --- a/dev-cpp/aixlog/aixlog-9999.ebuild
20 +++ b/dev-cpp/aixlog/aixlog-9999.ebuild
21 @@ -1,21 +1,20 @@
22 -# Copyright 1999-2018 Gentoo Authors
23 +# Copyright 1999-2020 Gentoo Authors
24 # Distributed under the terms of the GNU General Public License v2
25
26 -EAPI=6
27 +EAPI=7
28 +
29 +inherit cmake
30
31 DESCRIPTION="Header-only C++ logging library"
32 HOMEPAGE="https://github.com/badaix/aixlog"
33
34 if [[ ${PV} == *9999 ]] ; then
35 - inherit cmake-utils git-r3
36 + inherit git-r3
37
38 EGIT_REPO_URI="https://github.com/badaix/aixlog.git"
39 EGIT_BRANCH="develop"
40 else
41 - inherit cmake-utils
42 -
43 - SRC_URI="https://github.com/badaix/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
44 -
45 + SRC_URI="https://github.com/badaix/aixlog/archive/v${PV}.tar.gz -> ${P}.tar.gz"
46 KEYWORDS="~amd64 ~x86"
47 fi
48
49 @@ -25,5 +24,5 @@ SLOT="0"
50 src_configure() {
51 local mycmakeargs=( -DBUILD_EXAMPLE=OFF )
52
53 - cmake-utils_src_configure
54 + cmake_src_configure
55 }