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 4CA6B1580D3 for ; Thu, 23 Nov 2023 21:53:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4D10B2BC022; Thu, 23 Nov 2023 21:53:18 +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 116AE2BC022 for ; Thu, 23 Nov 2023 21:53:18 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1304B33BEFF for ; Thu, 23 Nov 2023 21:53:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F0AFB13BD for ; Thu, 23 Nov 2023 21:53:14 +0000 (UTC) From: "Bernard Cafarelli" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Bernard Cafarelli" Message-ID: <1700776383.65bdadce15b57c4f618f851a4fba578d8251c4ab.voyageur@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: gnustep-libs/performance/ X-VCS-Repository: repo/gentoo X-VCS-Files: gnustep-libs/performance/Manifest gnustep-libs/performance/performance-0.6.0.ebuild X-VCS-Directories: gnustep-libs/performance/ X-VCS-Committer: voyageur X-VCS-Committer-Name: Bernard Cafarelli X-VCS-Revision: 65bdadce15b57c4f618f851a4fba578d8251c4ab X-VCS-Branch: master Date: Thu, 23 Nov 2023 21:53:14 +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: 88bf5ec9-7a9a-40a1-9b8a-f18ec3c3dae9 X-Archives-Hash: c73cd8cbfb6b585fc468c6d5a25478c3 commit: 65bdadce15b57c4f618f851a4fba578d8251c4ab Author: Bernard Cafarelli gentoo org> AuthorDate: Thu Nov 23 21:28:18 2023 +0000 Commit: Bernard Cafarelli gentoo org> CommitDate: Thu Nov 23 21:53:03 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65bdadce gnustep-libs/performance: add 0.6.0 Signed-off-by: Bernard Cafarelli gentoo.org> gnustep-libs/performance/Manifest | 1 + gnustep-libs/performance/performance-0.6.0.ebuild | 26 +++++++++++++++++++++++ 2 files changed, 27 insertions(+) diff --git a/gnustep-libs/performance/Manifest b/gnustep-libs/performance/Manifest index 80ad5b36f5b4..903b8c2b7408 100644 --- a/gnustep-libs/performance/Manifest +++ b/gnustep-libs/performance/Manifest @@ -1 +1,2 @@ DIST Performance-0.5.0.tar.gz 50569 BLAKE2B b79f27fc0974c6005725b916cfb528c15d380b62dea2b846c129fda04e4b56ad33d00c4432d19f0ee9bfa3593cd9fa8781d0dbd168c26cceb9e007054252d7b2 SHA512 ac83d046c801e1c2b69c708fa806cccf40fca4d5dabe5d461524c3c3eea989c939a11e58d8bff177f45e55a3e1be73bd03b0bb80b611c8390560740cd5cf9fd5 +DIST Performance-0.6.0.tar.gz 56850 BLAKE2B 17b2aa0189e8cc9820981fb9c7b784be5011daaccce1faa2ada66e46d84eb178ae1fd75cbc0dacfb82baea451bdad5909e17d0813c116fdce1f801326ae15a1d SHA512 55fa9399800635a7ea65d14bb82704cf43f9d744eb6928af7c984136aa6f98e1de8780a59d579f5d6c5dcd4c60f7cb37dfa2f0ba1b0175ac5b63d24e06f80076 diff --git a/gnustep-libs/performance/performance-0.6.0.ebuild b/gnustep-libs/performance/performance-0.6.0.ebuild new file mode 100644 index 000000000000..0f42ec545fcb --- /dev/null +++ b/gnustep-libs/performance/performance-0.6.0.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit gnustep-2 + +MY_P=${P/p/P} +DESCRIPTION="Help improve the performance of GNUstep applications" +HOMEPAGE="https://github.com/gnustep/libs-performance" +SRC_URI="ftp://ftp.gnustep.org/pub/gnustep/libs/${MY_P}.tar.gz" +S="${WORKDIR}/${MY_P}" + +KEYWORDS="~amd64 ~ppc ~x86" +LICENSE="LGPL-3+" +SLOT="0" + +src_prepare() { + if ! use doc; then + # Remove doc target + sed -i -e '/documentation\.make/d' GNUmakefile \ + || die "doc sed failed" + fi + + default +}