public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Mike Gilbert" <floppym@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/libnbd/
Date: Wed, 26 Mar 2025 17:40:29 +0000 (UTC)	[thread overview]
Message-ID: <1743010572.04435e7cafa0fe5259adbdf277e1f5286b1d0ee2.floppym@gentoo> (raw)

commit:     04435e7cafa0fe5259adbdf277e1f5286b1d0ee2
Author:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 26 17:36:12 2025 +0000
Commit:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Wed Mar 26 17:36:12 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04435e7c

sys-libs/libnbd: drop 1.14.1, 1.16.1-r1, 1.18.1

Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>

 sys-libs/libnbd/Manifest                |  2 -
 sys-libs/libnbd/libnbd-1.14.1.ebuild    | 64 --------------------------
 sys-libs/libnbd/libnbd-1.16.1-r1.ebuild | 80 --------------------------------
 sys-libs/libnbd/libnbd-1.18.1.ebuild    | 81 ---------------------------------
 4 files changed, 227 deletions(-)

diff --git a/sys-libs/libnbd/Manifest b/sys-libs/libnbd/Manifest
index ee6963a1435b..c36bf4f22618 100644
--- a/sys-libs/libnbd/Manifest
+++ b/sys-libs/libnbd/Manifest
@@ -1,3 +1 @@
-DIST libnbd-1.14.1.tar.gz 1257547 BLAKE2B 4c2fc02abc1d069b23fb8cc52b3359f10ebd23f2bc8cb359274a4fc2781413445d64ca1013b3123dff090d359a0e28076aa410220a05b155f95320238d1b99ee SHA512 9d95cf7a66926d00ec9aacfc6d04f2dc885ccfed07c78f1e6693190dd14132d30d6d1ff7d46e46007732a8a20a9fbf648775bc0b3371ad49eff4ce1e44e47209
-DIST libnbd-1.16.1.tar.gz 1379437 BLAKE2B 13020c21663e988d46fb5a048b31c58b0256c7c547fee2b95bde139324043d6102a0a901c98ffa75f88eca38cd0293329c62d6613435b74e65802c083af3c58f SHA512 e840cff964e847015955f0a0dcc7d03899d5e0fb0bdd3f5597ec87169d0b2689213fed72fd3afc84300ec86ed10703e9396599c11750ef10df66cf61853210a5
 DIST libnbd-1.18.1.tar.gz 1482736 BLAKE2B d3f0b2993fa1392df93b0bbc5d63805489ad1a82cf5bcc5eb5c3b5b7e7e6c40095471ab8fc964cc0e5c7a99affa7150f7be38cc16c42f27fc4cdc16bd0ca0359 SHA512 f4262666be55d580550e053355f14f80d352bf869ae7241e9fa032a9b5cd9e027eb89a536871c1206422413fc7ed745da7d612b3e1413f76ec17168705fbf12c

diff --git a/sys-libs/libnbd/libnbd-1.14.1.ebuild b/sys-libs/libnbd/libnbd-1.14.1.ebuild
deleted file mode 100644
index 7e6f7e91caf7..000000000000
--- a/sys-libs/libnbd/libnbd-1.14.1.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit bash-completion-r1
-
-DESCRIPTION="NBD client library in userspace"
-HOMEPAGE="https://gitlab.com/nbdkit/libnbd"
-SRC_URI="https://download.libguestfs.org/libnbd/$(ver_cut 1-2)-stable/${P}.tar.gz"
-
-LICENSE="LGPL-2.1+"
-SLOT="0"
-KEYWORDS="amd64 ~sparc ~x86"
-IUSE="fuse gnutls uri-support test"
-
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-	fuse? ( sys-fs/fuse:3 )
-	gnutls? ( net-libs/gnutls:= )
-	uri-support? ( dev-libs/libxml2 )
-"
-DEPEND="
-	${RDEPEND}
-	test? ( sys-block/nbd[gnutls?] )
-"
-BDEPEND="dev-lang/perl"
-
-src_prepare() {
-	default
-
-	# Some tests require impossible to provide features, such as fuse.
-	# These are marked by requires_... in the functions.sh shell
-	# library.  Rather than listing these tests, let's list out the
-	# impossible to support features and make them skip.
-	cat <<-EOF >> tests/functions.sh.in || die
-		requires_fuse ()
-		{
-			requires false
-		}
-	EOF
-}
-
-src_configure() {
-	local myeconfargs=(
-		$(use_enable fuse)
-		$(use_with gnutls)
-		$(use_with uri-support libxml2)
-		--disable-ocaml
-		--disable-python
-		--disable-golang
-	)
-
-	export bashcompdir="$(get_bashcompdir)"
-
-	econf "${myeconfargs[@]}"
-}
-
-src_install() {
-	default
-
-	find "${ED}" -name '*.la' -delete || die
-}

