commit:     15fd912ccc8a09c7a331d08bb6b591999bff55f5
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 28 20:08:17 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Oct 28 20:09:24 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15fd912c

dev-libs/libaio: drop 0.3.112

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-libs/libaio/Manifest                           |  1 -
 .../files/libaio-0.3.111-optional-werror.patch     | 30 --------
 .../files/libaio-0.3.112-respect-LDFLAGS.patch     | 13 ----
 dev-libs/libaio/libaio-0.3.112.ebuild              | 87 ----------------------
 4 files changed, 131 deletions(-)

diff --git a/dev-libs/libaio/Manifest b/dev-libs/libaio/Manifest
index 4e17deb166b4..9c1b05bdcfc7 100644
--- a/dev-libs/libaio/Manifest
+++ b/dev-libs/libaio/Manifest
@@ -1,2 +1 @@
-DIST libaio-0.3.112.tar.gz 46977 BLAKE2B 
088f3b195a65bdc97ae2318e47af17c65259ed3208dca7bfef93c81a800602085e5b2078dbd436c740be316d0ebd923a1b3b7c0808257e2e7c7fb0f7ae1e0dba
 SHA512 
5f984529c9f747a6c82f1e4457fc0832bb1fc299ae6e700f2ac5a8ea7b9bfc6ea1e75809728cc115a020cff6685ed1f4e38c6aeacc1ea98dfccce04dd19dafaa
 DIST libaio-0.3.113.tar.gz 49980 BLAKE2B 
2379c88670310b36942563d10f29dfcba0f49391952ffe7fe18b0c917f33ef610405fe13297d1dbb34b7ad1d3066d4a32587a7fb20babba2f264cfc2ab289e57
 SHA512 
65c30a102433bf8386581b03fc706d84bd341be249fbdee11a032b237a7b239e8c27413504fef15e2797b1acd67f752526637005889590ecb380e2e120ab0b71

diff --git a/dev-libs/libaio/files/libaio-0.3.111-optional-werror.patch 
b/dev-libs/libaio/files/libaio-0.3.111-optional-werror.patch
deleted file mode 100644
index 5b6f91e56d98..000000000000
--- a/dev-libs/libaio/files/libaio-0.3.111-optional-werror.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-From ebe62b178f3e5fcde8a311e64aaffe62099204a5 Mon Sep 17 00:00:00 2001
-From: Mike Frysinger <[email protected]>
-Date: Sun, 21 Apr 2019 12:44:26 +0200
-Subject: [PATCH] make -Werror into an optional flag
-
-This lets distros disable the flag as random errors might come up with
-different compiler flags and older/newer toolchain versions.
-
-Signed-off-by: Mike Frysinger <[email protected]>
----
- harness/Makefile | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-
-diff --git a/harness/Makefile b/harness/Makefile
-index f477737..a155c4b 100644
---- a/harness/Makefile
-+++ b/harness/Makefile
-@@ -6,7 +6,8 @@ PROGS:=$(PARTPROGS) $(EXTRAPROGS)
- HARNESS_SRCS:=main.c
- # io_queue.c
- 
--CFLAGS+=-Wall -Werror -I../src -g -O2 -DPAGE_SIZE=$(shell getconf PAGESIZE)
-+CFLAGS_WERROR?=-Werror
-+CFLAGS+=-Wall $(CFLAGS_WERROR) -I../src -g -O2 -DPAGE_SIZE=$(shell getconf 
PAGESIZE)
- #-lpthread -lrt
- 
- all: $(PROGS)
--- 
-2.21.0
-

