summaryrefslogtreecommitdiff
path: root/dev-cpp/azure-core/azure-core-1.14.1.ebuild
diff options
context:
space:
mode:
authorJames Le Cuirot <chewi@gentoo.org>2025-03-07 09:41:03 +0000
committerJames Le Cuirot <chewi@gentoo.org>2025-03-07 09:41:03 +0000
commit08ee86ff9da0064cadb2db04006290e2dacd2bb9 (patch)
treede7ebba3fada8fd4944d42b57d7fe92ce068038a /dev-cpp/azure-core/azure-core-1.14.1.ebuild
parent271ee0b8fa13efea9224e6b90a9438804064e659 (diff)
downloadgentoo-08ee86ff9da0064cadb2db04006290e2dacd2bb9.tar.gz
gentoo-08ee86ff9da0064cadb2db04006290e2dacd2bb9.tar.bz2
gentoo-08ee86ff9da0064cadb2db04006290e2dacd2bb9.zip
dev-cpp/azure-core: Bump to 1.15.0, drop old 1.14.1
Signed-off-by: James Le Cuirot <chewi@gentoo.org>
Diffstat (limited to 'dev-cpp/azure-core/azure-core-1.14.1.ebuild')
-rw-r--r--dev-cpp/azure-core/azure-core-1.14.1.ebuild46
1 files changed, 0 insertions, 46 deletions
diff --git a/dev-cpp/azure-core/azure-core-1.14.1.ebuild b/dev-cpp/azure-core/azure-core-1.14.1.ebuild
deleted file mode 100644
index 72868481bef0..000000000000
--- a/dev-cpp/azure-core/azure-core-1.14.1.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-COMMIT="0180c8ee5cc9f54d4edf8d39415f3733e4296e0f"
-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
-}