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 63E9815808B for ; Fri, 18 Mar 2022 17:04:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6D0A3E07EF; Fri, 18 Mar 2022 17:04:14 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id F2CDAE07EF for ; Fri, 18 Mar 2022 17:04:13 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D5263343200 for ; Fri, 18 Mar 2022 17:04:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8E37D32A for ; Fri, 18 Mar 2022 17:04:11 +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: <1647623046.e63f63ba06239553e82e637c0e9ccf5caede5bdc.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-r1.ebuild X-VCS-Directories: dev-libs/cereal/ X-VCS-Committer: expeditioneer X-VCS-Committer-Name: Dennis Lamm X-VCS-Revision: e63f63ba06239553e82e637c0e9ccf5caede5bdc X-VCS-Branch: master Date: Fri, 18 Mar 2022 17:04:11 +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: 4fd1ab7b-31f0-44e6-80ff-eb55607bfbd4 X-Archives-Hash: 8fb75939b3bdee02c6d70bcacc982b09 commit: e63f63ba06239553e82e637c0e9ccf5caede5bdc Author: Dennis Lamm gentoo org> AuthorDate: Fri Mar 18 16:37:37 2022 +0000 Commit: Dennis Lamm gentoo org> CommitDate: Fri Mar 18 17:04:06 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e63f63ba dev-libs/cereal: drop old Signed-off-by: Dennis Lamm gentoo.org> Package-Manager: Portage-3.0.30, Repoman-3.0.3 Closes: https://github.com/gentoo/gentoo/pull/24639 Signed-off-by: Dennis Lamm gentoo.org> dev-libs/cereal/cereal-1.3.0-r1.ebuild | 37 ---------------------------------- 1 file changed, 37 deletions(-) diff --git a/dev-libs/cereal/cereal-1.3.0-r1.ebuild b/dev-libs/cereal/cereal-1.3.0-r1.ebuild deleted file mode 100644 index c14fc8b906f6..000000000000 --- a/dev-libs/cereal/cereal-1.3.0-r1.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2021 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="doc test" - -RESTRICT="!test? ( test )" - -DEPEND="test? ( dev-libs/boost )" - -src_prepare() { - sed -i -e '/set(CMAKE_CXX_FLAGS "-Wall -g -Wextra -Wshadow -pedantic -Wold-style-cast ${CMAKE_CXX_FLAGS}")/d' CMakeLists.txt || die - - if ! use doc ; then - sed -i -e '/add_subdirectory(doc/d' CMakeLists.txt || die - fi - - cmake_src_prepare -} - -src_configure() { - local mycmakeargs=( - -DJUST_INSTALL_CEREAL=$(usex !test) - -DWITH_WERROR=OFF - ) - cmake_src_configure -}