commit: 5f7192dc48dcff29ff186cc58d7ae059aac1e700 Author: Christopher Byrne <salah.coronya <AT> gmail <DOT> com> AuthorDate: Wed Jan 14 04:59:19 2026 +0000 Commit: Arsen Arsenović <arsen <AT> gentoo <DOT> org> CommitDate: Fri Jan 16 21:09:31 2026 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f7192dc
sys-libs/libnbd: drop 1.23.4-r2 Signed-off-by: Christopher Byrne <salah.coronya <AT> gmail.com> Part-of: https://github.com/gentoo/gentoo/pull/45370 Closes: https://github.com/gentoo/gentoo/pull/45370 Signed-off-by: Arsen Arsenović <arsen <AT> gentoo.org> sys-libs/libnbd/Manifest | 1 - sys-libs/libnbd/libnbd-1.23.4-r2.ebuild | 99 --------------------------------- 2 files changed, 100 deletions(-) diff --git a/sys-libs/libnbd/Manifest b/sys-libs/libnbd/Manifest index 4d944857f422..49eec71ae706 100644 --- a/sys-libs/libnbd/Manifest +++ b/sys-libs/libnbd/Manifest @@ -1,5 +1,4 @@ DIST libnbd-1.18.1.tar.gz 1482736 BLAKE2B d3f0b2993fa1392df93b0bbc5d63805489ad1a82cf5bcc5eb5c3b5b7e7e6c40095471ab8fc964cc0e5c7a99affa7150f7be38cc16c42f27fc4cdc16bd0ca0359 SHA512 f4262666be55d580550e053355f14f80d352bf869ae7241e9fa032a9b5cd9e027eb89a536871c1206422413fc7ed745da7d612b3e1413f76ec17168705fbf12c DIST libnbd-1.22.5.tar.gz 1574844 BLAKE2B ab3bdea1774c9aadd2613ac56ada0d8797c75186ec0f84980231f0ad4bf3f71cf4a0f909f160b33b8719c3eee993cf6e7151dddb6a427eeedfa0e605f5e93804 SHA512 5440f1755a4724265336d59af37aaba9e8426821689d045ce307316772ceb3e8d7840838b2a2f378db014e6927f4627fc3f33a58b24519e515af6474d0669bf2 -DIST libnbd-1.23.4.tar.gz 1578765 BLAKE2B 5760ef9270c37a3ec8391183951612ea30becd79df6e4fd33719eadf95c823080770f291abe23c02482bfacee7f4f7097baf343c2bbc6ae797a5eb29cb30f51b SHA512 870615431885f6755808a33d287be57ec4b019199daf40a0643d5c6fe4d00d04424a82c55324106f07c96b4004896121654ab545a7c9e05c64728c2fa853f5d4 DIST libnbd-1.23.9.tar.gz 1594098 BLAKE2B af1448d4e071600d3c2e74b77131c00f79a30ac279be2782dc94da91bab16cdd47657cf53522d1ffb022075a0da0b54fd19a4ec86a44e87bfc73fffd0d2a5b1b SHA512 0ff4fa3aea2e841fe22990055e073afa7262781d764c05830a14cec64142d5c859411d6cf593f95c12a0a47eb38b1cd6f4bf969af0e229ccc6dc7b44641ede49 DIST libnbd-1.24.0.tar.gz 1621956 BLAKE2B c44ff4147a1166a3b165afdd6af85ab415e3d8d27dc27514f5a4cb814b8f6bd60d27a38e445bb4b2050338476daf2a1e691c02c93067c45383b45cfef4a8381f SHA512 db05b606a19b3efb6a53c05b5b7ea96571892b7540fff1f4df0c53d0f82e3817f724fd0aa665597b58a4613545b03d7df6e1ac8f3fa64c7f85e824ca2221f3ae diff --git a/sys-libs/libnbd/libnbd-1.23.4-r2.ebuild b/sys-libs/libnbd/libnbd-1.23.4-r2.ebuild deleted file mode 100644 index 8926b581fc34..000000000000 --- a/sys-libs/libnbd/libnbd-1.23.4-r2.ebuild +++ /dev/null @@ -1,99 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{10..13} ) - -inherit autotools bash-completion-r1 dot-a python-single-r1 - -MY_PV_1="$(ver_cut 1-2)" -MY_PV_2="$(ver_cut 2)" -[[ $(( ${MY_PV_2} % 2 )) -eq 0 ]] && SD="stable" || SD="development" - -DESCRIPTION="NBD client library in userspace" -HOMEPAGE="https://gitlab.com/nbdkit/libnbd" -SRC_URI="https://download.libguestfs.org/libnbd/${MY_PV_1}-${SD}/${P}.tar.gz" - -LICENSE="LGPL-2.1+" -SLOT="0" -KEYWORDS="~amd64 ~ppc64 ~sparc ~x86" -IUSE="examples fuse gnutls go ocaml python test" - -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" -RESTRICT="!test? ( test )" - -# libxml2 - URI support -RDEPEND=" - dev-libs/libxml2:= - examples? ( dev-libs/glib - dev-libs/libev ) - fuse? ( sys-fs/fuse:3 ) - gnutls? ( net-libs/gnutls:= ) - go? ( dev-lang/go ) - ocaml? ( >=dev-lang/ocaml-4.03:=[ocamlopt] ) - python? ( ${PYTHON_DEPS} ) -" -DEPEND=" - ${RDEPEND} - ocaml? ( dev-ml/findlib ) - test? ( sys-block/nbdkit[gnutls?] - net-libs/gnutls:=[tools] - ocaml? ( dev-ml/findlib[ocamlopt] ) -) -" -BDEPEND="dev-lang/perl" - -PATCHES=( - "${FILESDIR}/${PN}-1.22.2-build-Remove-automagic-compiling-of-examples.patch" - "${FILESDIR}/${PN}-1.22.2-Makefile.am-Conditionally-compile-some-SUBDIRS.patch" - ) - -pkg_setup() { - if use python; then - python_setup - fi -} - -src_prepare() { - default - - # Broken under sandbox. - cat <<-EOF > lib/test-fork-safe-execvpe.sh || die - #!/bin/sh - : - EOF - - eautoreconf -} - -src_configure() { - # /usr/lib64/ocaml/nbd/libmlnbd.a - # /usr/lib64/ocaml/stublibs/dllmlnbd.so - use ocaml && lto-guarantee-fat - - local myeconfargs=( - $(use_enable examples) - $(use_enable fuse) - $(use_enable go golang) - $(use_enable ocaml) - $(use_enable python) - $(use_with gnutls) - --disable-rust - --disable-ublk # Not in portage - --with-libxml2 - ) - - export bashcompdir="$(get_bashcompdir)" - - econf "${myeconfargs[@]}" -} - -src_install() { - default - - use ocaml && strip-lto-bytecode - - find "${ED}" -name '*.la' -delete || die - use python && python_optimize -}
