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.95b9a8b2f8d2c58fda8943debae1ab4cc64f3c0e.juippis@gentoo
1 commit: 95b9a8b2f8d2c58fda8943debae1ab4cc64f3c0e
2 Author: Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr>
3 AuthorDate: Sun Aug 30 10:22:39 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=95b9a8b2
7
8 dev-cpp/aixlog: bump to 1.4.0
9
10 Closes: https://bugs.gentoo.org/717520
11 Package-Manager: Portage-3.0.3, Repoman-3.0.0
12 Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
13 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
14
15 dev-cpp/aixlog/Manifest | 1 +
16 dev-cpp/aixlog/aixlog-1.4.0.ebuild | 28 ++++++++++++++++++++++++++++
17 2 files changed, 29 insertions(+)
18
19 diff --git a/dev-cpp/aixlog/Manifest b/dev-cpp/aixlog/Manifest
20 index 170473114db..3f7772ed40a 100644
21 --- a/dev-cpp/aixlog/Manifest
22 +++ b/dev-cpp/aixlog/Manifest
23 @@ -1 +1,2 @@
24 DIST aixlog-1.2.1.tar.gz 11396 BLAKE2B 88cdc775acfd91ee74306fedd6429865f10bcd7cbe9b45f861463489330d74b017611078ca362a00994983dde746ba086a056c3da53b06099f200810d65c0c04 SHA512 776558fdd911f0cc9e8d467bf8e00a1930d2e51bb8ccd5f36f95955fefecab65faf575a80fdaacfe83fd32808f8b9c2e0323b16823e0431300df7bc0c1dfde12
25 +DIST aixlog-1.4.0.tar.gz 13262 BLAKE2B 6be17305e7de95b10bb2c8f0019e235bff9596e33c4fba341cfb4e6e0732330932f2b64be916e57fc0e49197931076701a00df7a305420c938630d6b5786080b SHA512 ec4f5a3902858ad979de8cfa81275951af73c4d159a2615a85cf60fe876ea283864f854b26198bea83c4a568948db82c5e50783c868bd2f6d8427d319b912d6f
26
27 diff --git a/dev-cpp/aixlog/aixlog-1.4.0.ebuild b/dev-cpp/aixlog/aixlog-1.4.0.ebuild
28 new file mode 100644
29 index 00000000000..b1164d6bbd1
30 --- /dev/null
31 +++ b/dev-cpp/aixlog/aixlog-1.4.0.ebuild
32 @@ -0,0 +1,28 @@
33 +# Copyright 1999-2020 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +inherit cmake
39 +
40 +DESCRIPTION="Header-only C++ logging library"
41 +HOMEPAGE="https://github.com/badaix/aixlog"
42 +
43 +if [[ ${PV} == *9999 ]] ; then
44 + inherit git-r3
45 +
46 + EGIT_REPO_URI="https://github.com/badaix/aixlog.git"
47 + EGIT_BRANCH="develop"
48 +else
49 + SRC_URI="https://github.com/badaix/aixlog/archive/v${PV}.tar.gz -> ${P}.tar.gz"
50 + KEYWORDS="~amd64 ~x86"
51 +fi
52 +
53 +LICENSE="MIT"
54 +SLOT="0"
55 +
56 +src_configure() {
57 + local mycmakeargs=( -DBUILD_EXAMPLE=OFF )
58 +
59 + cmake_src_configure
60 +}