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 63CB5158041 for ; Mon, 25 Mar 2024 16:53:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9FF61E2A5C; Mon, 25 Mar 2024 16:52:57 +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 357BDE2A5C for ; Mon, 25 Mar 2024 16:52:57 +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 30E99343083 for ; Mon, 25 Mar 2024 16:52:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BA31E15E8 for ; Mon, 25 Mar 2024 16:52:54 +0000 (UTC) From: "Julien Roy" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Julien Roy" Message-ID: <1711384859.7efe843d59eb204aa79e147fd84b8719807598a3.julien@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: app-admin/ananicy-cpp/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-admin/ananicy-cpp/ananicy-cpp-1.1.1-r2.ebuild app-admin/ananicy-cpp/ananicy-cpp-1.1.1.ebuild X-VCS-Directories: app-admin/ananicy-cpp/ X-VCS-Committer: julien X-VCS-Committer-Name: Julien Roy X-VCS-Revision: 7efe843d59eb204aa79e147fd84b8719807598a3 X-VCS-Branch: master Date: Mon, 25 Mar 2024 16:52:54 +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: 21224faf-1c1e-4035-ba31-ab2f334ca6d0 X-Archives-Hash: d10b29eca1d00669bb98eb11a84081a3 Message-ID: <20240325165254.u35uMhKf2UU3nviHzBqLsdsaaqbh9CWd_gDbBnduW74@z> commit: 7efe843d59eb204aa79e147fd84b8719807598a3 Author: Julien Roy jroy ca> AuthorDate: Mon Mar 25 16:40:55 2024 +0000 Commit: Julien Roy jroy ca> CommitDate: Mon Mar 25 16:40:59 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7efe843d app-admin/ananicy-cpp: drop 1.1.1, 1.1.1-r2 Revert changes from a6b3f15b1a76a2b066f9ff763fab5588bab902c6 Signed-off-by: Julien Roy jroy.ca> app-admin/ananicy-cpp/ananicy-cpp-1.1.1-r2.ebuild | 50 ----------------------- app-admin/ananicy-cpp/ananicy-cpp-1.1.1.ebuild | 49 ---------------------- 2 files changed, 99 deletions(-) diff --git a/app-admin/ananicy-cpp/ananicy-cpp-1.1.1-r2.ebuild b/app-admin/ananicy-cpp/ananicy-cpp-1.1.1-r2.ebuild deleted file mode 100644 index e97720ff94..0000000000 --- a/app-admin/ananicy-cpp/ananicy-cpp-1.1.1-r2.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit cmake - -DESCRIPTION="Ananicy rewritten in C++ for much lower CPU and memory usage" -HOMEPAGE="https://gitlab.com/ananicy-cpp/ananicy-cpp" -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64" -IUSE="systemd" - -SRC_URI="https://gitlab.com/ananicy-cpp/ananicy-cpp/-/archive/v${PV}/${PN}-v${PV}.tar.bz2" -S="${WORKDIR}/${PN}-v${PV}" - -DEPEND=" - !app-admin/ananicy - >=dev-cpp/nlohmann_json-3.9 - >=dev-libs/libfmt-8 - >=dev-libs/spdlog-1.9 - systemd? ( sys-apps/systemd ) -" -RDEPEND="${DEPEND}" - -PATCHES=( - "${FILESDIR}/${P}-remove-debug-flags.patch" -) - -src_configure() { - local mycmakeargs=( - -DENABLE_SYSTEMD=$(usex systemd) - -DUSE_EXTERNAL_FMTLIB=ON - -DUSE_EXTERNAL_JSON=ON - -DUSE_EXTERNAL_SPDLOG=ON - -DVERSION=${PV} - ) - cmake_src_configure -} - -src_install() { - cmake_src_install - - if ! use systemd ; then - doinitd "${FILESDIR}/${PN}.initd" - fi - - keepdir /etc/ananicy.d -} diff --git a/app-admin/ananicy-cpp/ananicy-cpp-1.1.1.ebuild b/app-admin/ananicy-cpp/ananicy-cpp-1.1.1.ebuild deleted file mode 100644 index 9ccfb2cf21..0000000000 --- a/app-admin/ananicy-cpp/ananicy-cpp-1.1.1.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit cmake - -DESCRIPTION="Ananicy rewritten in C++ for much lower CPU and memory usage" -HOMEPAGE="https://gitlab.com/ananicy-cpp/ananicy-cpp" -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64" -IUSE="+regex systemd +threads" - -SRC_URI="https://gitlab.com/ananicy-cpp/ananicy-cpp/-/archive/v${PV}/${PN}-v${PV}.tar.bz2" -S="${WORKDIR}/${PN}-v${PV}" - -DEPEND=" - !app-admin/ananicy - >=dev-cpp/nlohmann_json-3.9 - >=dev-libs/libfmt-8 - >=dev-libs/spdlog-1.9 - regex? ( >=dev-libs/libpcre2-8 ) - systemd? ( sys-apps/systemd ) -" -RDEPEND="${DEPEND}" - -src_configure() { - local mycmakeargs=( - -DENABLE_REGEX_SUPPORT=$(usex regex) - -DENABLE_SYSTEMD=$(usex systemd) - -DENABLE_THREADS=$(usex threads) - -DUSE_EXTERNAL_FMTLIB=ON - -DUSE_EXTERNAL_JSON=ON - -DUSE_EXTERNAL_SPDLOG=ON - -DVERSION=${PV} - ) - cmake_src_configure -} - -src_install() { - cmake_src_install - - if ! use systemd ; then - doinitd "${FILESDIR}/${PN}.initd" - fi - - keepdir /etc/ananicy.d -}