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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D708F158086 for ; Thu, 23 Dec 2021 14:03:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AF6252BC00E; Thu, 23 Dec 2021 14:03:00 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 507462BC00E for ; Thu, 23 Dec 2021 14:03:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3DCEA3430C4 for ; Thu, 23 Dec 2021 14:02:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9F09F256 for ; Thu, 23 Dec 2021 14:02:57 +0000 (UTC) From: "Dennis Lamm" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Dennis Lamm" Message-ID: <1640268173.bc1deeb1c432f5dacc8b420d35d8ee7196d77c8c.expeditioneer@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: expeditioneer X-VCS-Committer-Name: Dennis Lamm X-VCS-Revision: bc1deeb1c432f5dacc8b420d35d8ee7196d77c8c X-VCS-Branch: master Date: Thu, 23 Dec 2021 14:02:57 +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: fc9d36dd-410c-42da-a047-8a6d93af458a X-Archives-Hash: d7d1379e0fdb5d4e29ee1b3995627d0b commit: bc1deeb1c432f5dacc8b420d35d8ee7196d77c8c Author: Dennis Lamm gentoo org> AuthorDate: Thu Dec 23 14:02:53 2021 +0000 Commit: Dennis Lamm gentoo org> CommitDate: Thu Dec 23 14:02:53 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc1deeb1 dev-libs/cereal: drop old Signed-off-by: Dennis Lamm gentoo.org> Package-Manager: Portage-3.0.28, Repoman-3.0.3 dev-libs/cereal/cereal-1.3.0.ebuild | 27 --------------------------- 1 file changed, 27 deletions(-) diff --git a/dev-libs/cereal/cereal-1.3.0.ebuild b/dev-libs/cereal/cereal-1.3.0.ebuild deleted file mode 100644 index 463e000b4b75..000000000000 --- a/dev-libs/cereal/cereal-1.3.0.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake - -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() { - local mycmakeargs=( - -DJUST_INSTALL_CEREAL=$(usex !test) - -DWITH_WERROR=OFF - ) - cmake_src_configure -}