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 BABD31382C5 for ; Fri, 28 May 2021 10:28:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EF791E0A8B; Fri, 28 May 2021 10:28:38 +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 D7E2CE0A8B for ; Fri, 28 May 2021 10:28:38 +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 B33FC340E43 for ; Fri, 28 May 2021 10:28:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4814579A for ; Fri, 28 May 2021 10:28:36 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1622110661.97ef197c4f83c3e42d569399caaa10cc869f64f5.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-cpp/wangle/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-cpp/wangle/Manifest dev-cpp/wangle/wangle-2021.05.24.00.ebuild X-VCS-Directories: dev-cpp/wangle/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 97ef197c4f83c3e42d569399caaa10cc869f64f5 X-VCS-Branch: master Date: Fri, 28 May 2021 10:28:36 +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: 956d5e9e-21fe-444a-90fa-eef4ded0ebb2 X-Archives-Hash: eb50bf68167610ac8bfd95a5cac4bd9c commit: 97ef197c4f83c3e42d569399caaa10cc869f64f5 Author: Alessandro Barbieri gmail com> AuthorDate: Thu May 27 10:17:41 2021 +0000 Commit: Andrew Ammerlaan gentoo org> CommitDate: Thu May 27 10:17:41 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=97ef197c dev-cpp/wangle: add 2021.05.24.00 Signed-off-by: Alessandro Barbieri gmail.com> dev-cpp/wangle/Manifest | 1 + dev-cpp/wangle/wangle-2021.05.24.00.ebuild | 37 ++++++++++++++++++++++++++++++ 2 files changed, 38 insertions(+) diff --git a/dev-cpp/wangle/Manifest b/dev-cpp/wangle/Manifest index ee48e6581..c5e5bce2f 100644 --- a/dev-cpp/wangle/Manifest +++ b/dev-cpp/wangle/Manifest @@ -1 +1,2 @@ DIST wangle-2021.04.19.00.tar.gz 336087 BLAKE2B d06150422813c7f7a4663bea59d1e78d8aa2a6023b70fad94aa700d5879b36319a77329d5e4523a5b992cb2ab9dbbd1db1e594e60dbaeddee4cd5881d7385fac SHA512 dc8e2f34d5be2e674cd87c630ca6a647686bae383f5ed678577a7709f9a05483ddabcaa220f5d9afea2e24c78b73b64c9a8d74821b215a1c094498d3528e8896 +DIST wangle-2021.05.24.00.tar.gz 336150 BLAKE2B 5a87ee962572356407bab09a563635015171c7bd09d7b68d91143bf5bce71c5d4bbcdbb6c571ee814390e4db48302551361a2770bb9c3d66a6bc67f63fb0afb7 SHA512 ab2f805d3a21e3eead966a08ab0d7e9ce05baaa52ae0a196d4994db7fe0869038c16c5d4a7344fe5523a58414ac15325060d9151ffa5634608dd1e22b8f4e0c7 diff --git a/dev-cpp/wangle/wangle-2021.05.24.00.ebuild b/dev-cpp/wangle/wangle-2021.05.24.00.ebuild new file mode 100644 index 000000000..a53168c76 --- /dev/null +++ b/dev-cpp/wangle/wangle-2021.05.24.00.ebuild @@ -0,0 +1,37 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake + +DESCRIPTION="Framework providing common client/server abstractions" +HOMEPAGE="https://github.com/facebook/wangle" + +SRC_URI="https://github.com/facebook/wangle/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" + +CMAKE_USE_DIR="${S}/wangle" + +DEPEND=" + ~dev-cpp/fizz-${PV}:= + ~dev-cpp/folly-${PV}:= + dev-cpp/gflags + dev-cpp/glog + dev-libs/double-conversion + dev-libs/libevent + dev-libs/libfmt + dev-libs/openssl:0= +" +RDEPEND="${DEPEND}" + +src_configure() { + local mycmakeargs=( + -DLIB_INSTALL_DIR=$(get_libdir) + ) + + cmake_src_configure +}