gentoo-zh/dev-cpp/cppcoro/cppcoro-210105-r1.ebuild
HougeLangley d966ecfa3a Bump version and fixed headers years:
1. app-vim/easymotion: bump to 3.0.1 (need build and install test)
close: [nvchecker] app-vim/easymotion can be bump to 3.0.1 #2073
close: [nvchecker] app-vim/easymotion can be bump to 3.0.1 #1851
2. dev-cpp/nameof: bump to 0.10.2 (need build and install test)
close: [nvchecker] dev-cpp/nameof can be bump to 0.10.2 #2085
3. dev-cpp/tgbot-cpp: bump to 1.5 (need build and install test)
close: [nvchecker] dev-cpp/tgbot-cpp can be bump to 1.5 #2325
4. dev-db/dbeaver-bin: bump to 22.3.1 (need build and install test)
close: [nvchecker] dev-db/dbeaver-bin can be bump to 22.3.1 #2311
5. dev-db/mongodb: bump to 6.2.0-rc4 (need build and install test)
close: no issue need close
6. dev-libs/libdwarf: bump to 20150507 (need build and install test)
close: no issue need close
7. net-proxy/clash-verge-bin: bump to 1.2.1 (need build and install test)
close: no issue need close
2023-01-06 20:24:44 +08:00

33 lines
657 B
Bash

# Copyright 2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake git-r3
DESCRIPTION="A library of C++ coroutine abstractions for the coroutines TS"
HOMEPAGE="https://github.com/Garcia6l20/cppcoro"
EGIT_REPO_URI="https://github.com/Garcia6l20/${PN}.git"
EGIT_COMMIT=e1d53e6
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
# currently, test is broken
IUSE="+shared"
RESTRICT="test"
PATCHES=(
"${FILESDIR}"/${PN}-ins-into-lib64.patch
"${FILESDIR}"/${PN}-include-utility.patch
)
src_configure() {
mycmakeargs=(
-DBUILD_TESTING=OFF
-DBUILD_SHARED_LIBS=$(usex shared ON OFF)
)
cmake_src_configure
}