Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions dev-cpp/catch/Manifest
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
DIST catch-3.12.0-88abf9b.tar.gz 1416948 BLAKE2B 56e5edbef67dc5331e5d2863f44d249cb72ded6e2a8970a828a5edfabf31d6e91cb4cbf40bd40ab5d6bb5776b142d26d7c86a2b56f42a631ad4eebba8a1be481 SHA512 f9a42c36169ef787db25bb8f44bda1c2eca511b91601bfb6c994d2453bbab7cb7ffd213675440a3c02bb1f09f11336fc3bc004edf8df7dde6cb771a256dfaaa1
DIST catch-3.13.0-29c9844.tar.gz 1184176 BLAKE2B 8ae862212044cf3a744ffaee9e6260127682ae9de14e271c7612e752edd893696661282e0081c461a9ca2f2d01c21961dd637b4e17cb94c21d277319c2a601b4 SHA512 dbed6fc51086dd14e01be5cbb5b17734999b2a191e2ac8afffd29b509cabbf32b729231cb0ed5fdfbf9404b5dfe4ab7ccdbf404389737beac66ffaee6222d06b
30 changes: 30 additions & 0 deletions dev-cpp/catch/catch-3.13.0.ebuild
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Distributed under the terms of the GNU General Public License v2
# Autogen by MARK Devkit

EAPI=7
inherit cmake

DESCRIPTION="A modern, C++-native, test framework for unit-tests, TDD and BDD - using C++14, C++17 and later (C++11 support is in v2.x branch, and C++03 on the Catch1.x branch)"
HOMEPAGE="https://discord.gg/4CWS9zD"
SRC_URI="https://api.github.com/repos/catchorg/Catch2/tarball/v3.13.0 -> catch-3.13.0-29c9844.tar.gz"
LICENSE="BSL-1.0"
SLOT="0"
KEYWORDS="*"

post_src_unpack() {
mv catchorg-Catch2-* ${S}
}


src_configure() {
local mycmakeargs=(
-DCATCH_DEVELOPMENT_BUILD=ON
-DCATCH_ENABLE_WERROR=OFF
-DCATCH_BUILD_TESTING=OFF
)
cmake_src_configure
}



# vim: filetype=ebuild