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 B441C138330 for ; Wed, 31 Aug 2016 21:30:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3722C21C039; Wed, 31 Aug 2016 21:30:23 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C1EF621C039 for ; Wed, 31 Aug 2016 21:30:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4E069340942 for ; Wed, 31 Aug 2016 21:30:21 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 811202457 for ; Wed, 31 Aug 2016 21:30:19 +0000 (UTC) From: "Christoph Junghans" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Christoph Junghans" Message-ID: <1472679010.8e92fcc175d4c07fc165d8e24fe30a3f44a29770.ottxor@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/cereal/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/cereal/Manifest dev-libs/cereal/cereal-1.2.1.ebuild dev-libs/cereal/metadata.xml X-VCS-Directories: dev-libs/cereal/ X-VCS-Committer: ottxor X-VCS-Committer-Name: Christoph Junghans X-VCS-Revision: 8e92fcc175d4c07fc165d8e24fe30a3f44a29770 X-VCS-Branch: master Date: Wed, 31 Aug 2016 21:30:19 +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-Archives-Salt: a9b977d1-7ab2-4335-afc4-6daf9688ea60 X-Archives-Hash: 06055e3c28eedf3e96c528e5a4764d0a commit: 8e92fcc175d4c07fc165d8e24fe30a3f44a29770 Author: Christoph Junghans gentoo org> AuthorDate: Wed Aug 31 21:28:42 2016 +0000 Commit: Christoph Junghans gentoo org> CommitDate: Wed Aug 31 21:30:10 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e92fcc1 dev-libs/cereal: initial commit Package-Manager: portage-2.2.28 dev-libs/cereal/Manifest | 1 + dev-libs/cereal/cereal-1.2.1.ebuild | 30 ++++++++++++++++++++++++++++++ dev-libs/cereal/metadata.xml | 8 ++++++++ 3 files changed, 39 insertions(+) diff --git a/dev-libs/cereal/Manifest b/dev-libs/cereal/Manifest new file mode 100644 index 00000000..bceff89 --- /dev/null +++ b/dev-libs/cereal/Manifest @@ -0,0 +1 @@ +DIST cereal-1.2.1.tar.gz 301994 SHA256 7d321c22ea1280b47ddb06f3e9702fcdbb2910ff2f3df0a2554804210714434e SHA512 f0050f27433a4b544e7785aa94fc7b14a57eed6d542e25d3d0fda4d27cf55ea55e796be2138bf80809c96c392436513fe42764b3a456938395bf7f7177dd1c73 WHIRLPOOL d17573dc44b4cf610b4dd0d295f414a58bea39729537f2cabb2ebbba4ba6e899df1f5a43f8959b9afa55a0b1123ec53cf61eabe8c6dcd534619caaf567f6b1b8 diff --git a/dev-libs/cereal/cereal-1.2.1.ebuild b/dev-libs/cereal/cereal-1.2.1.ebuild new file mode 100644 index 00000000..662f699 --- /dev/null +++ b/dev-libs/cereal/cereal-1.2.1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit cmake-utils + +DESCRIPTION="header-only C++11 serialization library" +HOMEPAGE="http://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" + +DEPEND="test? ( dev-libs/boost )" + +src_prepare() { + sed -i 's/-Werror//' CMakeLists.txt || die + default +} + +src_configure() { + mycmakeargs=( + -DJUST_INSTALL_CEREAL=$(usex !test) + ) + cmake-utils_src_configure +} diff --git a/dev-libs/cereal/metadata.xml b/dev-libs/cereal/metadata.xml new file mode 100644 index 00000000..9dee8db --- /dev/null +++ b/dev-libs/cereal/metadata.xml @@ -0,0 +1,8 @@ + + + + + ottxor@gentoo.org + Christoph Junghans + +