From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id E0B941581F0 for ; Fri, 24 Jan 2025 20:56:58 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id C89D43433CD for ; Fri, 24 Jan 2025 20:56:58 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id C171011042D; Fri, 24 Jan 2025 20:56: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 bobolink.gentoo.org (Postfix) with ESMTPS id B73A911042D for ; Fri, 24 Jan 2025 20:56: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 5BF383433CB for ; Fri, 24 Jan 2025 20:56:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E6D8AEC7 for ; Fri, 24 Jan 2025 20:56:55 +0000 (UTC) From: "Craig Andrews" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Craig Andrews" Message-ID: <1737752147.3bd0526af0adfedb0d84c8309ae57d7defccf8f0.candrews@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/waylandpp/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-cpp/waylandpp/waylandpp-1.0.0.ebuild X-VCS-Directories: dev-cpp/waylandpp/ X-VCS-Committer: candrews X-VCS-Committer-Name: Craig Andrews X-VCS-Revision: 3bd0526af0adfedb0d84c8309ae57d7defccf8f0 X-VCS-Branch: master Date: Fri, 24 Jan 2025 20:56:55 +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: 7407e696-63b1-4422-83f1-f91cc5d82033 X-Archives-Hash: 0a61772c3e20ddb24837ff2cbb65c803 commit: 3bd0526af0adfedb0d84c8309ae57d7defccf8f0 Author: Craig Andrews gentoo org> AuthorDate: Fri Jan 24 20:55:47 2025 +0000 Commit: Craig Andrews gentoo org> CommitDate: Fri Jan 24 20:55:47 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3bd0526a dev-cpp/waylandpp: drop 1.0.0 Signed-off-by: Craig Andrews gentoo.org> dev-cpp/waylandpp/waylandpp-1.0.0.ebuild | 41 -------------------------------- 1 file changed, 41 deletions(-) diff --git a/dev-cpp/waylandpp/waylandpp-1.0.0.ebuild b/dev-cpp/waylandpp/waylandpp-1.0.0.ebuild deleted file mode 100644 index eb1b99ee4e28..000000000000 --- a/dev-cpp/waylandpp/waylandpp-1.0.0.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit cmake - -DESCRIPTION="Wayland C++ bindings" -HOMEPAGE="https://github.com/NilsBrause/waylandpp" - -LICENSE="MIT" -IUSE="doc" -SLOT="0/$(ver_cut 1-2)" - -if [[ ${PV} == *9999 ]] ; then - EGIT_REPO_URI="https://github.com/NilsBrause/waylandpp.git" - inherit git-r3 -else - SRC_URI="https://github.com/NilsBrause/waylandpp/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="amd64 ~arm arm64 ~riscv x86" -fi - -RDEPEND=" - >=dev-libs/wayland-1.11.0 - media-libs/mesa[wayland] - >=dev-libs/pugixml-1.9-r1 -" -DEPEND="${RDEPEND} - doc? ( - app-text/doxygen - media-gfx/graphviz - ) - " - -src_configure() { - local mycmakeargs=( - -DBUILD_DOCUMENTATION=$(usex doc) - ) - - cmake_src_configure -}