summaryrefslogtreecommitdiff
path: root/community
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2020-03-05 10:58:04 +0100
committerAndreas Baumann <mail@andreasbaumann.cc>2020-03-05 10:58:04 +0100
commitdaea7aa11b97b154711d29976e38d8691a02dafc (patch)
tree1d8c030c41b6ed38c3f2f7771e5d1d0b2255d0df /community
parent991892785923899a633174b9cb707a75657cc95a (diff)
downloadpackages-daea7aa11b97b154711d29976e38d8691a02dafc.tar.xz
community/lbzip2: removed patch, fixed upstream
Diffstat (limited to 'community')
-rw-r--r--community/lbzip2/4af4a4a71827c0bc5e0ec67af23edef4f15cee8e.patch30
-rw-r--r--community/lbzip2/PKGBUILD14
2 files changed, 0 insertions, 44 deletions
diff --git a/community/lbzip2/4af4a4a71827c0bc5e0ec67af23edef4f15cee8e.patch b/community/lbzip2/4af4a4a71827c0bc5e0ec67af23edef4f15cee8e.patch
deleted file mode 100644
index bfcc13b0..00000000
--- a/community/lbzip2/4af4a4a71827c0bc5e0ec67af23edef4f15cee8e.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-diff --git a/lib/fseterr.c b/lib/fseterr.c
-index 82649c3ac..adb637256 100644
---- a/lib/fseterr.c
-+++ b/lib/fseterr.c
-@@ -29,7 +29,7 @@ fseterr (FILE *fp)
- /* Most systems provide FILE as a struct and the necessary bitmask in
- <stdio.h>, because they need it for implementing getc() and putc() as
- fast macros. */
--#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_ERR_SEEN;
- #elif defined __sferror || defined __DragonFly__ || defined __ANDROID__
- /* FreeBSD, NetBSD, OpenBSD, DragonFly, Mac OS X, Cygwin, Minix 3, Android */
-diff --git a/lib/stdio-impl.h b/lib/stdio-impl.h
-index 78d896e9f..05c5752a2 100644
---- a/lib/stdio-impl.h
-+++ b/lib/stdio-impl.h
-@@ -18,6 +18,12 @@
- the same implementation of stdio extension API, except that some fields
- have different naming conventions, or their access requires some casts. */
-
-+/* Glibc 2.28 made _IO_IN_BACKUP private. For now, work around this
-+ problem by defining it ourselves. FIXME: Do not rely on glibc
-+ internals. */
-+#if !defined _IO_IN_BACKUP && defined _IO_EOF_SEEN
-+# define _IO_IN_BACKUP 0x100
-+#endif
-
- /* BSD stdio derived implementations. */
-
diff --git a/community/lbzip2/PKGBUILD b/community/lbzip2/PKGBUILD
deleted file mode 100644
index 1bb52877..00000000
--- a/community/lbzip2/PKGBUILD
+++ /dev/null
@@ -1,14 +0,0 @@
-# hotfix for FS#60455
-source+=('4af4a4a71827c0bc5e0ec67af23edef4f15cee8e.patch')
-sha256sums+=('5eca4665b147655ce99f9ae5eff50e7db2714ba957e41e20b50d80533aeb6bef')
-
-eval "$(
- {
- declare -f prepare || \
- printf 'prepare() {\n}\n'
- } \
- | sed '
- $i cd "${srcdir}"/$pkgname-$pkgver \
- patch -p1 -i ../4af4a4a71827c0bc5e0ec67af23edef4f15cee8e.patch
- '
-)"