public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: sys-block/nbdkit/
@ 2023-11-13 11:00 Arsen Arsenović
  0 siblings, 0 replies; 8+ messages in thread
From: Arsen Arsenović @ 2023-11-13 11:00 UTC (permalink / raw
  To: gentoo-commits

commit:     f65a3e38b5e9b39db7d08c22e1c2f5e066d539af
Author:     Arsen Arsenović <arsen <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 13 10:47:23 2023 +0000
Commit:     Arsen Arsenović <arsen <AT> gentoo <DOT> org>
CommitDate: Mon Nov 13 11:00:05 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f65a3e38

sys-block/nbdkit: add 1.36.1

Signed-off-by: Arsen Arsenović <arsen <AT> gentoo.org>

 sys-block/nbdkit/Manifest             |   1 +
 sys-block/nbdkit/metadata.xml         |   1 +
 sys-block/nbdkit/nbdkit-1.36.1.ebuild | 120 ++++++++++++++++++++++++++++++++++
 3 files changed, 122 insertions(+)

diff --git a/sys-block/nbdkit/Manifest b/sys-block/nbdkit/Manifest
index a15cca17ca1c..60eb811e64f5 100644
--- a/sys-block/nbdkit/Manifest
+++ b/sys-block/nbdkit/Manifest
@@ -1 +1,2 @@
 DIST nbdkit-1.32.4.tar.gz 2342420 BLAKE2B 3ea6692a534548707bc488560b0f0bd0ddeb0daa4b2432da5de18a9a735408370c61b8c0a30d7d4ed6c915eb118948d2462ff4565036bec8a77c2c2fb712f4da SHA512 0eb1f0f492ce3558fba8d472b26f7ca3db7beeba411c98e7e06b55c5456399be56f6b4cd4adb54567f744f8e07986af9f676a983da052d174ce2e3c28109dbc5
+DIST nbdkit-1.36.1.tar.gz 2400838 BLAKE2B afbfbda18122b17cbcdcc5b3a04ab37b7dffb139d084b196ef45e33717f376af61189beb63b2541444eaae0ed860b752c20cfe9cf27bf06bfb04bba1b5ce60c8 SHA512 ca0e6e6729fb6f43a9717a3815dfb8ff54a2f182ef079e72b0e5e1b018c55f2205be52a10abc0b0a2243d0737f27b1ccf67c0d9586135454a460d39dad79f042

diff --git a/sys-block/nbdkit/metadata.xml b/sys-block/nbdkit/metadata.xml
index fef0d9dee6e7..ba85f17afedd 100644
--- a/sys-block/nbdkit/metadata.xml
+++ b/sys-block/nbdkit/metadata.xml
@@ -16,5 +16,6 @@
 		<flag name="libvirt">Enable the <pkg>app-emulation/libvirt</pkg> plugin.</flag>
 		<flag name="nbd">Enable the nbd plugin via <pkg>sys-libs/libnbd</pkg>.</flag>
 		<flag name="torrent">Enable the torrent plugin via <pkg>net-libs/libtorrent-rasterbar</pkg>.</flag>
+		<flag name="zlib-ng">Use <pkg>sys-libs/zlib-ng</pkg> to handle zlib decompression.</flag>
 	</use>
 </pkgmetadata>

diff --git a/sys-block/nbdkit/nbdkit-1.36.1.ebuild b/sys-block/nbdkit/nbdkit-1.36.1.ebuild
new file mode 100644
index 000000000000..34ea8cc1967c
--- /dev/null
+++ b/sys-block/nbdkit/nbdkit-1.36.1.ebuild
@@ -0,0 +1,120 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools optfeature bash-completion-r1
+
+DESCRIPTION="NBD server with stable plugin ABI and permissive license"
+HOMEPAGE="https://gitlab.com/nbdkit/nbdkit"
+SRC_URI="https://download.libguestfs.org/nbdkit/$(ver_cut 1-2)-stable/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="
+	curl ext2 nbd gnutls libguestfs libssh libvirt lzma selinux torrent
+	valgrind zlib zlib-ng zstd
+"
+
+RDEPEND="
+	virtual/libiconv
+	selinux? ( sys-libs/libselinux )
+	gnutls? ( net-libs/gnutls:= )
+	curl? ( net-misc/curl )
+	libssh? ( net-libs/libssh:= )
+	libvirt? ( app-emulation/libvirt:= )
+	zlib? ( sys-libs/zlib )
+	zlib-ng? ( sys-libs/zlib-ng )
+	nbd? ( sys-libs/libnbd )
+	lzma? ( app-arch/xz-utils )
+	zstd? ( app-arch/zstd:= )
+	libguestfs? ( app-emulation/libguestfs:= )
+	ext2? ( sys-fs/e2fsprogs )
+	torrent? ( net-libs/libtorrent-rasterbar:= )
+"
+DEPEND="
+	${RDEPEND}
+	valgrind? ( dev-util/valgrind )
+"
+BDEPEND="
+	dev-lang/perl
+"
+
+src_prepare() {
+	default
+
+	# TODO(arsen): This test fails for some reason.
+	cat <<-HACK > tests/test-file-extents.sh || die
+		#!/bin/sh
+		echo Gentoo: This test is skipped
+		exit 77
+	HACK
+
+	eautoreconf
+}
+
+src_configure() {
+	local myeconfargs=(
+		--with-extra=Gentoo
+
+		--with-iconv
+		--with-manpages
+
+		$(use_with selinux)
+		$(use_with gnutls)
+		$(use_with curl)
+		$(use_with libvirt)
+		$(use_with zlib)
+		$(use_with zlib-ng)
+		$(use_with nbd libnbd)
+		$(use_with lzma liblzma)
+		$(use_with zstd libzstd)
+		$(use_with libguestfs)
+		$(use_with ext2)
+		$(use_enable torrent)
+		$(use_enable valgrind)
+
+		--disable-linuxdisk # Not in Gentoo.
+		--disable-libfuzzer # Should not be used normally according to upstream
+		--without-libblkio # Not in Gentoo.
+		--without-bash-completions # Handled manually.
+
+		# TODO(arsen): Bindings left out
+		--disable-perl
+		--disable-python
+		--disable-ocaml
+		--disable-rust
+		--disable-ruby
+		--disable-tcl
+		--disable-lua
+		--disable-golang
+
+		# This just enabled a few code paths with no extra library
+		# dependencies, but it does have an extra xorriso runtime
+		# dependency.  Seeing as it's optional, and it conflates BDEPEND
+		# and RDEPEND; I think it's okay to just specify that it uses
+		# XORRISO installed as xorriso.  Maybe the user should be able
+		# to override this in the future if they prefer one of the other
+		# ISOPROGs?
+		--with-iso
+		ac_cv_prog_XORRISO=xorriso
+
+		# Involves proprietary code and a dlopen mess, see
+		# plugins/vddk/README.VDDK.
+		--disable-vddk
+	)
+
+	econf "${myeconfargs[@]}"
+}
+
+src_install() {
+	default
+
+	find "${ED}" -name '*.la' -delete || die
+	dobashcomp bash-completion/nbdkit
+}
+
+pkg_postinst() {
+	optfeature "virtual ISO plugin via xorriso" dev-libs/libisoburn
+}


^ permalink raw reply related	[flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-block/nbdkit/
@ 2024-01-23  5:07 Ionen Wolkens
  0 siblings, 0 replies; 8+ messages in thread
From: Ionen Wolkens @ 2024-01-23  5:07 UTC (permalink / raw
  To: gentoo-commits

commit:     f67a7f14895ad6a5fbc4b3ebf0326b38840021d9
Author:     Matoro Mahri <matoro_gentoo <AT> matoro <DOT> tk>
AuthorDate: Mon Jan 22 21:39:22 2024 +0000
Commit:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Tue Jan 23 05:05:15 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f67a7f14

sys-block/nbdkit: Keyword 1.36.1 sparc, #917288

Signed-off-by: Matoro Mahri <matoro_gentoo <AT> matoro.tk>
Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>

 sys-block/nbdkit/nbdkit-1.36.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-block/nbdkit/nbdkit-1.36.1.ebuild b/sys-block/nbdkit/nbdkit-1.36.1.ebuild
index afd14e603f98..a1f22134cda2 100644
--- a/sys-block/nbdkit/nbdkit-1.36.1.ebuild
+++ b/sys-block/nbdkit/nbdkit-1.36.1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://download.libguestfs.org/nbdkit/$(ver_cut 1-2)-stable/${P}.tar.g
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~ppc64 ~sparc ~x86"
 IUSE="
 	curl ext2 nbd gnutls libguestfs libssh libvirt lzma selinux torrent
 	valgrind zlib zlib-ng zstd


^ permalink raw reply related	[flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-block/nbdkit/
@ 2023-12-02 10:56 Arthur Zamarin
  0 siblings, 0 replies; 8+ messages in thread
From: Arthur Zamarin @ 2023-12-02 10:56 UTC (permalink / raw
  To: gentoo-commits

commit:     51b986625ba594a1a91d1b401dbc4a19e0c1e12a
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Dec  2 10:56:01 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Dec  2 10:56:01 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51b98662

sys-block/nbdkit: Keyword 1.36.1 ppc64, #892954

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-block/nbdkit/nbdkit-1.36.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-block/nbdkit/nbdkit-1.36.1.ebuild b/sys-block/nbdkit/nbdkit-1.36.1.ebuild
index 34ea8cc1967c..1e45c62de89d 100644
--- a/sys-block/nbdkit/nbdkit-1.36.1.ebuild
+++ b/sys-block/nbdkit/nbdkit-1.36.1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://download.libguestfs.org/nbdkit/$(ver_cut 1-2)-stable/${P}.tar.g
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~ppc64 ~x86"
 IUSE="
 	curl ext2 nbd gnutls libguestfs libssh libvirt lzma selinux torrent
 	valgrind zlib zlib-ng zstd


^ permalink raw reply related	[flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-block/nbdkit/
@ 2023-10-07 16:03 Mike Gilbert
  0 siblings, 0 replies; 8+ messages in thread
From: Mike Gilbert @ 2023-10-07 16:03 UTC (permalink / raw
  To: gentoo-commits

commit:     feb20a1cd7951ad0e16b3aff7c1fe4d0277a9a47
Author:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Sat Oct  7 16:02:36 2023 +0000
Commit:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Sat Oct  7 16:02:36 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=feb20a1c

sys-block/nbdkit: drop WANT_LIBTOOL=none

Closes: https://bugs.gentoo.org/915188
Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>

 sys-block/nbdkit/nbdkit-1.32.4.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/sys-block/nbdkit/nbdkit-1.32.4.ebuild b/sys-block/nbdkit/nbdkit-1.32.4.ebuild
index 65b7b4cfa153..556001f72a78 100644
--- a/sys-block/nbdkit/nbdkit-1.32.4.ebuild
+++ b/sys-block/nbdkit/nbdkit-1.32.4.ebuild
@@ -3,7 +3,6 @@
 
 EAPI=8
 
-WANT_LIBTOOL=none
 inherit autotools optfeature
 
 DESCRIPTION="NBD server with stable plugin ABI and permissive license"


^ permalink raw reply related	[flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-block/nbdkit/
@ 2023-05-17  0:14 Sam James
  0 siblings, 0 replies; 8+ messages in thread
From: Sam James @ 2023-05-17  0:14 UTC (permalink / raw
  To: gentoo-commits

commit:     83c56bbcffee8f902238c678f88e6a865399473b
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed May 17 00:14:29 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed May 17 00:14:29 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83c56bbc

sys-block/nbdkit: Keyword 1.32.4 sparc, #906331

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-block/nbdkit/nbdkit-1.32.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-block/nbdkit/nbdkit-1.32.4.ebuild b/sys-block/nbdkit/nbdkit-1.32.4.ebuild
index 36d260e9022c..65b7b4cfa153 100644
--- a/sys-block/nbdkit/nbdkit-1.32.4.ebuild
+++ b/sys-block/nbdkit/nbdkit-1.32.4.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://download.libguestfs.org/nbdkit/$(ver_cut 1-2)-stable/${P}.tar.g
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 ~sparc ~x86"
 IUSE="curl ext2 nbd gnutls libguestfs libssh libvirt lzma selinux torrent valgrind zlib zstd"
 
 RDEPEND="


^ permalink raw reply related	[flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-block/nbdkit/
@ 2023-05-16  1:52 Sam James
  0 siblings, 0 replies; 8+ messages in thread
From: Sam James @ 2023-05-16  1:52 UTC (permalink / raw
  To: gentoo-commits

commit:     f1c7a96aac243ac42771066adf7de9d50312f309
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue May 16 01:43:26 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue May 16 01:52:20 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1c7a96a

sys-block/nbdkit: add Valgrind support

It does do at least one thing - suppress dlclose() which confuses Valgrind.

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-block/nbdkit/nbdkit-1.32.4.ebuild | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/sys-block/nbdkit/nbdkit-1.32.4.ebuild b/sys-block/nbdkit/nbdkit-1.32.4.ebuild
index e7c7966aeff5..36d260e9022c 100644
--- a/sys-block/nbdkit/nbdkit-1.32.4.ebuild
+++ b/sys-block/nbdkit/nbdkit-1.32.4.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://download.libguestfs.org/nbdkit/$(ver_cut 1-2)-stable/${P}.tar.g
 LICENSE="BSD"
 SLOT="0"
 KEYWORDS="amd64 ~x86"
-IUSE="curl ext2 nbd gnutls libguestfs libssh libvirt lzma selinux torrent zlib zstd"
+IUSE="curl ext2 nbd gnutls libguestfs libssh libvirt lzma selinux torrent valgrind zlib zstd"
 
 RDEPEND="
 	virtual/libiconv
@@ -30,7 +30,10 @@ RDEPEND="
 	ext2? ( sys-fs/e2fsprogs )
 	torrent? ( net-libs/libtorrent-rasterbar:= )
 "
-DEPEND="${RDEPEND}"
+DEPEND="
+	${RDEPEND}
+	valgrind? ( dev-util/valgrind )
+"
 BDEPEND="
 	dev-lang/perl
 "
@@ -70,9 +73,9 @@ src_configure() {
 		$(use_with libguestfs)
 		$(use_with ext2)
 		$(use_enable torrent)
+		$(use_enable valgrind)
 
 		--disable-linuxdisk # Not in Gentoo.
-		--disable-valgrind  # Seems to not do anything?
 		--disable-libfuzzer # Should not be used normally according to upstream
 
 		# TODO(arsen): Bindings left out


^ permalink raw reply related	[flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-block/nbdkit/
@ 2023-04-01 16:30 Arthur Zamarin
  0 siblings, 0 replies; 8+ messages in thread
From: Arthur Zamarin @ 2023-04-01 16:30 UTC (permalink / raw
  To: gentoo-commits

commit:     d27879931f081db120570d193d634e33d8b6291f
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Apr  1 16:30:16 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Apr  1 16:30:16 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2787993

sys-block/nbdkit: Stabilize 1.32.4 amd64, #891965

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-block/nbdkit/nbdkit-1.32.4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-block/nbdkit/nbdkit-1.32.4.ebuild b/sys-block/nbdkit/nbdkit-1.32.4.ebuild
index 30075e8db9f2..e7c7966aeff5 100644
--- a/sys-block/nbdkit/nbdkit-1.32.4.ebuild
+++ b/sys-block/nbdkit/nbdkit-1.32.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -12,7 +12,7 @@ SRC_URI="https://download.libguestfs.org/nbdkit/$(ver_cut 1-2)-stable/${P}.tar.g
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="curl ext2 nbd gnutls libguestfs libssh libvirt lzma selinux torrent zlib zstd"
 
 RDEPEND="


^ permalink raw reply related	[flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-block/nbdkit/
@ 2022-12-05 19:00 Arthur Zamarin
  0 siblings, 0 replies; 8+ messages in thread
From: Arthur Zamarin @ 2022-12-05 19:00 UTC (permalink / raw
  To: gentoo-commits

commit:     311a24be209df8fe5c30a2a89dd49af79cc90879
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Mon Dec  5 19:00:18 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Mon Dec  5 19:00:18 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=311a24be

sys-block/nbdkit: Keyword 1.32.4 x86, #884187

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-block/nbdkit/nbdkit-1.32.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-block/nbdkit/nbdkit-1.32.4.ebuild b/sys-block/nbdkit/nbdkit-1.32.4.ebuild
index 6f5ddf48b7fa..30075e8db9f2 100644
--- a/sys-block/nbdkit/nbdkit-1.32.4.ebuild
+++ b/sys-block/nbdkit/nbdkit-1.32.4.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://download.libguestfs.org/nbdkit/$(ver_cut 1-2)-stable/${P}.tar.g
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~x86"
 IUSE="curl ext2 nbd gnutls libguestfs libssh libvirt lzma selinux torrent zlib zstd"
 
 RDEPEND="


^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2024-01-23  5:07 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-11-13 11:00 [gentoo-commits] repo/gentoo:master commit in: sys-block/nbdkit/ Arsen Arsenović
  -- strict thread matches above, loose matches on Subject: below --
2024-01-23  5:07 Ionen Wolkens
2023-12-02 10:56 Arthur Zamarin
2023-10-07 16:03 Mike Gilbert
2023-05-17  0:14 Sam James
2023-05-16  1:52 Sam James
2023-04-01 16:30 Arthur Zamarin
2022-12-05 19:00 Arthur Zamarin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox