From f2edd8b7d5227bb4292e18c885c1f5a5485aca76 Mon Sep 17 00:00:00 2001 From: Kostadin Shishmanov Date: Sun, 6 Aug 2023 19:40:34 +0300 Subject: [PATCH] dev-cpp/easyloggingpp: add 9.97.1 Signed-off-by: Kostadin Shishmanov --- dev-cpp/easyloggingpp/Manifest | 1 + .../easyloggingpp/easyloggingpp-9.97.1.ebuild | 31 +++++++++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 dev-cpp/easyloggingpp/easyloggingpp-9.97.1.ebuild diff --git a/dev-cpp/easyloggingpp/Manifest b/dev-cpp/easyloggingpp/Manifest index c1e7508ce7..7ff31490e7 100644 --- a/dev-cpp/easyloggingpp/Manifest +++ b/dev-cpp/easyloggingpp/Manifest @@ -1 +1,2 @@ DIST easyloggingpp-9.97.0.tar.gz 750851 BLAKE2B 7ae65db33009dccf6e3a4362e4b5e23080935629b079e5898c8063d31144bef2341a041365bf20d0acd5067ad606e752de4b2b70a55f4bd16047b1ae3bab416d SHA512 e45789edaf7a43ad6a73861840d24ccce9b9d6bba1aaacf93c6ac26ff7449957251d2ca322c9da85130b893332dd305b13a2499eaffc65ecfaaafa3e11f8d63d +DIST easyloggingpp-9.97.1.tar.gz 771149 BLAKE2B 313a6547e2af4322bac8843d4efbfef89fa1ebcd40ce24ba32dfd6df7f8c7023dd821e773f43ef484facde1cb5c348c02d6fe23a3fdf308ce2a29559a0d65021 SHA512 3df813f7f9796c81c974ba794624db2602253e14b938370deb4c851fe8725f5c7ebf71d7ae0277fcb770b043ccf8f04bbf8e770d14565f4cb704328973473387 diff --git a/dev-cpp/easyloggingpp/easyloggingpp-9.97.1.ebuild b/dev-cpp/easyloggingpp/easyloggingpp-9.97.1.ebuild new file mode 100644 index 0000000000..5eb9e8ab2b --- /dev/null +++ b/dev-cpp/easyloggingpp/easyloggingpp-9.97.1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="C++ logging library" +HOMEPAGE="https://github.com/abumq/easyloggingpp" +SRC_URI="https://github.com/abumq/easyloggingpp/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +IUSE="test" +RESTRICT="!test? ( test )" + +DEPEND="test? ( dev-cpp/gtest )" +RDEPEND="${DEPEND}" + +PATCHES=( + "${FILESDIR}/disable-failing-tests.patch" +) + +src_configure() { + local mycmakeargs+=( + -Dtest=$(usex test ON OFF) + ) + cmake_src_configure +}