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 47B2515807B for ; Tue, 8 Oct 2024 12:50:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E0BBFE29E0; Tue, 8 Oct 2024 12:50:15 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C6795E29E0 for ; Tue, 8 Oct 2024 12:50:15 +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 C47D33430DD for ; Tue, 8 Oct 2024 12:50:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2DDA02191 for ; Tue, 8 Oct 2024 12:50:13 +0000 (UTC) From: "Jakov Smolić" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jakov Smolić" Message-ID: <1728388964.df9753633d54e8a432c2a0707fda8c60a898357d.jsmolic@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/popl/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-cpp/popl/popl-1.2.0.ebuild X-VCS-Directories: dev-cpp/popl/ X-VCS-Committer: jsmolic X-VCS-Committer-Name: Jakov Smolić X-VCS-Revision: df9753633d54e8a432c2a0707fda8c60a898357d X-VCS-Branch: master Date: Tue, 8 Oct 2024 12:50:13 +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: 46c8cba4-04e1-4933-a7b7-dbb02d0dae5f X-Archives-Hash: ec6c2237496e931557a73e17978177f3 commit: df9753633d54e8a432c2a0707fda8c60a898357d Author: Jakov Smolić gentoo org> AuthorDate: Tue Oct 8 12:02:44 2024 +0000 Commit: Jakov Smolić gentoo org> CommitDate: Tue Oct 8 12:02:44 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df975363 dev-cpp/popl: drop 1.2.0 Signed-off-by: Jakov Smolić gentoo.org> dev-cpp/popl/popl-1.2.0.ebuild | 29 ----------------------------- 1 file changed, 29 deletions(-) diff --git a/dev-cpp/popl/popl-1.2.0.ebuild b/dev-cpp/popl/popl-1.2.0.ebuild deleted file mode 100644 index 83cea89db642..000000000000 --- a/dev-cpp/popl/popl-1.2.0.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake - -DESCRIPTION="Header-only C++ program options parser library" -HOMEPAGE="https://github.com/badaix/popl" - -if [[ ${PV} == *9999 ]] ; then - inherit git-r3 - - EGIT_REPO_URI="https://github.com/badaix/popl.git" - EGIT_BRANCH="develop" -else - - SRC_URI="https://github.com/badaix/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="amd64 ~arm ppc ppc64 ~riscv x86" -fi - -LICENSE="MIT" -SLOT="0" - -src_configure() { - local mycmakeargs=( -DBUILD_EXAMPLE=OFF ) - - cmake_src_configure -}