commit 3baacb17e3202cf0952ade06f99da4833ea630d4 Author: Tim Biermann <tbier@posteo.de> Date: Sun Jun 7 14:43:42 2020 +0000 numactl: initial commit, version 2.0.13 diff --git a/numactl/.footprint b/numactl/.footprint new file mode 100644 index 000000000..33e9c87f1 --- /dev/null +++ b/numactl/.footprint @@ -0,0 +1,31 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/memhog +-rwxr-xr-x root/root usr/bin/migratepages +-rwxr-xr-x root/root usr/bin/migspeed +-rwxr-xr-x root/root usr/bin/numactl +-rwxr-xr-x root/root usr/bin/numademo +-rwxr-xr-x root/root usr/bin/numastat +drwxr-xr-x root/root usr/include/ +-rw-r--r-- root/root usr/include/numa.h +-rw-r--r-- root/root usr/include/numacompat1.h +-rw-r--r-- root/root usr/include/numaif.h +drwxr-xr-x root/root usr/lib/ +-rw-r--r-- root/root usr/lib/libnuma.a +-rwxr-xr-x root/root usr/lib/libnuma.la +lrwxrwxrwx root/root usr/lib/libnuma.so -> libnuma.so.1.0.0 +lrwxrwxrwx root/root usr/lib/libnuma.so.1 -> libnuma.so.1.0.0 +-rwxr-xr-x root/root usr/lib/libnuma.so.1.0.0 +drwxr-xr-x root/root usr/lib/pkgconfig/ +-rw-r--r-- root/root usr/lib/pkgconfig/numa.pc +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/man/ +drwxr-xr-x root/root usr/share/man/man2/ +drwxr-xr-x root/root usr/share/man/man3/ +-rw-r--r-- root/root usr/share/man/man3/numa.3.gz +drwxr-xr-x root/root usr/share/man/man8/ +-rw-r--r-- root/root usr/share/man/man8/memhog.8.gz +-rw-r--r-- root/root usr/share/man/man8/migratepages.8.gz +-rw-r--r-- root/root usr/share/man/man8/migspeed.8.gz +-rw-r--r-- root/root usr/share/man/man8/numactl.8.gz +-rw-r--r-- root/root usr/share/man/man8/numastat.8.gz diff --git a/numactl/.signature b/numactl/.signature new file mode 100644 index 000000000..0d5132561 --- /dev/null +++ b/numactl/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/contrib.pub +RWSagIOpLGJF3w6v48cS+8jMJNYwttYFymvwasOD/Jo8jV41n9d8ME8rm6Or4uJWpxLkDSO01YxHXGYVmt1qyfeTF5SJRv5P0Q0= +SHA256 (Pkgfile) = 06c7dbbc7e29a0e96b916c8f4977423b85863e49b267dc686b73d276a956b2ec +SHA256 (.footprint) = 18638528d0985a3b6b72e40551357bd1b8088d898e0b028d9d9c0a35a6e46268 +SHA256 (numactl-2.0.13.tar.gz) = 991e254b867eb5951a44d2ae0bf1996a8ef0209e026911ef6c3ef4caf6f58c9a diff --git a/numactl/Pkgfile b/numactl/Pkgfile new file mode 100644 index 000000000..bf3875df9 --- /dev/null +++ b/numactl/Pkgfile @@ -0,0 +1,18 @@ +# Description: Simple NUMA policy support +# URL: https://github.com/numactl/numactl +# Maintainer: Tim Biermann, tbier at posteo dot de +# Depends on: perl + +name=numactl +version=2.0.13 +release=1 +source=(https://github.com/numactl/numactl/releases/download/v$version/$name-$versio...) + +build() { + cd $name-$version + autoreconf -vfi + ./configure --prefix=/usr + make + make DESTDIR=$PKG install + rm $PKG/usr/share/man/man2/move_pages.2 +}