From 79713e75fcc5c5cb55d1b1beac008683b57c8805 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sun, 7 Jan 2024 06:54:34 +0000 Subject: gentoo auto-resync : 07:01:2024 - 06:54:33 --- sys-fs/ntfs3g/Manifest | 1 - .../files/ntfs3g-2022.5.17-configure-bashism.patch | 36 ---------------------- 2 files changed, 37 deletions(-) delete mode 100644 sys-fs/ntfs3g/files/ntfs3g-2022.5.17-configure-bashism.patch (limited to 'sys-fs/ntfs3g') diff --git a/sys-fs/ntfs3g/Manifest b/sys-fs/ntfs3g/Manifest index a3e07488b44a..cf17b2b0c3f7 100644 --- a/sys-fs/ntfs3g/Manifest +++ b/sys-fs/ntfs3g/Manifest @@ -1,4 +1,3 @@ -AUX ntfs3g-2022.5.17-configure-bashism.patch 1089 BLAKE2B ceb22696f62d69b78bd91d2b5a045df823afd58779b1bd46d7b31adc414476577d01a6f4fb2449c1a30635de5f1d1bbbf025b4ee2182219d905709470e882726 SHA512 650f9d823b1815be3d959f128e7f1c4dffc38012c13ee97c4481a9d930841b6c52154a6fa7cada7dc192c0dddd934af1c0063e509eb67415e700c94d0c889a30 DIST ntfs-3g_ntfsprogs-2022.10.3.tgz 1324320 BLAKE2B 36a64af0c050bb42af69e14834883324d6201f70d5e45c175e0703980c045b038bdbfca0375edd42db3a3827240f63cf73c9f17a51805799129257b95fef7676 SHA512 891589483954423b19bef6e8a174fb4311ad92b6397a0db80f77c72b746bf18c2fa12457a571947f92755637a6bc784188920d4f017ae12a420819ab0d74af59 EBUILD ntfs3g-2022.10.3.ebuild 2076 BLAKE2B fe16f0687a93fe9d3711e333036b16d7848d9657f737b84e4b6abff1057d6697e05a915170c0f8725cb22c5166d37cd11724b7b3167521c5d5faa7b6e69e9dcf SHA512 368d860c6a4695b700e779c4d4dda4f002dfa19e04608b3e3c84a3012ad326e281318a8c7afb8043a29e25dd3f3162e260a5e6d61afe3a467d58361b7a6498c3 MISC metadata.xml 1218 BLAKE2B d74c49ff5aca2fc15835a3001cc86d5fac91d93477e443efd5b03bef9c8cf9f7f7e2542beebcfceecee45e807edc642c978e1ecc7a90edaa73a10a5090e0385a SHA512 4975d85cca562181abdf929bdba83194cb333de9390a9004484a3a338af0e5f809ad444584929be118784cd249ccb73f3271b3e54d20438cfcbf5a054352d56f diff --git a/sys-fs/ntfs3g/files/ntfs3g-2022.5.17-configure-bashism.patch b/sys-fs/ntfs3g/files/ntfs3g-2022.5.17-configure-bashism.patch deleted file mode 100644 index 280620d0ee68..000000000000 --- a/sys-fs/ntfs3g/files/ntfs3g-2022.5.17-configure-bashism.patch +++ /dev/null @@ -1,36 +0,0 @@ -https://github.com/tuxera/ntfs-3g/pull/58 - -From a008fc4b3553583369111b145172a92542de4598 Mon Sep 17 00:00:00 2001 -From: Sam James -Date: Thu, 22 Sep 2022 04:00:45 +0100 -Subject: [PATCH] configure.ac: fix bashism in fuse check - -configure scripts need to be runnable with a POSIX-compliant /bin/sh. - -On many (but not all!) systems, /bin/sh is provided by Bash, so errors -like this aren't spotted. Notably Debian defaults to /bin/sh provided -by dash which doesn't tolerate such bashisms as '=='. - -This retains compatibility with bash. - -Fixes configure warnings/errors like: -``` -checking Windows OS... no -./configure: 13360: test: xinternal: unexpected operator -checking for pthread_create in -lpthread... yes -checking Solaris OS... no -``` - -Signed-off-by: Sam James ---- a/configure.ac -+++ b/configure.ac -@@ -228,7 +228,7 @@ esac - - if test "x${enable_ntfs_3g}" != "xyes"; then - with_fuse="none" --elif test "x${with_fuse}" == "x"; then -+elif test "x${with_fuse}" = "x"; then - AC_MSG_CHECKING([fuse compatibility]) - case "${target_os}" in - linux*|solaris*) - -- cgit v1.2.3