1
0
forked from ports/contrib

jemalloc: dropped unmaintained port

This commit is contained in:
Tim Biermann 2023-09-24 09:32:51 +02:00
parent 60e51dbd62
commit 7f1a421f84
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 0 additions and 48 deletions

View File

@ -1,19 +0,0 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/jemalloc-config
-rwxr-xr-x root/root usr/bin/jemalloc.sh
-rwxr-xr-x root/root usr/bin/jeprof
drwxr-xr-x root/root usr/include/
drwxr-xr-x root/root usr/include/jemalloc/
-rw-r--r-- root/root usr/include/jemalloc/jemalloc.h
drwxr-xr-x root/root usr/lib/
-rwxr-xr-x root/root usr/lib/libjemalloc.a
lrwxrwxrwx root/root usr/lib/libjemalloc.so -> libjemalloc.so.2
-rwxr-xr-x root/root usr/lib/libjemalloc.so.2
-rwxr-xr-x root/root usr/lib/libjemalloc_pic.a
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/jemalloc.pc
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man3/
-rw-r--r-- root/root usr/share/man/man3/jemalloc.3.gz

View File

@ -1,5 +0,0 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF330Cp8o//YI8+M8kV96pECXvNhDhUoJEp+W2hdf8u2YTSfXoe4UMvVLG8CoAckGHE0RaPom0LWRsB7Ja1C15hwc=
SHA256 (Pkgfile) = 2fef0412e39adc92a27d9c2839ab7e3c4c6d70dd7a8088aeb95469f1392a5710
SHA256 (.footprint) = e62079d57ef855c39cbf10c48a7585f4829b643f6424c26d2c530b433833e088
SHA256 (jemalloc-5.3.0.tar.bz2) = 2db82d1e7119df3e71b7640219b6dfe84789bc0537983c3b7ac4f7189aecfeaa

View File

@ -1,24 +0,0 @@
# Description: General-purpose scalable concurrent allocator
# URL: http://jemalloc.net/
# Maintainer: unmaintained
# Optional: clang lld
name=jemalloc
version=5.3.0
release=1
source=(https://github.com/jemalloc/jemalloc/releases/download/$version/$name-$version.tar.bz2)
build() {
cd $name-$version
export CFLAGS+=' -O3'
prt-get isinst clang lld && LDFLAGS+=' -fuse-ld=lld -flto=thin'
prt-get isinst clang && export CC=clang CXX=clang++ AR=llvm-ar NM=llvm-nm RANLIB=llvm-ranlib || \
export CC=gcc CXX=g++
./configure --prefix=/usr
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/doc
}