diff --git a/sys-libs/libnbd/libnbd-1.16.1-r1.ebuild b/sys-libs/libnbd/libnbd-1.16.1-r1.ebuild
deleted file mode 100644
index 6be886ede4e7..000000000000
--- a/sys-libs/libnbd/libnbd-1.16.1-r1.ebuild
+++ /dev/null
@@ -1,80 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..11} )
-inherit bash-completion-r1 python-single-r1
-
-DESCRIPTION="NBD client library in userspace"
-HOMEPAGE="https://gitlab.com/nbdkit/libnbd"
-SRC_URI="https://download.libguestfs.org/libnbd/$(ver_cut 1-2)-stable/${P}.tar.gz"
-
-LICENSE="LGPL-2.1+"
-SLOT="0"
-KEYWORDS="~amd64 ~sparc ~x86"
-IUSE="fuse gnutls go ocaml python test"
-
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-RESTRICT="!test? ( test )"
-
-# libxml2 - URI support
-RDEPEND="
-	dev-libs/libxml2
-	fuse? ( sys-fs/fuse:3 )
-	gnutls? ( net-libs/gnutls:= )
-	python? ( ${PYTHON_DEPS} )
-	go? ( dev-lang/go )
-	ocaml? ( >=dev-lang/ocaml-4.03:=[ocamlopt] )
-"
-DEPEND="
-	${RDEPEND}
-	test? (
-		sys-block/nbd[gnutls?]
-		sys-block/nbdkit[gnutls?]
-	)
-"
-BDEPEND="dev-lang/perl"
-
-src_prepare() {
-	default
-
-	# Some tests require impossible to provide features, such as fuse.
-	# These are marked by requires_... in the functions.sh shell
-	# library.  Rather than listing these tests, let's list out the
-	# impossible to support features and make them skip.
-	cat <<-EOF >> tests/functions.sh.in || die
-		requires_fuse ()
-		{
-			requires false
-		}
-	EOF
-
-	# Broken under sandbox.
-	cat <<-EOF > lib/test-fork-safe-execvpe.sh || die
-	#!/bin/sh
-	:
-	EOF
-}
-
-src_configure() {
-	local myeconfargs=(
-		$(use_enable fuse)
-		$(use_enable go golang)
-		$(use_enable ocaml)
-		$(use_enable python)
-		$(use_with gnutls)
-		--with-libxml2
-	)
-
-	export bashcompdir="$(get_bashcompdir)"
-
-	econf "${myeconfargs[@]}"
-}
-
-src_install() {
-	default
-
-	find "${ED}" -name '*.la' -delete || die
-	use python && python_optimize
-}

diff --git a/sys-libs/libnbd/libnbd-1.18.1.ebuild b/sys-libs/libnbd/libnbd-1.18.1.ebuild
deleted file mode 100644
index f113c5cc6050..000000000000
--- a/sys-libs/libnbd/libnbd-1.18.1.ebuild
+++ /dev/null
@@ -1,81 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..11} )
-inherit bash-completion-r1 python-single-r1
-
-DESCRIPTION="NBD client library in userspace"
-HOMEPAGE="https://gitlab.com/nbdkit/libnbd"
-SRC_URI="https://download.libguestfs.org/libnbd/$(ver_cut 1-2)-stable/${P}.tar.gz"
-
-LICENSE="LGPL-2.1+"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc64 ~sparc ~x86"
-IUSE="fuse gnutls go ocaml python test"
-
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-RESTRICT="!test? ( test )"
-
-# libxml2 - URI support
-RDEPEND="
-	dev-libs/libxml2
-	fuse? ( sys-fs/fuse:3 )
-	gnutls? ( net-libs/gnutls:= )
-	python? ( ${PYTHON_DEPS} )
-	go? ( dev-lang/go )
-	ocaml? ( >=dev-lang/ocaml-4.03:=[ocamlopt] )
-"
-DEPEND="
-	${RDEPEND}
-	test? (
-		sys-block/nbd[gnutls?]
-		sys-block/nbdkit[gnutls?]
-	)
-"
-BDEPEND="dev-lang/perl"
-
-src_prepare() {
-	default
-
-	# Some tests require impossible to provide features, such as fuse.
-	# These are marked by requires_... in the functions.sh shell
-	# library.  Rather than listing these tests, let's list out the
-	# impossible to support features and make them skip.
-	cat <<-EOF >> tests/functions.sh.in || die
-		requires_fuse ()
-		{
-			requires false
-		}
-	EOF
-
-	# Broken under sandbox.
-	cat <<-EOF > lib/test-fork-safe-execvpe.sh || die
-	#!/bin/sh
-	:
-	EOF
-}
-
-src_configure() {
-	local myeconfargs=(
-		$(use_enable fuse)
-		$(use_enable go golang)
-		$(use_enable ocaml)
-		$(use_enable python)
-		$(use_with gnutls)
-		--disable-rust # TODO(arsen): security bump takes priority
-		--with-libxml2
-	)
-
-	export bashcompdir="$(get_bashcompdir)"
-
-	econf "${myeconfargs[@]}"
-}
-
-src_install() {
-	default
-
-	find "${ED}" -name '*.la' -delete || die
-	use python && python_optimize
-}


             reply	other threads:[~2025-03-26 17:40 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-03-26 17:40 Mike Gilbert [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-07-24  4:52 [gentoo-commits] repo/gentoo:master commit in: sys-libs/libnbd/ Eli Schwartz
2025-06-28  2:16 Sam James
2025-06-26 20:07 Sam James
2025-05-11 15:33 Sam James
2025-05-06  1:08 Sam James
2025-03-27 17:55 Arthur Zamarin
2025-03-26 17:40 Mike Gilbert
2025-01-27 21:27 Sam James
2025-01-27 21:27 Sam James
2024-05-03 21:06 Arsen Arsenović
2023-12-02 10:56 Arthur Zamarin
2023-11-13 11:00 Arsen Arsenović
2023-05-17  0:14 Sam James
2023-05-14 19:06 Arsen Arsenović
2023-05-14 18:56 Arsen Arsenović
2023-05-14 16:42 Arsen Arsenović
2023-04-01 16:30 Arthur Zamarin
2023-02-28  1:30 Sam James
2022-12-05 19:00 Arthur Zamarin
2022-12-03 11:06 Sam James

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1743010572.04435e7cafa0fe5259adbdf277e1f5286b1d0ee2.floppym@gentoo \
    --to=floppym@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox