diff options
| author | James Le Cuirot <chewi@gentoo.org> | 2025-07-10 18:36:38 +0100 |
|---|---|---|
| committer | James Le Cuirot <chewi@gentoo.org> | 2025-07-10 18:42:26 +0100 |
| commit | e94b98bbc710b88173531fb63be9fd9ffdbc9be2 (patch) | |
| tree | 0fcd87c2b9f5ef5c0e5c88ec22771a7ec4bffddb /dev-cpp/azure-core/azure-core-1.16.0.ebuild | |
| parent | 378441aab815ce0ffb1b9d6edd73cf4cc4447c40 (diff) | |
| download | gentoo-e94b98bbc710b88173531fb63be9fd9ffdbc9be2.tar.gz gentoo-e94b98bbc710b88173531fb63be9fd9ffdbc9be2.tar.bz2 gentoo-e94b98bbc710b88173531fb63be9fd9ffdbc9be2.zip | |
dev-cpp/azure-core: Version bump to 1.16.0
Signed-off-by: James Le Cuirot <chewi@gentoo.org>
Diffstat (limited to 'dev-cpp/azure-core/azure-core-1.16.0.ebuild')
| -rw-r--r-- | dev-cpp/azure-core/azure-core-1.16.0.ebuild | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/dev-cpp/azure-core/azure-core-1.16.0.ebuild b/dev-cpp/azure-core/azure-core-1.16.0.ebuild new file mode 100644 index 000000000000..118737dffc65 --- /dev/null +++ b/dev-cpp/azure-core/azure-core-1.16.0.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +COMMIT="de3cc64a55b2a67d672b7ca899a8675182d1c989" +MY_P="azure-sdk-for-cpp-${COMMIT}" +DESCRIPTION="Azure SDK for C++" +HOMEPAGE="https://azure.github.io/azure-sdk-for-cpp/" +SRC_URI="https://github.com/Azure/azure-sdk-for-cpp/archive/${COMMIT}.tar.gz -> ${MY_P}.tar.gz" +S="${WORKDIR}/${MY_P}/sdk/core/${PN}" +LICENSE="MIT" +SLOT="0/${PV}" +KEYWORDS="~amd64" +IUSE="doc" +RESTRICT="test" # Too many online tests. + +RDEPEND=" + dev-libs/openssl:= + net-misc/curl[ssl] +" +DEPEND=" + ${RDEPEND} +" +BDEPEND=" + virtual/pkgconfig + doc? ( app-text/doxygen ) +" + +src_configure() { + local mycmakeargs=( + -DBUILD_DOCUMENTATION=$(usex doc) + -DWARNINGS_AS_ERRORS=no + ) + + AZURE_SDK_DISABLE_AUTO_VCPKG=yes \ + cmake_src_configure +} + +src_install() { + cmake_src_install + rm -v "${ED}"/usr/share/*/copyright || die + use doc && dodoc -r "${BUILD_DIR}"/docs/html +} |
