diff options
author | Florian Schmaus <flow@gentoo.org> | 2022-11-04 10:17:48 +0100 |
---|---|---|
committer | Florian Schmaus <flow@gentoo.org> | 2022-11-04 10:17:56 +0100 |
commit | 11594900f577bc2d6e07b9468edf07a50214be25 (patch) | |
tree | 67073c69ac111ebd3af1ed160542a03ac57b81e1 /sys-libs/liburing | |
parent | mail-client/thunderbird-bin: add 102.4.2, drop 102.4.1 (diff) | |
download | gentoo-11594900f577bc2d6e07b9468edf07a50214be25.tar.gz gentoo-11594900f577bc2d6e07b9468edf07a50214be25.tar.bz2 gentoo-11594900f577bc2d6e07b9468edf07a50214be25.zip |
sys-libs/liburing: drop 2.1-r1
Signed-off-by: Florian Schmaus <flow@gentoo.org>
Diffstat (limited to 'sys-libs/liburing')
-rw-r--r-- | sys-libs/liburing/liburing-2.1-r1.ebuild | 68 |
1 files changed, 0 insertions, 68 deletions
diff --git a/sys-libs/liburing/liburing-2.1-r1.ebuild b/sys-libs/liburing/liburing-2.1-r1.ebuild deleted file mode 100644 index a4e3c0263ce5..000000000000 --- a/sys-libs/liburing/liburing-2.1-r1.ebuild +++ /dev/null @@ -1,68 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit multilib-minimal toolchain-funcs - -DESCRIPTION="Efficient I/O with io_uring" -HOMEPAGE="https://github.com/axboe/liburing" -if [[ "${PV}" == *9999 ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/axboe/liburing.git" -else - SRC_URI="https://git.kernel.dk/cgit/${PN}/snapshot/${P}.tar.bz2" - KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86" -fi -LICENSE="MIT" -SLOT="0/2" # liburing.so major version - -IUSE="static-libs" -# fsync test hangs forever -RESTRICT="test" - -PATCHES=( - # Upstream, bug #816798 - "${FILESDIR}"/${P}-arm-syscall.patch -) - -src_prepare() { - default - - if [[ "${PV}" != *9999 ]] ; then - # Make sure pkgconfig files contain the correct version - # bug #809095 and #833895 - sed -i "/^Version:/s@[[:digit:]\.]\+@${PV}@" ${PN}.spec || die - fi - - multilib_copy_sources -} - -multilib_src_configure() { - local myconf=( - --prefix="${EPREFIX}/usr" - --libdir="${EPREFIX}/usr/$(get_libdir)" - --libdevdir="${EPREFIX}/usr/$(get_libdir)" - --mandir="${EPREFIX}/usr/share/man" - --cc="$(tc-getCC)" - --cxx="$(tc-getCXX)" - ) - # No autotools configure! "econf" will fail. - TMPDIR="${T}" ./configure "${myconf[@]}" || die -} - -multilib_src_compile() { - emake V=1 AR="$(tc-getAR)" RANLIB="$(tc-getRANLIB)" -} - -multilib_src_install_all() { - einstalldocs - - if ! use static-libs ; then - find "${ED}" -type f -name "*.a" -delete || die - fi -} - -multilib_src_test() { - emake V=1 runtests -} |