From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7A3AE158021 for ; Mon, 24 Oct 2022 06:02:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8F74CE08A0; Mon, 24 Oct 2022 06:02:06 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 79A2EE08BB for ; Mon, 24 Oct 2022 06:02:06 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 861D5340FC7 for ; Mon, 24 Oct 2022 06:02:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 11AA0629 for ; Mon, 24 Oct 2022 06:02:04 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1666591321.0b8b6eb2f76a1c148f22ab6eb0a2e4cc053c8897.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/jemalloc/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/jemalloc/jemalloc-5.3.0.ebuild X-VCS-Directories: dev-libs/jemalloc/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 0b8b6eb2f76a1c148f22ab6eb0a2e4cc053c8897 X-VCS-Branch: master Date: Mon, 24 Oct 2022 06:02:04 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 0d04c321-e9fb-48e5-8733-b37932e6efab X-Archives-Hash: 50e580de75b44f672fdb493aa71caad3 commit: 0b8b6eb2f76a1c148f22ab6eb0a2e4cc053c8897 Author: Joonas Niilola gentoo org> AuthorDate: Mon Oct 24 05:58:29 2022 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Mon Oct 24 06:02:01 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b8b6eb2 dev-libs/jemalloc: drop 5.3.0 Signed-off-by: Joonas Niilola gentoo.org> dev-libs/jemalloc/jemalloc-5.3.0.ebuild | 53 --------------------------------- 1 file changed, 53 deletions(-) diff --git a/dev-libs/jemalloc/jemalloc-5.3.0.ebuild b/dev-libs/jemalloc/jemalloc-5.3.0.ebuild deleted file mode 100644 index 93e652a0edc9..000000000000 --- a/dev-libs/jemalloc/jemalloc-5.3.0.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="8" - -inherit autotools multilib-minimal - -DESCRIPTION="Jemalloc is a general-purpose scalable concurrent allocator" -HOMEPAGE="http://jemalloc.net/ https://github.com/jemalloc/jemalloc" -SRC_URI="https://github.com/jemalloc/jemalloc/releases/download/${PV}/${P}.tar.bz2" - -LICENSE="BSD" -SLOT="0/2" -#KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~ppc ~ppc64 ~riscv ~s390 ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris" -KEYWORDS="amd64 arm arm64 hppa ~loong ~m68k ppc ppc64 ~riscv ~s390 ~sparc x86" -IUSE="debug lazy-lock prof stats xmalloc" -HTML_DOCS=( doc/jemalloc.html ) -PATCHES=( "${FILESDIR}/${PN}-5.3.0-gentoo-fixups.patch" ) - -MULTILIB_WRAPPED_HEADERS=( /usr/include/jemalloc/jemalloc.h ) - -src_prepare() { - default - eautoreconf -} - -multilib_src_configure() { - local myconf=( - $(use_enable debug) - $(use_enable lazy-lock) - $(use_enable prof) - $(use_enable stats) - $(use_enable xmalloc) - ) - - ECONF_SOURCE="${S}" econf "${myconf[@]}" -} - -multilib_src_install() { - # Copy man file which the Makefile looks for - cp "${S}/doc/jemalloc.3" "${BUILD_DIR}/doc" || die - emake DESTDIR="${D}" install -} - -multilib_src_install_all() { - if [[ ${CHOST} == *-darwin* ]] ; then - # fixup install_name, #437362 - install_name_tool \ - -id "${EPREFIX}"/usr/$(get_libdir)/libjemalloc.2.dylib \ - "${ED}"/usr/$(get_libdir)/libjemalloc.2.dylib || die - fi - find "${ED}" -name '*.a' -delete || die -}