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 3D963158094 for ; Sun, 10 Jul 2022 08:40:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5BB93E0798; Sun, 10 Jul 2022 08:40:44 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 pigeon.gentoo.org (Postfix) with ESMTPS id 2F863E0929 for ; Sun, 10 Jul 2022 08:40:44 +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 33ED5340EA7 for ; Sun, 10 Jul 2022 08:40:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0A3E3536 for ; Sun, 10 Jul 2022 08:40:40 +0000 (UTC) From: "Matthew Smith" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matthew Smith" Message-ID: <1657442365.071c07fb4aea4b41c2e0f332a5959f59fc435114.matthew@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/mimalloc/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/mimalloc/Manifest dev-libs/mimalloc/mimalloc-2.0.5-r2.ebuild X-VCS-Directories: dev-libs/mimalloc/ X-VCS-Committer: matthew X-VCS-Committer-Name: Matthew Smith X-VCS-Revision: 071c07fb4aea4b41c2e0f332a5959f59fc435114 X-VCS-Branch: master Date: Sun, 10 Jul 2022 08:40:40 +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: c72d34d4-b5cb-4631-9569-dd61e17c9d32 X-Archives-Hash: 0748279fb0772010333f72f7b6469370 commit: 071c07fb4aea4b41c2e0f332a5959f59fc435114 Author: Matthew Smith gentoo org> AuthorDate: Sun Jul 10 08:09:34 2022 +0000 Commit: Matthew Smith gentoo org> CommitDate: Sun Jul 10 08:39:25 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=071c07fb dev-libs/mimalloc: drop 2.0.5-r2 Signed-off-by: Matthew Smith gentoo.org> dev-libs/mimalloc/Manifest | 1 - dev-libs/mimalloc/mimalloc-2.0.5-r2.ebuild | 31 ------------------------------ 2 files changed, 32 deletions(-) diff --git a/dev-libs/mimalloc/Manifest b/dev-libs/mimalloc/Manifest index b108b0f8f52e..a28d7d65ebac 100644 --- a/dev-libs/mimalloc/Manifest +++ b/dev-libs/mimalloc/Manifest @@ -1,2 +1 @@ -DIST mimalloc-2.0.5.tar.gz 1125567 BLAKE2B 9148ba4af7620eec36e1dde0f6fd2d1e3e9937bd2286ac790a727052402c3286b55387236de3a77e4405983c080bb7acae8deb3334cf9103fcf3f90250080204 SHA512 d164392ace523a3fa0aa00fc58d8a9e8fbe913f07957e19ca977675b389e6d2a2eaf4772e72cae0d87aabb960f3fd6ea3923a066ece4ba4fdaa0c6860cfa414d DIST mimalloc-2.0.6.tar.gz 1127052 BLAKE2B bd8a38cc0eab6ad950a63f494f24e6a91c50d2104335e9ce70963a7baadd26c7a2b7440b2fcabe502d9961549222873d017cb525bf5b32da967cf51aa167603c SHA512 f2fc0fbfb6384e85959897f129e5d5d9acc51bda536d5cabcd7d4177dbda9fb735b8a8c239b961f8bea31d37c9ae10f66da23aa91d497f95393253d4ac792bb3 diff --git a/dev-libs/mimalloc/mimalloc-2.0.5-r2.ebuild b/dev-libs/mimalloc/mimalloc-2.0.5-r2.ebuild deleted file mode 100644 index 8710584db2d5..000000000000 --- a/dev-libs/mimalloc/mimalloc-2.0.5-r2.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit cmake-multilib - -DESCRIPTION="A compact general purpose allocator with excellent performance" -HOMEPAGE="https://github.com/microsoft/mimalloc" -SRC_URI="https://github.com/microsoft/mimalloc/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0/2" -KEYWORDS="amd64 ~x86" -IUSE="test" -RESTRICT="!test? ( test )" - -src_configure() { - local mycmakeargs=( - # TODO: build hardened variant? - #-DMI_SECURE=$(usex hardened) - - -DMI_INSTALL_TOPLEVEL=ON - -DMI_BUILD_TESTS=$(usex test) - - -DMI_BUILD_OBJECT=OFF - -DMI_BUILD_STATIC=OFF - ) - - cmake-multilib_src_configure -}