From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B9F96138350 for ; Mon, 2 Mar 2020 17:10:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5ECD9E0883; Mon, 2 Mar 2020 17:10:25 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2F87BE0883 for ; Mon, 2 Mar 2020 17:10:25 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2B18634F22C for ; Mon, 2 Mar 2020 17:10:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DF93D15D for ; Mon, 2 Mar 2020 17:10:17 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1583169013.9398e247b56c584b4c55a05bdecae2cb2ab44bc0.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/liburing/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/liburing/Manifest sys-libs/liburing/liburing-0.5.ebuild sys-libs/liburing/metadata.xml X-VCS-Directories: sys-libs/liburing/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 9398e247b56c584b4c55a05bdecae2cb2ab44bc0 X-VCS-Branch: master Date: Mon, 2 Mar 2020 17:10:17 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 357a01f2-c0fa-450f-b1b9-8fac457c18b1 X-Archives-Hash: 4ac3dc5e432da9cf167d868e5ba99a15 commit: 9398e247b56c584b4c55a05bdecae2cb2ab44bc0 Author: Lars Wendler gentoo org> AuthorDate: Mon Mar 2 16:27:13 2020 +0000 Commit: Lars Wendler gentoo org> CommitDate: Mon Mar 2 17:10:13 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9398e247 sys-libs/liburing: Initial commit Package-Manager: Portage-2.3.91, Repoman-2.3.20 Signed-off-by: Lars Wendler gentoo.org> sys-libs/liburing/Manifest | 1 + sys-libs/liburing/liburing-0.5.ebuild | 44 +++++++++++++++++++++++++++++++++++ sys-libs/liburing/metadata.xml | 11 +++++++++ 3 files changed, 56 insertions(+) diff --git a/sys-libs/liburing/Manifest b/sys-libs/liburing/Manifest new file mode 100644 index 00000000000..1cda07942a5 --- /dev/null +++ b/sys-libs/liburing/Manifest @@ -0,0 +1 @@ +DIST liburing-0.5.tar.bz2 75525 BLAKE2B 7b58a59212a6c3527c0adfc102add73dc875885bcdcd6ba9dcd64020d6c8f277b5cc0e1d33860aab0d9495f0409461278175aed7483aa9c44d3c7f78b1238920 SHA512 70202f25fad89787c5c0f0022dddebd3f5ff8eb572ec50c36cc3980f291b456de445c1cf411761be1438e22c69bdb446e1e5b3c10317ec00cb3412a63508faa4 diff --git a/sys-libs/liburing/liburing-0.5.ebuild b/sys-libs/liburing/liburing-0.5.ebuild new file mode 100644 index 00000000000..df14f2d99ec --- /dev/null +++ b/sys-libs/liburing/liburing-0.5.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit multilib-minimal toolchain-funcs + +DESCRIPTION="Efficient I/O with io_uring" +HOMEPAGE="https://github.com/axboe/liburing" +SRC_URI="https://git.kernel.dk/cgit/${PN}/snapshot/${P}.tar.bz2" +LICENSE="MIT" +SLOT="0" + +KEYWORDS="~amd64 ~x86" +IUSE="static-libs" + +src_prepare() { + default + 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)" + ) + # No autotools configure! "econf" will fail. + TMPDIR="${T}" ./configure "${myconf[@]}" +} + +multilib_src_compile() { + emake V=1 +} + +multilib_src_install_all() { + einstalldocs + + if ! use static-libs ; then + find "${ED}" -type f -name "*.a" -delete || die + fi +} diff --git a/sys-libs/liburing/metadata.xml b/sys-libs/liburing/metadata.xml new file mode 100644 index 00000000000..e9a23bab52b --- /dev/null +++ b/sys-libs/liburing/metadata.xml @@ -0,0 +1,11 @@ + + + + + polynomial-c@gentoo.org + Lars Wendler + + + axboe/liburing + +