From 7f1a421f84e9c525704b3c510455410de99e2181 Mon Sep 17 00:00:00 2001 From: Tim Biermann Date: Sun, 24 Sep 2023 09:32:51 +0200 Subject: [PATCH] jemalloc: dropped unmaintained port --- jemalloc/.footprint | 19 ------------------- jemalloc/.signature | 5 ----- jemalloc/Pkgfile | 24 ------------------------ 3 files changed, 48 deletions(-) delete mode 100644 jemalloc/.footprint delete mode 100644 jemalloc/.signature delete mode 100644 jemalloc/Pkgfile diff --git a/jemalloc/.footprint b/jemalloc/.footprint deleted file mode 100644 index b59883e3d..000000000 --- a/jemalloc/.footprint +++ /dev/null @@ -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 diff --git a/jemalloc/.signature b/jemalloc/.signature deleted file mode 100644 index a5101aa8d..000000000 --- a/jemalloc/.signature +++ /dev/null @@ -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 diff --git a/jemalloc/Pkgfile b/jemalloc/Pkgfile deleted file mode 100644 index 47a525c17..000000000 --- a/jemalloc/Pkgfile +++ /dev/null @@ -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 -}