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 B9417158087 for ; Wed, 6 Oct 2021 01:13:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5D60FE0950; Wed, 6 Oct 2021 01:13:30 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 302D5E094F for ; Wed, 6 Oct 2021 01:13:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 20540343180 for ; Wed, 6 Oct 2021 01:13:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9122614F for ; Wed, 6 Oct 2021 01:13:26 +0000 (UTC) From: "Theo Anderson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Theo Anderson" Message-ID: <1633467052.e946c0c7877175a1ee159b83df0591f589137c35.telans@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.10.04.00.ebuild X-VCS-Directories: dev-cpp/wangle/ X-VCS-Committer: telans X-VCS-Committer-Name: Theo Anderson X-VCS-Revision: e946c0c7877175a1ee159b83df0591f589137c35 X-VCS-Branch: master Date: Wed, 6 Oct 2021 01:13:26 +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: 8fbc9e3a-b106-4612-ac0d-6325465a543b X-Archives-Hash: 0f49651fd61ffc53baed77d98d2fed5b commit: e946c0c7877175a1ee159b83df0591f589137c35 Author: Alessandro Barbieri gmail com> AuthorDate: Tue Oct 5 20:47:59 2021 +0000 Commit: Theo Anderson posteo de> CommitDate: Tue Oct 5 20:50:52 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e946c0c7 dev-cpp/wangle: add 2021.10.04.00 Signed-off-by: Alessandro Barbieri gmail.com> dev-cpp/wangle/Manifest | 1 + dev-cpp/wangle/wangle-2021.10.04.00.ebuild | 37 ++++++++++++++++++++++++++++++ 2 files changed, 38 insertions(+) diff --git a/dev-cpp/wangle/Manifest b/dev-cpp/wangle/Manifest index cfd6db2d3..cc325b4bf 100644 --- a/dev-cpp/wangle/Manifest +++ b/dev-cpp/wangle/Manifest @@ -1 +1,2 @@ DIST wangle-2021.08.02.00.tar.gz 336849 BLAKE2B 0d9e6c9843da125961c8434b50644a4a18ec966f867f8304118eb5b41809f825ced7d740fa9ab85e0dc275541ca2e50d07c3fd3ad43fa98c32853c1d11bd344c SHA512 6be173d0804fa0d67f411f1160a7fc627a4eeeadf5222b26f0498af33a659e90f5539b14eeca17cd32008c902900e78497ae5bb6ce70575e7e1ebecca14d2c81 +DIST wangle-2021.10.04.00.tar.gz 337770 BLAKE2B fae836a3eb40b10ad5a4af31837731681f7c748ac3450da9c6125d49cc48856004380868d985859ab54ef6032ec0827ab73b688a9c0732be9bdbcbc5340bc85d SHA512 1ea0bf0bbae7999e5c2d9216b846f59b81b0e3219487bc34576cce9470dc7b5a2af623d8565a27ef2c8d63ffc2c1f8e5f226f9f9ad078b911e98986da908c69f diff --git a/dev-cpp/wangle/wangle-2021.10.04.00.ebuild b/dev-cpp/wangle/wangle-2021.10.04.00.ebuild new file mode 100644 index 000000000..2440a2f5c --- /dev/null +++ b/dev-cpp/wangle/wangle-2021.10.04.00.ebuild @@ -0,0 +1,37 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +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 +}