mirror of
https://github.com/flatcar/scripts.git
synced 2025-08-09 14:06:58 +02:00
sys-libs/libnvme: Sync with Gentoo
It's from Gentoo commit 3ae2685d277e65d041e8b86a18fa637973e9d6c0.
This commit is contained in:
parent
9ce590368b
commit
7cc11374e4
@ -1,3 +1,4 @@
|
||||
DIST libnvme-1.10.gh.tar.gz 720737 BLAKE2B eb5941cbdec1ccf5782c3e438b55dd09ddd2c3b9ac1079d5642896d0d80d75ece3149ebe9d965c2783a5ae2ddfad64ae0051f9c63822a739108d53eb44a583db SHA512 44e8a407c9fda8c296163832c14ba167caab53eab315bd2dee94275458532429f12a35e0adef1356420d83127e658a354ce65ac946acaa53bef2d46a8189054c
|
||||
DIST libnvme-1.7.1.tar.gz 604220 BLAKE2B b02bf0914be73f5877f418bebdbed31dfb019484fb9f6e169c3474d90306706b8e787003a472f13bedb72e90eff39a30ba35df252a3cdf4ea08a362c3f9e221b SHA512 aea986ae35eafa17482e07015228d5a7d529d41148f4cee9e4619adc2460abb5460d60cd91177462cbcaf2e94e5870026ff9e45548f91d9f90b65a6268eb3abb
|
||||
DIST libnvme-1.8.tar.gz 629032 BLAKE2B cba5215983fa14e485156cf68613a7acca07b7e0fdac41663ebf2246c9f6fd6d1bfcebc7c1457ab4217705769ebea382e85726eb302fd9af6f6b85cec7b2e14d SHA512 ba0cec72fd6c9bb29b29c4342be7b25aec1f31157a094ad387a1105cbd1961ab600e1448a2462d8be2af91d5251b2970d6d06d4871ce96604c5be204d6096bcb
|
||||
DIST libnvme-1.9.tar.gz 657952 BLAKE2B e9d655709770f7c1d9c916cc9539b8ea096b0d5bf6b12079c2db494f070c98b6c388e2a79ed27a4932994a00d44da93fa3119ee224c48d40347a483548397349 SHA512 39a3346805143f93a17d00cfcb6fb75f82154658db6079134c09dfa989995ac5de79b1ce1ac091b4e997523d3216829ce9eac44110c9f59f9fd21636529c8b25
|
||||
|
76
sdk_container/src/third_party/portage-stable/sys-libs/libnvme/libnvme-1.10.ebuild
vendored
Normal file
76
sdk_container/src/third_party/portage-stable/sys-libs/libnvme/libnvme-1.10.ebuild
vendored
Normal file
@ -0,0 +1,76 @@
|
||||
# Copyright 1999-2024 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{10..13} )
|
||||
inherit python-r1 meson
|
||||
|
||||
DESCRIPTION="C Library for NVM Express on Linux"
|
||||
HOMEPAGE="https://github.com/linux-nvme/libnvme"
|
||||
SRC_URI="https://github.com/linux-nvme/libnvme/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz"
|
||||
|
||||
LICENSE="LGPL-2.1+"
|
||||
SLOT="0/1"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86"
|
||||
IUSE="dbus +json keyutils python ssl test +uuid"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
REQUIRED_USE="
|
||||
python? ( ${PYTHON_REQUIRED_USE} )
|
||||
"
|
||||
|
||||
DEPEND="
|
||||
json? ( dev-libs/json-c:= )
|
||||
keyutils? ( sys-apps/keyutils:= )
|
||||
dbus? ( sys-apps/dbus:= )
|
||||
python? ( ${PYTHON_DEPS} )
|
||||
ssl? ( >=dev-libs/openssl-1.1:= )
|
||||
uuid? ( sys-apps/util-linux:= )
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
"
|
||||
BDEPEND="
|
||||
dev-lang/swig
|
||||
"
|
||||
|
||||
src_configure() {
|
||||
local emesonargs=(
|
||||
-Dpython=disabled
|
||||
$(meson_use test tests)
|
||||
$(meson_feature json json-c)
|
||||
$(meson_feature dbus libdbus)
|
||||
$(meson_feature keyutils)
|
||||
$(meson_feature ssl openssl)
|
||||
)
|
||||
meson_src_configure
|
||||
}
|
||||
|
||||
python_compile() {
|
||||
local emesonargs=(
|
||||
-Dpython=enabled
|
||||
)
|
||||
meson_src_configure --reconfigure
|
||||
meson_src_compile
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
meson_src_compile
|
||||
|
||||
if use python; then
|
||||
python_copy_sources
|
||||
python_foreach_impl python_compile
|
||||
fi
|
||||
}
|
||||
|
||||
python_install() {
|
||||
meson_src_install
|
||||
use python && python_optimize
|
||||
}
|
||||
|
||||
src_install() {
|
||||
use python && python_foreach_impl python_install
|
||||
|
||||
meson_src_install
|
||||
}
|
Loading…
Reference in New Issue
Block a user