public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: profiles/, dev-libs/aws-c-io/, dev-libs/aws-c-io/files/
@ 2025-06-19 22:10 Andreas Sturmlechner
  0 siblings, 0 replies; only message in thread
From: Andreas Sturmlechner @ 2025-06-19 22:10 UTC (permalink / raw
  To: gentoo-commits

commit:     c732b4df53054aaf7877206cc527e0623f53280d
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 19 22:05:25 2025 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Thu Jun 19 22:10:19 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c732b4df

dev-libs/aws-c-io: treeclean

Closes: https://bugs.gentoo.org/908427 (pkgremoved)
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 dev-libs/aws-c-io/Manifest                         |  2 -
 dev-libs/aws-c-io/aws-c-io-0.7.0-r1.ebuild         | 52 ----------------------
 dev-libs/aws-c-io/aws-c-io-0.9.2.ebuild            | 45 -------------------
 .../files/aws-c-io-0.7.0-cmake-prefix.patch        | 12 -----
 dev-libs/aws-c-io/metadata.xml                     | 26 -----------
 profiles/package.mask                              |  3 +-
 6 files changed, 1 insertion(+), 139 deletions(-)

diff --git a/dev-libs/aws-c-io/Manifest b/dev-libs/aws-c-io/Manifest
deleted file mode 100644
index c79b9cb32c71..000000000000
--- a/dev-libs/aws-c-io/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST aws-c-io-0.7.0.tar.gz 561762 BLAKE2B ffe8ac5de9fd5f57e7bc18e1d956f28567413d34ec23a7d0869065718039b1ab56aeae82fd8e24bf77f7393df2c1140308195cd8a4c6ff06cbc7843ae62d76c8 SHA512 b858a5a14cfea86c39f96963c4238ca0f90339befcbd6480e6353719d9846079764f8b42fbdc0cec2f99223bfe1c07fa2a014543fa3fe8a6357440e3cd1007f5
-DIST aws-c-io-0.9.2.tar.gz 586055 BLAKE2B 88c1ac516e29af88062f01f5e2e4718964b25d651922b4b54d82b5cef2a7fd997ee31c7b435933fe284b6ed1f80a310fc75d684c3d7969dba1d2fae4902a157c SHA512 09480b2a06ddd8078234c1058223bc04001d3c54d30bb62a150ab4a2776c7a0c805662560d3b086dad047f22a22e97706be44ac8c5b88e2f9d4bb366c68b9fcb

diff --git a/dev-libs/aws-c-io/aws-c-io-0.7.0-r1.ebuild b/dev-libs/aws-c-io/aws-c-io-0.7.0-r1.ebuild
deleted file mode 100644
index 27947e20ab2e..000000000000
--- a/dev-libs/aws-c-io/aws-c-io-0.7.0-r1.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake
-
-DESCRIPTION="AWS SDK for C module, handles IO and TLS work for application protocols"
-HOMEPAGE="https://github.com/awslabs/aws-c-io"
-SRC_URI="https://github.com/awslabs/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="static-libs test"
-
-RESTRICT="!test? ( test )"
-
-BDEPEND="
-	|| (
-		>dev-build/cmake-3.19.1
-		<dev-build/cmake-3.19.0
-	)
-"
-
-DEPEND="
-	>=dev-libs/aws-c-cal-0.4.5:=[static-libs=]
-	>=dev-libs/aws-c-common-0.4.62:=[static-libs=]
-	>=dev-libs/s2n-0.10.21:=[static-libs=]
-"
-
-PATCHES=(
-	"${FILESDIR}"/${P}-cmake-prefix.patch
-)
-
-src_configure() {
-	local mycmakeargs=(
-		-DBUILD_SHARED_LIBS=$(usex !static-libs)
-		-DBUILD_TESTING=$(usex test)
-	)
-
-	if use test; then
-		# (#759802) Due to network sandboxing of portage, internet connectivity
-		# tests will always fail. If you need a USE flag, because you want/need
-		# to perform these tests manually, please open a bug report for it.
-		mycmakeargs+=(
-			-DENABLE_NET_TESTS=OFF
-		)
-	fi
-
-	cmake_src_configure
-}

diff --git a/dev-libs/aws-c-io/aws-c-io-0.9.2.ebuild b/dev-libs/aws-c-io/aws-c-io-0.9.2.ebuild
deleted file mode 100644
index c36b3f45da8b..000000000000
--- a/dev-libs/aws-c-io/aws-c-io-0.9.2.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake
-
-DESCRIPTION="AWS SDK for C module, handles IO and TLS work for application protocols"
-HOMEPAGE="https://github.com/awslabs/aws-c-io"
-SRC_URI="https://github.com/awslabs/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="static-libs test"
-
-RESTRICT="!test? ( test )"
-
-DEPEND="
-	>=dev-libs/aws-c-cal-0.4.5:=[static-libs=]
-	>=dev-libs/aws-c-common-0.5.2:=[static-libs=]
-	>=dev-libs/s2n-0.10.21:=[static-libs=]
-"
-
-PATCHES=(
-	"${FILESDIR}"/${PN}-0.7.0-cmake-prefix.patch
-)
-
-src_configure() {
-	local mycmakeargs=(
-		-DBUILD_SHARED_LIBS=$(usex !static-libs)
-		-DBUILD_TESTING=$(usex test)
-	)
-
-	if use test; then
-		# (#759802) Due to network sandboxing of portage, internet connectivity
-		# tests will always fail. If you need a USE flag, because you want/need
-		# to perform these tests manually, please open a bug report for it.
-		mycmakeargs+=(
-			-DENABLE_NET_TESTS=OFF
-		)
-	fi
-
-	cmake_src_configure
-}

diff --git a/dev-libs/aws-c-io/files/aws-c-io-0.7.0-cmake-prefix.patch b/dev-libs/aws-c-io/files/aws-c-io-0.7.0-cmake-prefix.patch
deleted file mode 100644
index 39cab922b3d9..000000000000
--- a/dev-libs/aws-c-io/files/aws-c-io-0.7.0-cmake-prefix.patch
+++ /dev/null
@@ -1,12 +0,0 @@
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -23,7 +23,7 @@ elseif(NOT DEFINED CMAKE_INSTALL_LIBDIR)
- endif()
- 
- # This is required in order to append /lib/cmake to each element in CMAKE_PREFIX_PATH
--set(AWS_MODULE_DIR "/${CMAKE_INSTALL_LIBDIR}/cmake")
-+set(AWS_MODULE_DIR "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}/cmake")
- string(REPLACE ";" "${AWS_MODULE_DIR};" AWS_MODULE_PATH "${CMAKE_PREFIX_PATH}${AWS_MODULE_DIR}")
- # Append that generated list to the module search path
- list(APPEND CMAKE_MODULE_PATH ${AWS_MODULE_PATH})
-

diff --git a/dev-libs/aws-c-io/metadata.xml b/dev-libs/aws-c-io/metadata.xml
deleted file mode 100644
index ccc2c399cc5a..000000000000
--- a/dev-libs/aws-c-io/metadata.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-	<maintainer type="person" proxied="yes">
-		<email>sven.eden@prydeworx.com</email>
-		<name>Sven Eden</name>
-	</maintainer>
-	<maintainer type="project" proxied="proxy">
-		<email>proxy-maint@gentoo.org</email>
-		<name>Proxy Maintainers</name>
-	</maintainer>
-	<upstream>
-		<remote-id type="github">awslabs/aws-c-io</remote-id>
-	</upstream>
-	<longdescription>
-This is a module for the AWS SDK for C. It handles all IO and TLS work for application protocols.
-
-aws-c-io is an event driven framework for implementing application protocols. It is built on top of cross-platform
-abstractions that allow you as a developer to think only about the state machine and API for your protocols. A typical
-use-case would be to write something like Http on top of asynchronous-io with TLS already baked in. All of the platform
-and security concerns are already handled for you.
-
-It is designed to be light-weight, fast, portable, and flexible for multiple domain use-cases such as: embedded,
-server, client, and mobile.
-	</longdescription>
-</pkgmetadata>

diff --git a/profiles/package.mask b/profiles/package.mask
index 0a79619e7ff8..629a2aa4ddfb 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -237,12 +237,11 @@ x11-misc/meteo
 
 # Andreas Sturmlechner <asturm@gentoo.org> (2025-05-20)
 # Unaddressed pending version bumps for almost 2 years, stuck on EAPI-7.
-# Bugs #908094, #908095, #908096, #908097, #908427
+# Bugs #908094, #908095, #908096, #908097
 # Removal on 2025-06-19.
 dev-libs/aws-checksums
 dev-libs/aws-c-common
 dev-libs/aws-c-event-stream
-dev-libs/aws-c-io
 dev-libs/s2n
 
 # Ulrich Müller <ulm@gentoo.org> (2025-05-18)


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2025-06-19 22:10 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-19 22:10 [gentoo-commits] repo/gentoo:master commit in: profiles/, dev-libs/aws-c-io/, dev-libs/aws-c-io/files/ Andreas Sturmlechner

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox