mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-21 09:07:26 -08:00
dev-cpp/azure-identity: Version bump to 1.13.2
Signed-off-by: James Le Cuirot <chewi@gentoo.org>
This commit is contained in:
parent
8c1cbeed44
commit
f62944e5c0
@ -1 +1,2 @@
|
||||
DIST azure-sdk-for-cpp-11a2a38aa79daf573c2a16353dd9121536ac9fc1.tar.gz 3375477 BLAKE2B ee381975a7464c62b6a2d6a7aeaa52118cf6941a6c91b81eb8e056cc5deef9cd0d23dc7e56f273796fa906a064e9e23acb763762013b9c27837788cc261253ce SHA512 892223ff787bf68dd782e058962120b06f12891383fe26e157d9efd59ecc4d5d216f4fb1df6d46a46a57167ec1c3cfe864757e4e198a3c8a6a721603d7c51695
|
||||
DIST azure-sdk-for-cpp-fe5e5ad9e50423ad992648a60151696ed896b7c6.tar.gz 3399411 BLAKE2B dba68b4c673bfa48c3e8bb08d51f4e677e82cdd9a2eb651ec91f62b0a658d22493d5ded51346ee08c43b3da369ab6dbd77dc57396544facf48fe5082d8682312 SHA512 7fe149e37d17e54fb3669f143b7ba16c8d4bde3caf56e132786aa97d7c3d662b753a99d0ed460ca29dfc469776aaf5e0d36df17e419458c4f941c1c5763990dd
|
||||
|
||||
47
dev-cpp/azure-identity/azure-identity-1.13.2.ebuild
Normal file
47
dev-cpp/azure-identity/azure-identity-1.13.2.ebuild
Normal file
@ -0,0 +1,47 @@
|
||||
# Copyright 1999-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit cmake
|
||||
|
||||
COMMIT="fe5e5ad9e50423ad992648a60151696ed896b7c6"
|
||||
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/identity/${PN}"
|
||||
LICENSE="MIT"
|
||||
SLOT="0/${PV}"
|
||||
KEYWORDS="~amd64"
|
||||
IUSE="doc"
|
||||
RESTRICT="test" # Too many online tests.
|
||||
|
||||
RDEPEND="
|
||||
dev-cpp/azure-core:=
|
||||
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
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user