From ad7be32fcfc93bd19eed9fb3f80d541eea45f187 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sun, 3 Jan 2016 00:29:02 +0100 Subject: [PATCH 1/3] libgcrypt: add patch to disable building docs and tests Signed-off-by: Stephan Raue --- .../libgcrypt/patches/libgcrypt-disable-docs.patch | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 packages/security/libgcrypt/patches/libgcrypt-disable-docs.patch diff --git a/packages/security/libgcrypt/patches/libgcrypt-disable-docs.patch b/packages/security/libgcrypt/patches/libgcrypt-disable-docs.patch new file mode 100644 index 0000000000..6fe71ddbe9 --- /dev/null +++ b/packages/security/libgcrypt/patches/libgcrypt-disable-docs.patch @@ -0,0 +1,14 @@ +diff -Naur libgcrypt-1.6.4/Makefile.am libgcrypt-1.6.4.patch/Makefile.am +--- libgcrypt-1.6.4/Makefile.am 2015-09-07 14:05:57.000000000 +0200 ++++ libgcrypt-1.6.4.patch/Makefile.am 2016-01-03 00:00:27.392411468 +0100 +@@ -24,8 +24,8 @@ + # (A suitable gitlog-to-changelog script can be found in GnuPG master.) + GITLOG_TO_CHANGELOG=gitlog-to-changelog + +-DIST_SUBDIRS = m4 compat mpi cipher random src doc tests +-SUBDIRS = compat mpi cipher random src doc tests ++DIST_SUBDIRS = m4 compat mpi cipher random src ++SUBDIRS = compat mpi cipher random src + + EXTRA_DIST = autogen.sh autogen.rc README.GIT LICENSES \ + ChangeLog-2011 build-aux/ChangeLog-2011 doc/ChangeLog-2011 \ From f90cc6b6415e7c6530bcc7ed3203966fc8ac247f Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sun, 3 Jan 2016 00:29:54 +0100 Subject: [PATCH 2/3] libgpg-error: update to libgpg-error-1.21 Signed-off-by: Stephan Raue --- packages/security/libgpg-error/package.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/security/libgpg-error/package.mk b/packages/security/libgpg-error/package.mk index 20e22aca72..19d49254d4 100644 --- a/packages/security/libgpg-error/package.mk +++ b/packages/security/libgpg-error/package.mk @@ -17,7 +17,7 @@ ################################################################################ PKG_NAME="libgpg-error" -PKG_VERSION="1.20" +PKG_VERSION="1.21" PKG_REV="1" PKG_ARCH="any" PKG_LICENSE="GPLv2" From d6ff7ea41d55cee9812b96c7f95c64fe17f92bae Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sun, 3 Jan 2016 00:31:14 +0100 Subject: [PATCH 3/3] xf86-video-nvidia-legacy: remove upstream patch Signed-off-by: Stephan Raue --- ...deo-nvidia-legacy-0003-kernel-4.3rc5.patch | 28 ------------------- 1 file changed, 28 deletions(-) delete mode 100644 packages/x11/driver/xf86-video-nvidia-legacy/patches/xf86-video-nvidia-legacy-0003-kernel-4.3rc5.patch diff --git a/packages/x11/driver/xf86-video-nvidia-legacy/patches/xf86-video-nvidia-legacy-0003-kernel-4.3rc5.patch b/packages/x11/driver/xf86-video-nvidia-legacy/patches/xf86-video-nvidia-legacy-0003-kernel-4.3rc5.patch deleted file mode 100644 index bc9732e2ec..0000000000 --- a/packages/x11/driver/xf86-video-nvidia-legacy/patches/xf86-video-nvidia-legacy-0003-kernel-4.3rc5.patch +++ /dev/null @@ -1,28 +0,0 @@ ---- a/kernel/nv-procfs.c 2015-10-18 04:32:24.214891836 +0100 -+++ b/kernel/nv-procfs.c 2015-10-18 04:33:01.611081468 +0100 -@@ -607,7 +607,12 @@ - registry_keys = ((nvl != NULL) ? - nvl->registry_keys : nv_registry_keys); - -+#if LINUX_VERSION_CODE < KERNEL_VERSION(4,3,0) - return seq_printf(s, "Binary: \"%s\"\n", registry_keys); -+#else -+ seq_printf(s, "Binary: \"%s\"\n", registry_keys); -+ return 0; -+#endif - } - - static ssize_t -@@ -674,7 +679,12 @@ - void *v - ) - { -+#if LINUX_VERSION_CODE < KERNEL_VERSION(4,3,0) - return seq_puts(s, s->private); -+#else -+ seq_puts(s, s->private); -+ return 0; -+#endif - } - - NV_DEFINE_PROCFS_SINGLE_FILE(text_file);