diff options
Diffstat (limited to 'user/numactl')
-rw-r--r-- | user/numactl/APKBUILD | 12 | ||||
-rw-r--r-- | user/numactl/musl.patch | 21 | ||||
-rw-r--r-- | user/numactl/version.patch | 11 |
3 files changed, 18 insertions, 26 deletions
diff --git a/user/numactl/APKBUILD b/user/numactl/APKBUILD index a6122fcc5..fbc1eeb98 100644 --- a/user/numactl/APKBUILD +++ b/user/numactl/APKBUILD @@ -1,17 +1,19 @@ # Contributor: Daniel Sabogal <dsabogalcc@gmail.com> -# Maintainer: Dan Theisen <djt@hxx.in> +# Maintainer: Dan Theisen <djt@hxx.in> pkgname=numactl -pkgver=2.0.12 +pkgver=2.0.15 pkgrel=0 pkgdesc="Simple NUMA policy support" url="https://github.com/numactl/numactl" # ARM lacks the __NR_migrate_pages syscall arch="all !armhf !armv7" license="GPL-2.0+ AND LGPL-2.1" +depends="" makedepends="autoconf automake libtool linux-headers" subpackages="$pkgname-dev $pkgname-doc $pkgname-tools" source="$pkgname-$pkgver.tar.gz::https://github.com/numactl/$pkgname/archive/v$pkgver.tar.gz - musl.patch" + version.patch + " prepare() { default_prepare @@ -43,5 +45,5 @@ tools() { mv "$pkgdir"/usr/bin "$subpkgdir"/usr } -sha512sums="3814efd924d1c9152a30f6ae5b665afc20648226cd475d72b933c0ec4f30249af4e25110de17f144734b787ed765644dca09a657219806ab5c9c550abd45bf8e numactl-2.0.12.tar.gz -c24affa5a8a8ea83d7f0ee384dc0629e17a5c4201357132f770f894ad4236772116d96d8389d54fb99095af40d1ccbffc3170b5fb9cc88cfca39179f50bee9c9 musl.patch" +sha512sums="dcc76b8d36698a740e04206471352013b39bd61357d6090fc062681fa2f31e5f0b40c8582c06fd1a97919f494002bef1fa8330b6a6784b516c39961caa2a4320 numactl-2.0.15.tar.gz +965d8b4020578a6fd1d4ff0d85d6fd941534c3b26446e10529dc9c78ab331ce9dbc129e01e34282bbf615c9b3a606434079cc830bc4024b04f6273e676f2ade7 version.patch" diff --git a/user/numactl/musl.patch b/user/numactl/musl.patch deleted file mode 100644 index 009233f63..000000000 --- a/user/numactl/musl.patch +++ /dev/null @@ -1,21 +0,0 @@ ---- numactl-2.0.11/syscall.c.orig -+++ numactl-2.0.11/syscall.c -@@ -115,14 +115,16 @@ - - #endif - --#if defined(__GLIBC__) && __GLIBC_PREREQ(2, 11) -+#if defined(__GLIBC__) -+# if __GLIBC_PREREQ(2,11) - - /* glibc 2.11 seems to have working 6 argument sycall. Use the - glibc supplied syscall in this case. - The version cut-off is rather arbitary and could be probably - earlier. */ - --#define syscall6 syscall -+# define syscall6 syscall -+#endif - #elif defined(__x86_64__) - /* 6 argument calls on x86-64 are often buggy in both glibc and - asm/unistd.h. Add a working version here. */ diff --git a/user/numactl/version.patch b/user/numactl/version.patch new file mode 100644 index 000000000..61b4b3d01 --- /dev/null +++ b/user/numactl/version.patch @@ -0,0 +1,11 @@ +diff --git a/configure.ac b/configure.ac +index 1c34a1e..8709ff3 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -1,5 +1,5 @@ + AC_PREREQ([2.64]) +-AC_INIT([numactl], [2.0.14]) ++AC_INIT([numactl], [2.0.15]) + + AC_CONFIG_SRCDIR([numactl.c]) + AC_CONFIG_MACRO_DIR([m4]) |