commit:     46de6853658089af0843f61fa1d7bb9cf8644206
Author:     Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Fri Nov  1 16:47:32 2024 +0000
Commit:     Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Fri Nov  1 16:56:19 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46de6853

sys-block/nbd: drop 3.25

Bug: https://bugs.gentoo.org/937330
Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>

 sys-block/nbd/nbd-3.25.ebuild | 82 -------------------------------------------
 1 file changed, 82 deletions(-)

diff --git a/sys-block/nbd/nbd-3.25.ebuild b/sys-block/nbd/nbd-3.25.ebuild
deleted file mode 100644
index f5d432fe7969..000000000000
--- a/sys-block/nbd/nbd-3.25.ebuild
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit systemd
-
-DESCRIPTION="Userland client/server for kernel network block device"
-HOMEPAGE="https://nbd.sourceforge.io/";
-
-if [[ ${PV} == 9999 ]] ; then
-       inherit autotools git-r3
-       EGIT_REPO_URI="https://github.com/NetworkBlockDevice/nbd.git";
-else
-       
SRC_URI="https://github.com/NetworkBlockDevice/nbd/releases/download/${P}/${P}.tar.xz";
-       SRC_URI+=" https://downloads.sourceforge.net/nbd/${P}.tar.xz";
-       KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~loong ppc ppc64 ~sparc x86"
-fi
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="debug gnutls netlink zlib"
-
-RDEPEND="
-       >=dev-libs/glib-2.32.0
-       gnutls? ( >=net-libs/gnutls-2.12.0 )
-       netlink? ( >=dev-libs/libnl-3.1 )
-       zlib? ( sys-libs/zlib )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
-       sys-devel/bison
-       virtual/pkgconfig
-"
-
-if [[ ${PV} == 9999 ]] ; then
-       BDEPEND+="
-               app-text/docbook-sgml-dtd:4.5
-               app-text/docbook-sgml-utils
-               dev-build/autoconf-archive
-       "
-fi
-
-src_prepare() {
-       default
-
-       if [[ ${PV} == 9999 ]] ; then
-               emake -C man -f mans.mk \
-                       nbd-server.1.sh.in \
-                       nbd-server.5.sh.in \
-                       nbd-client.8.sh.in \
-                       nbd-trdump.1.sh.in \
-                       nbd-trplay.1.sh.in \
-                       nbdtab.5.sh.in
-
-               emake -C systemd -f Makefile.am [email protected]
-
-               eautoreconf
-       fi
-}
-
-src_configure() {
-       # Needs Bison
-       unset YACC
-
-       local myeconfargs=(
-               --enable-lfs
-               # https://github.com/NetworkBlockDevice/nbd/issues/149
-               --disable-gznbd
-               $(use_enable !debug syslog)
-               $(use_enable debug)
-               $(use_with gnutls)
-               $(use_with netlink libnl)
-       )
-
-       econf "${myeconfargs[@]}"
-}
-
-src_install() {
-       default
-       systemd_dounit systemd/[email protected]
-}

Reply via email to