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 2DEB0158013 for ; Mon, 11 Dec 2023 08:29:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7646C2BC013; Mon, 11 Dec 2023 08:29:44 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 61B502BC013 for ; Mon, 11 Dec 2023 08:29: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 9F97F335D1C for ; Mon, 11 Dec 2023 08:29:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 31D14ACA for ; Mon, 11 Dec 2023 08:29:42 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1702283367.870c521bbefcf45765cb6e01a9d7829c66067cd1.flow@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-process/btop/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-process/btop/btop-1.2.13-r1.ebuild sys-process/btop/btop-1.2.13.ebuild X-VCS-Directories: sys-process/btop/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: 870c521bbefcf45765cb6e01a9d7829c66067cd1 X-VCS-Branch: master Date: Mon, 11 Dec 2023 08:29:42 +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: c309bbbe-30f1-4375-9e39-2c9a3819e317 X-Archives-Hash: 16fdc1447e29d7b672500f0d32d7a128 commit: 870c521bbefcf45765cb6e01a9d7829c66067cd1 Author: Florian Schmaus gentoo org> AuthorDate: Mon Dec 11 08:28:30 2023 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Mon Dec 11 08:29:27 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=870c521b sys-process/btop: drop 1.2.13, 1.2.13-r1 Signed-off-by: Florian Schmaus gentoo.org> sys-process/btop/btop-1.2.13-r1.ebuild | 64 ---------------------------------- sys-process/btop/btop-1.2.13.ebuild | 57 ------------------------------ 2 files changed, 121 deletions(-) diff --git a/sys-process/btop/btop-1.2.13-r1.ebuild b/sys-process/btop/btop-1.2.13-r1.ebuild deleted file mode 100644 index 5d519a74a396..000000000000 --- a/sys-process/btop/btop-1.2.13-r1.ebuild +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright 2021-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit toolchain-funcs xdg-utils - -DESCRIPTION="A monitor of resources" -HOMEPAGE="https://github.com/aristocratos/btop" -SRC_URI="https://github.com/aristocratos/btop/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ~arm arm64 ~mips ~ppc ppc64 ~riscv x86" - -BDEPEND=" - >=sys-devel/gcc-8 -" - -PATCHES=( - # Backported fixes for https://bugs.gentoo.org/884005, - # can be removed in 1.2.14 or later - "${FILESDIR}/${P}-fix-makefile-deps.patch" - "${FILESDIR}/${P}-verbose-mkdir.patch" -) - -pkg_setup() { - if [[ "${MERGE_TYPE}" != "binary" ]]; then - if ! tc-is-gcc ; then - # https://bugs.gentoo.org/839318 - die "$(tc-getCXX) is not a supported compiler. Please use sys-devel/gcc instead." - fi - fi -} - -src_prepare() { - default - # btop installs README.md to /usr/share/btop by default - sed -i '/^.*cp -p README.md.*$/d' Makefile || die -} - -src_compile() { - # Disable btop optimization flags, since we have our flags in CXXFLAGS - emake VERBOSE=true OPTFLAGS="" CXX="$(tc-getCXX)" -} - -src_install() { - emake \ - PREFIX="${EPREFIX}/usr" \ - DESTDIR="${D}" \ - install - - dodoc README.md CHANGELOG.md -} - -pkg_postinst() { - xdg_desktop_database_update - xdg_icon_cache_update -} - -pkg_postrm() { - xdg_desktop_database_update - xdg_icon_cache_update -} diff --git a/sys-process/btop/btop-1.2.13.ebuild b/sys-process/btop/btop-1.2.13.ebuild deleted file mode 100644 index a7b651e327a0..000000000000 --- a/sys-process/btop/btop-1.2.13.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 2021-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit toolchain-funcs xdg-utils - -DESCRIPTION="A monitor of resources" -HOMEPAGE="https://github.com/aristocratos/btop" -SRC_URI="https://github.com/aristocratos/btop/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 arm64 ~ppc ppc64 ~riscv x86" - -BDEPEND=" - >=sys-devel/gcc-8 -" - -pkg_setup() { - if [[ "${MERGE_TYPE}" != "binary" ]]; then - if ! tc-is-gcc ; then - # https://bugs.gentoo.org/839318 - die "$(tc-getCXX) is not a supported compiler. Please use sys-devel/gcc instead." - fi - fi -} - -src_prepare() { - default - # btop installs README.md to /usr/share/btop by default - sed -i '/^.*cp -p README.md.*$/d' Makefile || die -} - -src_compile() { - # Disable btop optimization flags, since we have our flags in CXXFLAGS - emake VERBOSE=true OPTFLAGS="" CXX="$(tc-getCXX)" -} - -src_install() { - emake \ - PREFIX="${EPREFIX}/usr" \ - DESTDIR="${D}" \ - install - - dodoc README.md CHANGELOG.md -} - -pkg_postinst() { - xdg_desktop_database_update - xdg_icon_cache_update -} - -pkg_postrm() { - xdg_desktop_database_update - xdg_icon_cache_update -}