Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/cereal/
Date: Thu, 25 Jun 2020 13:42:59
Message-Id: 1593092550.785f61adc7739286b7e58f7866c50e415fe6ceb1.asturm@gentoo
1 commit: 785f61adc7739286b7e58f7866c50e415fe6ceb1
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jun 25 13:41:30 2020 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Thu Jun 25 13:42:30 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=785f61ad
7
8 dev-libs/cereal: EAPI-7, cmake.eclass, switch HOMEPAGE to https
9
10 Bug: https://bugs.gentoo.org/729584
11 Package-Manager: Portage-2.3.103, Repoman-2.3.23
12 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
13
14 dev-libs/cereal/cereal-1.3.0.ebuild | 13 +++++++------
15 1 file changed, 7 insertions(+), 6 deletions(-)
16
17 diff --git a/dev-libs/cereal/cereal-1.3.0.ebuild b/dev-libs/cereal/cereal-1.3.0.ebuild
18 index 85993089e20..463e000b4b7 100644
19 --- a/dev-libs/cereal/cereal-1.3.0.ebuild
20 +++ b/dev-libs/cereal/cereal-1.3.0.ebuild
21 @@ -1,26 +1,27 @@
22 # Copyright 1999-2020 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24
25 -EAPI=6
26 +EAPI=7
27
28 -inherit cmake-utils
29 +inherit cmake
30
31 -DESCRIPTION="header-only C++11 serialization library"
32 -HOMEPAGE="http://uscilab.github.io/cereal/"
33 +DESCRIPTION="Header-only C++11 serialization library"
34 +HOMEPAGE="https://uscilab.github.io/cereal/"
35 SRC_URI="https://github.com/USCiLab/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
36
37 LICENSE="BSD"
38 SLOT="0"
39 KEYWORDS="~amd64 ~x86"
40 IUSE="test"
41 +
42 RESTRICT="!test? ( test )"
43
44 DEPEND="test? ( dev-libs/boost )"
45
46 src_configure() {
47 - mycmakeargs=(
48 + local mycmakeargs=(
49 -DJUST_INSTALL_CEREAL=$(usex !test)
50 -DWITH_WERROR=OFF
51 )
52 - cmake-utils_src_configure
53 + cmake_src_configure
54 }