commit c422bc5d6bdf03ded84b8dd514771ce21fd9af2e Author: Danny Rawlins <contact@romster.me> Date: Sun Oct 31 12:28:17 2021 +1100 liburing: initial import diff --git a/liburing/.footprint b/liburing/.footprint new file mode 100644 index 000000000..4db7a15cb --- /dev/null +++ b/liburing/.footprint @@ -0,0 +1,26 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/include/ +-rw-r--r-- root/root usr/include/liburing.h +drwxr-xr-x root/root usr/include/liburing/ +-rw-r--r-- root/root usr/include/liburing/barrier.h +-rw-r--r-- root/root usr/include/liburing/compat.h +-rw-r--r-- root/root usr/include/liburing/io_uring.h +drwxr-xr-x root/root usr/lib/ +-rw-r--r-- root/root usr/lib/liburing.a +lrwxrwxrwx root/root usr/lib/liburing.so -> liburing.so.2.1.0 +lrwxrwxrwx root/root usr/lib/liburing.so.2 -> liburing.so.2.1.0 +-rwxr-xr-x root/root usr/lib/liburing.so.2.1.0 +drwxr-xr-x root/root usr/lib/pkgconfig/ +-rw-r--r-- root/root usr/lib/pkgconfig/liburing.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/ +-rw-r--r-- root/root usr/share/man/man2/io_uring_enter.2.gz +-rw-r--r-- root/root usr/share/man/man2/io_uring_register.2.gz +-rw-r--r-- root/root usr/share/man/man2/io_uring_setup.2.gz +drwxr-xr-x root/root usr/share/man/man3/ +-rw-r--r-- root/root usr/share/man/man3/io_uring_get_sqe.3.gz +-rw-r--r-- root/root usr/share/man/man3/io_uring_queue_exit.3.gz +-rw-r--r-- root/root usr/share/man/man3/io_uring_queue_init.3.gz +drwxr-xr-x root/root usr/share/man/man7/ +-rw-r--r-- root/root usr/share/man/man7/io_uring.7.gz diff --git a/liburing/.signature b/liburing/.signature new file mode 100644 index 000000000..590dfbdd6 --- /dev/null +++ b/liburing/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/contrib.pub +RWSagIOpLGJF38K1YzsgxGnpe/oZkg+9s1VCdDap/5t0e3Xym9SzRw3AAOSrl4+Ougk7+tT05r2HGJBAToZ0DT+tRTuYDKdIygk= +SHA256 (Pkgfile) = 8479f1fccab99f51b81fae99f9485d16a9120d93c2ffbcd33bfa6c4aedd8e864 +SHA256 (.footprint) = 58cd1dc1c01334eae95f0b8fdb77ef4d127fc22658b7807e3f301b95a0a5e9d0 +SHA256 (liburing-2.1.tar.gz) = f1e0500cb3934b0b61c5020c3999a973c9c93b618faff1eba75aadc95bb03e07 diff --git a/liburing/Pkgfile b/liburing/Pkgfile new file mode 100644 index 000000000..f2d00ff77 --- /dev/null +++ b/liburing/Pkgfile @@ -0,0 +1,16 @@ +# Description: liburing provides helpers to setup and teardown io_uring instances +# URL: https://github.com/axboe/liburing +# Maintainer: Tim Biermann, tbier at posteo dot de + +name=liburing +version=2.1 +release=1 +source=(https://github.com/axboe/liburing/archive/liburing-$version/$name-$version.t...) + +build() { + cd $name-$name-$version + ./configure --prefix=/usr \ + --mandir=/usr/share/man + make + make DESTDIR=$PKG install +}