diff --git a/dev-libs/libaio/files/libaio-0.3.112-respect-LDFLAGS.patch 
b/dev-libs/libaio/files/libaio-0.3.112-respect-LDFLAGS.patch
deleted file mode 100644
index 20e23874fb6b..000000000000
--- a/dev-libs/libaio/files/libaio-0.3.112-respect-LDFLAGS.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-We need to place LDFLAGS earlier to ensure e.g. as-needed works correctly.
---- a/src/Makefile
-+++ b/src/Makefile
-@@ -56,7 +56,7 @@ libaio.a: $(libaio_objs)
-       $(RANLIB) libaio.a
- 
- $(libname): $(libaio_sobjs) libaio.map
--      $(CC) $(SO_CFLAGS) -Wl,--version-script=libaio.map 
-Wl,-soname=$(soname) -o $@ $(libaio_sobjs) $(LINK_FLAGS)
-+      $(CC) $(SO_CFLAGS) $(LINK_FLAGS) -Wl,--version-script=libaio.map 
-Wl,-soname=$(soname) -o $@ $(libaio_sobjs)
- 
- install: $(all_targets)
-       install -D -m 644 libaio.h $(includedir)/libaio.h
-

diff --git a/dev-libs/libaio/libaio-0.3.112.ebuild 
b/dev-libs/libaio/libaio-0.3.112.ebuild
deleted file mode 100644
index dd90b717f5d9..000000000000
--- a/dev-libs/libaio/libaio-0.3.112.ebuild
+++ /dev/null
@@ -1,87 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-inherit multilib-minimal toolchain-funcs flag-o-matic usr-ldscript
-
-DESCRIPTION="Asynchronous input/output library that uses the kernels native 
interface"
-HOMEPAGE="https://pagure.io/libaio";
-if [[ "${PV}" == 9999 ]] ; then
-       inherit git-r3
-       EGIT_REPO_URI="https://pagure.io/libaio.git";
-else
-       SRC_URI="https://releases.pagure.org/${PN}/${P}.tar.gz";
-       KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux"
-fi
-LICENSE="LGPL-2"
-SLOT="0"
-IUSE="static-libs test"
-RESTRICT="!test? ( test )"
-
-PATCHES=(
-       "${FILESDIR}"/${PN}-0.3.112-cppflags.patch
-       "${FILESDIR}"/${PN}-0.3.111-optional-werror.patch
-       "${FILESDIR}"/${PN}-0.3.112-respect-LDFLAGS.patch
-)
-
-src_prepare() {
-       default
-
-       local sed_args=(
-               -e "/^prefix=/s:/usr:${EPREFIX}/usr:"
-               -e '/^libdir=/s:lib$:$(ABI_LIBDIR):'
-       )
-       if ! use static-libs; then
-               sed_args+=( -e '/\tinstall .*\/libaio.a/d' )
-               # Tests require the static library to be built.
-               use test || sed_args+=( -e '/^all_targets +=/s/ libaio.a//' )
-       fi
-       sed -i "${sed_args[@]}" src/Makefile Makefile || die
-
-       multilib_copy_sources
-}
-
-multilib_src_configure() {
-       if use arm ; then
-               # When building for thumb, we can't allow frame pointers.
-               # http://crbug.com/464517
-               if $(tc-getCPP) ${CFLAGS} ${CPPFLAGS} - <<<$'#ifndef 
__thumb__\n#error\n#endif' >&/dev/null ; then
-                       append-flags -fomit-frame-pointer
-               fi
-       fi
-}
-
-_emake() {
-       CC="$(tc-getCC)" \
-       AR="$(tc-getAR)" \
-       RANLIB="$(tc-getRANLIB)" \
-       ABI_LIBDIR="$(get_libdir)" \
-       CFLAGS_WERROR= \
-       emake "$@"
-}
-
-multilib_src_compile() {
-       _emake
-}
-
-multilib_src_test() {
-       mkdir -p testdir || die
-       # 'make check' breaks with sandbox, 'make partcheck' works
-       _emake partcheck prefix="${S}/src" libdir="${S}/src"
-}
-
-multilib_src_install() {
-       _emake install DESTDIR="${D}"
-}
-
-multilib_src_install_all() {
-       doman man/*
-       dodoc ChangeLog TODO
-
-       # move crap to / for multipath-tools #325355
-       gen_usr_ldscript -a aio
-
-       # This lib is a bare minimal shim on top of kernel syscalls.
-       export QA_DT_NEEDED=$(find "${ED}" -type f -name 'libaio.so.*' -printf 
'/%P\n')
-}

Reply via email to