From e5dd53f678cc6e22d3cf17e421aeae08ffe01a10 Mon Sep 17 00:00:00 2001 From: Tim Biermann Date: Thu, 22 Dec 2022 12:33:32 +0000 Subject: [PATCH] robin-hood-hashing-32: initial commit, version 3.11.5 --- robin-hood-hashing-32/.32bit | 0 robin-hood-hashing-32/.footprint | 6 ++++++ robin-hood-hashing-32/.signature | 5 +++++ robin-hood-hashing-32/Pkgfile | 21 +++++++++++++++++++++ 4 files changed, 32 insertions(+) create mode 100644 robin-hood-hashing-32/.32bit create mode 100644 robin-hood-hashing-32/.footprint create mode 100644 robin-hood-hashing-32/.signature create mode 100644 robin-hood-hashing-32/Pkgfile diff --git a/robin-hood-hashing-32/.32bit b/robin-hood-hashing-32/.32bit new file mode 100644 index 00000000..e69de29b diff --git a/robin-hood-hashing-32/.footprint b/robin-hood-hashing-32/.footprint new file mode 100644 index 00000000..af22643e --- /dev/null +++ b/robin-hood-hashing-32/.footprint @@ -0,0 +1,6 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/lib32/ +drwxr-xr-x root/root usr/lib32/cmake/ +drwxr-xr-x root/root usr/lib32/cmake/robin_hood/ +-rw-r--r-- root/root usr/lib32/cmake/robin_hood/robin_hood-targets.cmake +-rw-r--r-- root/root usr/lib32/cmake/robin_hood/robin_hoodConfig.cmake diff --git a/robin-hood-hashing-32/.signature b/robin-hood-hashing-32/.signature new file mode 100644 index 00000000..9cddf4de --- /dev/null +++ b/robin-hood-hashing-32/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/compat-32.pub +RWSwxGo/zH7eXeNNy23c5veGKmZIn5XgN+XWSwYb+zaEBoKryvislip/jRAqEzd88OotW8g3z982eX+zdL8Lvrp9bUsT6hschgU= +SHA256 (Pkgfile) = 6a8fabb8a672ddf0d6607b9f8762043ef574e42235fc286425ba2ec88ef53400 +SHA256 (.footprint) = bd7d7d74bb56acd8221f7e6058856c5cb1c07e017c60a5f808dc2423451f0305 +SHA256 (robin-hood-hashing-3.11.5.tar.gz) = 3693e44dda569e9a8b87ce8263f7477b23af448a3c3600c8ab9004fe79c20ad0 diff --git a/robin-hood-hashing-32/Pkgfile b/robin-hood-hashing-32/Pkgfile new file mode 100644 index 00000000..55626d3a --- /dev/null +++ b/robin-hood-hashing-32/Pkgfile @@ -0,0 +1,21 @@ +# Description: Fast & memory efficient hashtable based on robin hood hashing for C++11/14/17/20 +# URL: https://github.com/martinus/robin-hood-hashing +# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu +# Depends on: robin-hood-hashing + +name=robin-hood-hashing-32 +version=3.11.5 +release=1 +source=(https://github.com/martinus/robin-hood-hashing/archive/$version/robin-hood-hashing-$version.tar.gz) + +build() { + cmake -S robin-hood-hashing-$version -B build -G Ninja \ + -D CMAKE_INSTALL_PREFIX=/usr \ + -D CMAKE_INSTALL_LIBDIR=lib32 \ + -D RH_STANDALONE_PROJECT=OFF \ + + cmake --build build + DESTDIR=$PKG cmake --install build + + rm -r $PKG/usr/include +}