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 8E3EE158087 for ; Fri, 26 Nov 2021 11:34:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8A381E0876; Fri, 26 Nov 2021 11:34:20 +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 6FF17E0876 for ; Fri, 26 Nov 2021 11:34:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 2B1A4342D78 for ; Fri, 26 Nov 2021 11:34:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 99B041D6 for ; Fri, 26 Nov 2021 11:34:17 +0000 (UTC) From: "Denis Reva" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Denis Reva" Message-ID: <1637926408.3cdbcbe250dd44fcc091ffc20e1bf182db984f42.RarogCmex@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/fizz/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-cpp/fizz/Manifest dev-cpp/fizz/fizz-2021.11.15.00.ebuild X-VCS-Directories: dev-cpp/fizz/ X-VCS-Committer: RarogCmex X-VCS-Committer-Name: Denis Reva X-VCS-Revision: 3cdbcbe250dd44fcc091ffc20e1bf182db984f42 X-VCS-Branch: dev Date: Fri, 26 Nov 2021 11:34:17 +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: 285c3edd-b4f2-46f5-ad5c-7706eecf7765 X-Archives-Hash: 46aad03eb19992bd2742c49f8475c11a commit: 3cdbcbe250dd44fcc091ffc20e1bf182db984f42 Author: Denis Reva gmail com> AuthorDate: Fri Nov 26 11:33:28 2021 +0000 Commit: Denis Reva gmail com> CommitDate: Fri Nov 26 11:33:28 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3cdbcbe2 dev-cpp/fizz: updated to 11.15 Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Denis Reva gmail.com> dev-cpp/fizz/Manifest | 1 + dev-cpp/fizz/fizz-2021.11.15.00.ebuild | 49 ++++++++++++++++++++++++++++++++++ 2 files changed, 50 insertions(+) diff --git a/dev-cpp/fizz/Manifest b/dev-cpp/fizz/Manifest index 48575617b..5decc240d 100644 --- a/dev-cpp/fizz/Manifest +++ b/dev-cpp/fizz/Manifest @@ -1 +1,2 @@ DIST fizz-2021.10.25.00.tar.gz 566738 BLAKE2B 05a501b86a0db406e40cd6c9f12dd596f902bbcb77c34934a4121ec8e2a7fb1bbebf6bf6349435d9d290a81372688f8cbbdfae2fbb313349ae7d07d9ca90ad3f SHA512 30a8a9577b71a97fec8648e92defbd4485e7ff184847fa1b671f3d7c8b247cf35a543275a3519b5794973442be064e2bdf359920faf016e7bd57aa501e3f605d +DIST fizz-2021.11.15.00.tar.gz 567214 BLAKE2B 943d740e483ab5c47b0c4aa3bd9516cf708a357532411d70e4e571ecb6b566d38cf1518ff29764fb18f372170ee06e6855200ade771be91a4f4a6936c50863ac SHA512 c215011e417d211b7859b47294831922caeb9c26a24804697af38b55f62d42ef0a52b2f318a930fc18e86d44fac90bf9909b0979ff5a522041cad26bbb9d2b77 diff --git a/dev-cpp/fizz/fizz-2021.11.15.00.ebuild b/dev-cpp/fizz/fizz-2021.11.15.00.ebuild new file mode 100644 index 000000000..12e7ec567 --- /dev/null +++ b/dev-cpp/fizz/fizz-2021.11.15.00.ebuild @@ -0,0 +1,49 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="C++14 implementation of the TLS-1.3 standard" +HOMEPAGE="https://github.com/facebookincubator/fizz" +SRC_URI="https://github.com/facebookincubator/fizz/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64" +IUSE="examples test" + +RDEPEND=" + ~dev-cpp/folly-${PV}:= + dev-cpp/gflags + dev-cpp/glog + dev-libs/double-conversion + dev-libs/libevent + dev-libs/libfmt + dev-libs/libsodium + dev-libs/openssl:0= +" +#TODO: discover if gtest is linked +DEPEND=" + ${RDEPEND} + test? (