From 156770a608eddb7b268c601559091bb9e9579959 Mon Sep 17 00:00:00 2001 From: kth5 Date: Tue, 19 Dec 2023 10:08:10 +0100 Subject: [PATCH] * update oath-toolkit to 2.6.9-1.1 --- oath-toolkit/PKGBUILD | 2 +- oath-toolkit/fseeko.patch | 22 ---------------------- 2 files changed, 1 insertion(+), 23 deletions(-) delete mode 100644 oath-toolkit/fseeko.patch diff --git a/oath-toolkit/PKGBUILD b/oath-toolkit/PKGBUILD index 37dfc7e2de..4e1d992989 100644 --- a/oath-toolkit/PKGBUILD +++ b/oath-toolkit/PKGBUILD @@ -4,7 +4,7 @@ pkgname=oath-toolkit pkgver=2.6.9 -pkgrel=1 +pkgrel=1.1 pkgdesc='OATH one-time password toolkit' arch=(x86_64 powerpc64le powerpc64 powerpc riscv64) url='https://www.nongnu.org/oath-toolkit/' diff --git a/oath-toolkit/fseeko.patch b/oath-toolkit/fseeko.patch deleted file mode 100644 index 69a12a5990..0000000000 --- a/oath-toolkit/fseeko.patch +++ /dev/null @@ -1,22 +0,0 @@ -diff --git a/liboath/gl/fseeko.c b/liboath/gl/fseeko.c -index 67bb9ec..6adb80e 100644 ---- a/liboath/gl/fseeko.c -+++ b/liboath/gl/fseeko.c -@@ -47,7 +47,7 @@ fseeko (FILE *fp, off_t offset, int whence) - #endif - - /* These tests are based on fpurge.c. */ --#if defined _IO_ftrylockfile || __GNU_LIBRARY__ == 1 /* GNU libc, BeOS, Haiku, Linux libc5 */ -+#if defined _IO_EOF_SEEN || __GNU_LIBRARY__ == 1 /* GNU libc, BeOS, Haiku, Linux libc5 */ - if (fp->_IO_read_end == fp->_IO_read_ptr - && fp->_IO_write_ptr == fp->_IO_write_base - && fp->_IO_save_base == NULL) -@@ -123,7 +123,7 @@ fseeko (FILE *fp, off_t offset, int whence) - return -1; - } - --#if defined _IO_ftrylockfile || __GNU_LIBRARY__ == 1 /* GNU libc, BeOS, Haiku, Linux libc5 */ -+#if defined _IO_EOF_SEEN || __GNU_LIBRARY__ == 1 /* GNU libc, BeOS, Haiku, Linux libc5 */ - fp->_flags &= ~_IO_EOF_SEEN; - fp->_offset = pos; - #elif defined __sferror || defined __DragonFly__ || defined __ANDROID__