From 4a32382bb9c472b895150c1ac16afef2c248fbb2 Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Tue, 23 Oct 2018 10:44:55 +0200 Subject: extra/x265: fix typo --- extra/x265/PKGBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extra/x265/PKGBUILD b/extra/x265/PKGBUILD index 0dc3dc58..5e6e000e 100644 --- a/extra/x265/PKGBUILD +++ b/extra/x265/PKGBUILD @@ -8,7 +8,7 @@ eval "$( )" # thanks, debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=910963 source+=('0003-detect512-is-needed-on-all-architectures.patch') -sha256sum+=('+6baa25d11c81ad4ee49e9f2a367db4c770eb8cccf81f7bdaadb942621288a271') +sha256sums+=('+6baa25d11c81ad4ee49e9f2a367db4c770eb8cccf81f7bdaadb942621288a271') eval "$( declare -f prepare | \ sed ' -- cgit v1.2.3-70-g09d2 From 5dc00e7ffc2de3cf9698e9120fc9ab1b7428fc56 Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Tue, 23 Oct 2018 10:47:40 +0200 Subject: extra/libgit2: checksum type changed --- extra/libgit2/PKGBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extra/libgit2/PKGBUILD b/extra/libgit2/PKGBUILD index 052719d7..e0b17681 100644 --- a/extra/libgit2/PKGBUILD +++ b/extra/libgit2/PKGBUILD @@ -1,7 +1,7 @@ # See: https://github.com/libgit2/libgit2/pull/4631 source+=('libgit2-ssp-offset64-stat-buf.patch') -sha1sums+=('378a2c3eaef1957145aa58f51f75a07c634f77d7') +sha256sums+=('4eceeb944c7ea2dd2f879a279d5eb0f80ae32675410a6601bcc07ccd0189e8cf') prepare() { cd $pkgname-$pkgver -- cgit v1.2.3-70-g09d2 From 10a10ced5a32341c74809f9353cbafcc90c01eac Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Tue, 23 Oct 2018 10:48:20 +0200 Subject: core/gpm: remove obsolete patch --- core/gpm/PKGBUILD | 7 ---- core/gpm/gpm-1.20.7-glibc-2.26-1.patch | 58 ---------------------------------- 2 files changed, 65 deletions(-) delete mode 100644 core/gpm/PKGBUILD delete mode 100644 core/gpm/gpm-1.20.7-glibc-2.26-1.patch diff --git a/core/gpm/PKGBUILD b/core/gpm/PKGBUILD deleted file mode 100644 index 242ad34e..00000000 --- a/core/gpm/PKGBUILD +++ /dev/null @@ -1,7 +0,0 @@ -source+=('gpm-1.20.7-glibc-2.26-1.patch') -sha256sums+=('fc916df0f7060083ae48d8fe9949e68552f219cb11ee9f5b245a599a5b0cc6a8') - -prepare() { - cd "${srcdir}/${pkgname}-${pkgver}" - patch -p1 -i "${srcdir}/gpm-1.20.7-glibc-2.26-1.patch" -} diff --git a/core/gpm/gpm-1.20.7-glibc-2.26-1.patch b/core/gpm/gpm-1.20.7-glibc-2.26-1.patch deleted file mode 100644 index 6f63c273..00000000 --- a/core/gpm/gpm-1.20.7-glibc-2.26-1.patch +++ /dev/null @@ -1,58 +0,0 @@ -diff -Naur gpm-1.20.7-orig/src/daemon/open_console.c gpm-1.20.7/src/daemon/open_console.c ---- gpm-1.20.7-orig/src/daemon/open_console.c 2012-10-26 21:21:38.000000000 +0000 -+++ gpm-1.20.7/src/daemon/open_console.c 2017-08-08 17:58:15.176232558 +0000 -@@ -23,6 +23,10 @@ - #include /* stat() */ - #include /* ioctl */ - -+#ifdef HAVE_SYS_SYSMACROS_H -+#include /* major() w/newer glibc */ -+#endif -+ - /* Linux specific (to be outsourced in gpm2 */ - #include /* for serial console check */ - #include /* for serial console check */ -diff -Naur gpm-1.20.7-orig/src/prog/gpm-root.y gpm-1.20.7/src/prog/gpm-root.y ---- gpm-1.20.7-orig/src/prog/gpm-root.y 2012-10-26 21:21:38.000000000 +0000 -+++ gpm-1.20.7/src/prog/gpm-root.y 2017-08-08 18:00:36.442898559 +0000 -@@ -443,6 +443,7 @@ - } - - /*---------------------------------------------------------------------*/ -+#if 0 - static int f_debug_one(FILE *f, Draw *draw) - { - DrawItem *ip; -@@ -465,6 +466,7 @@ - #undef LINE - return 0; - } -+#endif - - int f_debug(int mode, DrawItem *self, int uid) - { -@@ -960,10 +962,8 @@ - /*------------*/ - static inline void scr_restore(int fd, FILE *f, unsigned char *buffer, int vc) - { -- int x,y, dumpfd; -+ int dumpfd; - char dumpname[20]; -- -- x=buffer[2]; y=buffer[3]; - - /* WILL NOT WORK WITH DEVFS! FIXME! */ - sprintf(dumpname,"/dev/vcsa%i",vc); -@@ -1196,11 +1196,7 @@ - LOG_DAEMON : LOG_USER); - /* reap your zombies */ - childaction.sa_handler=reap_children; --#if defined(__GLIBC__) -- __sigemptyset(&childaction.sa_mask); --#else /* __GLIBC__ */ -- childaction.sa_mask=0; --#endif /* __GLIBC__ */ -+ sigemptyset(&childaction.sa_mask); - childaction.sa_flags=SA_INTERRUPT; /* need to break the select() call */ - sigaction(SIGCHLD,&childaction,NULL); - -- cgit v1.2.3-70-g09d2