From 49775e284a9ce5cee4e57f20c0462ed56786a0f4 Mon Sep 17 00:00:00 2001 From: Sam James Date: Tue, 5 Jul 2022 04:00:14 +0100 Subject: net-libs/wandio: update EAPI 7 -> 8 Signed-off-by: Sam James --- .../files/wandio-4.2.3_p1-fix-lz4-check.patch | 12 ++++ net-libs/wandio/wandio-4.2.3_p1-r2.ebuild | 65 ++++++++++++++++++++++ 2 files changed, 77 insertions(+) create mode 100644 net-libs/wandio/files/wandio-4.2.3_p1-fix-lz4-check.patch create mode 100644 net-libs/wandio/wandio-4.2.3_p1-r2.ebuild (limited to 'net-libs/wandio') diff --git a/net-libs/wandio/files/wandio-4.2.3_p1-fix-lz4-check.patch b/net-libs/wandio/files/wandio-4.2.3_p1-fix-lz4-check.patch new file mode 100644 index 000000000000..db50cf1c0c04 --- /dev/null +++ b/net-libs/wandio/files/wandio-4.2.3_p1-fix-lz4-check.patch @@ -0,0 +1,12 @@ +https://github.com/wanduow/wandio/pull/51 +--- a/configure.ac ++++ b/configure.ac +@@ -260,7 +260,7 @@ AC_ARG_WITH([lz4], + AS_IF([test "x$with_lz4" != "xno"], + [ + AC_CHECK_LIB(lz4, LZ4F_createDecompressionContext, have_lz4f=yes, have_lz4f=no) +- ], [have_zstd=no]) ++ ], [have_lz4f=no]) + + AS_IF([test "x$have_lz4f" = "xyes"], [ + if test "$ac_cv_lib_lz4_code" != "none required"; then diff --git a/net-libs/wandio/wandio-4.2.3_p1-r2.ebuild b/net-libs/wandio/wandio-4.2.3_p1-r2.ebuild new file mode 100644 index 000000000000..d927232b4f66 --- /dev/null +++ b/net-libs/wandio/wandio-4.2.3_p1-r2.ebuild @@ -0,0 +1,65 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools + +DESCRIPTION="C library for simple and efficient file IO" +HOMEPAGE="https://research.wand.net.nz/software/libwandio.php" +SRC_URI="https://github.com/wanduow/${PN}/archive/${PV/_p/-}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${P/_p/-}" + +LICENSE="LGPL-3" +SLOT="0/6" +KEYWORDS="~amd64 ~x86" +IUSE="bzip2 http lzma lzo lz4 test zlib zstd" +RESTRICT="!test? ( test )" +REQUIRED_USE="test? ( lzma lzo )" + +RDEPEND=" + !