From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 30DC11382C5 for ; Thu, 25 Jun 2020 13:42:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 329B1E0884; Thu, 25 Jun 2020 13:42:58 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7F103E0884 for ; Thu, 25 Jun 2020 13:42:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 571DC34EFA5 for ; Thu, 25 Jun 2020 13:42:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3CE9F2B8 for ; Thu, 25 Jun 2020 13:42:51 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1593092550.785f61adc7739286b7e58f7866c50e415fe6ceb1.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/cereal/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/cereal/cereal-1.3.0.ebuild X-VCS-Directories: dev-libs/cereal/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 785f61adc7739286b7e58f7866c50e415fe6ceb1 X-VCS-Branch: master Date: Thu, 25 Jun 2020 13:42:51 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 58e1ecad-e587-4201-8752-392d21803ffe X-Archives-Hash: a2de651d3ae4a3ef3d4a75b9bf36d770 commit: 785f61adc7739286b7e58f7866c50e415fe6ceb1 Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu Jun 25 13:41:30 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu Jun 25 13:42:30 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=785f61ad dev-libs/cereal: EAPI-7, cmake.eclass, switch HOMEPAGE to https Bug: https://bugs.gentoo.org/729584 Package-Manager: Portage-2.3.103, Repoman-2.3.23 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-libs/cereal/cereal-1.3.0.ebuild | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/dev-libs/cereal/cereal-1.3.0.ebuild b/dev-libs/cereal/cereal-1.3.0.ebuild index 85993089e20..463e000b4b7 100644 --- a/dev-libs/cereal/cereal-1.3.0.ebuild +++ b/dev-libs/cereal/cereal-1.3.0.ebuild @@ -1,26 +1,27 @@ # Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 -inherit cmake-utils +inherit cmake -DESCRIPTION="header-only C++11 serialization library" -HOMEPAGE="http://uscilab.github.io/cereal/" +DESCRIPTION="Header-only C++11 serialization library" +HOMEPAGE="https://uscilab.github.io/cereal/" SRC_URI="https://github.com/USCiLab/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="test" + RESTRICT="!test? ( test )" DEPEND="test? ( dev-libs/boost )" src_configure() { - mycmakeargs=( + local mycmakeargs=( -DJUST_INSTALL_CEREAL=$(usex !test) -DWITH_WERROR=OFF ) - cmake-utils_src_configure + cmake_src_configure }