commit: 61ba79c158b052e66d56db191541573d53b046ad Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at> AuthorDate: Mon Jun 5 14:56:09 2023 +0000 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org> CommitDate: Sun Jun 11 08:22:25 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61ba79c1
dev-libs/libbytesize: remove unused patch Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/31320 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org> .../files/libbytesize-2.6-configure-bashism.patch | 31 ---------------------- 1 file changed, 31 deletions(-) diff --git a/dev-libs/libbytesize/files/libbytesize-2.6-configure-bashism.patch b/dev-libs/libbytesize/files/libbytesize-2.6-configure-bashism.patch deleted file mode 100644 index 5fe0f095eaca..000000000000 --- a/dev-libs/libbytesize/files/libbytesize-2.6-configure-bashism.patch +++ /dev/null @@ -1,31 +0,0 @@ -https://github.com/storaged-project/libbytesize/pull/102 - -From: Sam James <[email protected]> -Date: Fri, 24 Dec 2021 07:58:47 +0000 -Subject: [PATCH] build: avoid bashisms in configure - -configure needs to be executable by a POSIX-compliant shell (/bin/sh) -and while this is often Bash, which tolerates non-POSIX statements, it -might sometimes be e.g. dash which doesn't. - -Signed-off-by: Sam James <[email protected]> ---- a/configure.ac -+++ b/configure.ac -@@ -59,7 +59,7 @@ AC_ARG_WITH([python3], - AC_SUBST(WITH_PYTHON3, 0) - if test "x$with_python3" != "xno"; then - AC_PATH_PROG([python3], [python3], [no]) -- AS_IF([test "x$python3" == "xno"], -+ AS_IF([test "x$python3" = "xno"], - [if test "x$with_python3" = "xyes"; then - LIBBYTESIZE_SOFT_FAILURE([Python3 support requested, but python3 is not available]) - fi], -@@ -77,7 +77,7 @@ AC_ARG_WITH([gtk-doc], - AC_SUBST(WITH_GTK_DOC, 0) - if test "x$with_gtk_doc" != "xno"; then - AC_PATH_PROG([gtkdoc_scan], [gtkdoc-scan], [no]) -- AS_IF([test "x$gtkdoc_scan" == "xno"], -+ AS_IF([test "x$gtkdoc_scan" = "xno"], - [if test "x$with_gtk_doc" = "xyes"; then - LIBBYTESIZE_SOFT_FAILURE([Building documentation with gtk-doc requested, but not available]) - fi],
