numactl: initial commit, version 2.0.13

This commit is contained in:
Tim Biermann 2020-06-07 14:43:42 +00:00
parent a75df61d8d
commit 3baacb17e3
3 changed files with 54 additions and 0 deletions

31
numactl/.footprint Normal file
View File

@ -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

5
numactl/.signature Normal file
View File

@ -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

18
numactl/Pkgfile Normal file
View File

@ -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-$version.tar.gz)
build() {
cd $name-$version
autoreconf -vfi
./configure --prefix=/usr
make
make DESTDIR=$PKG install
rm $PKG/usr/share/man/man2/move_pages.2
}