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 C44BF158093 for ; Sat, 2 Jul 2022 20:56:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 05C82E08FB; Sat, 2 Jul 2022 20:56:04 +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 DB9BFE08FB for ; Sat, 2 Jul 2022 20:56:02 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 DA0BF3411EA for ; Sat, 2 Jul 2022 20:56:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 65D0D50D for ; Sat, 2 Jul 2022 20:56:00 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1656795348.b426aa560a47d2f381dfcc854b17782f8a6d69bb.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/collada-dom/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/collada-dom/collada-dom-9999.ebuild X-VCS-Directories: dev-libs/collada-dom/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: b426aa560a47d2f381dfcc854b17782f8a6d69bb X-VCS-Branch: master Date: Sat, 2 Jul 2022 20:56:00 +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: 0d9a9ac6-4e92-48ad-a505-a862dbad7c95 X-Archives-Hash: 27fd928af64b941c4daeb2f4e0c29dbf commit: b426aa560a47d2f381dfcc854b17782f8a6d69bb Author: Sam James gentoo org> AuthorDate: Sat Jul 2 20:49:53 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sat Jul 2 20:55:48 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b426aa56 dev-libs/collada-dom: drop 9999 Signed-off-by: Sam James gentoo.org> dev-libs/collada-dom/collada-dom-9999.ebuild | 36 ---------------------------- 1 file changed, 36 deletions(-) diff --git a/dev-libs/collada-dom/collada-dom-9999.ebuild b/dev-libs/collada-dom/collada-dom-9999.ebuild deleted file mode 100644 index d16bb527ab16..000000000000 --- a/dev-libs/collada-dom/collada-dom-9999.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils flag-o-matic - -if [[ ${PV} == *9999 ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/rdiankov/collada-dom" -else - KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86" - SRC_URI="https://github.com/rdiankov/collada-dom/archive/v${PV}.tar.gz -> ${P}.tar.gz" -fi - -DESCRIPTION="COLLADA Document Object Model (DOM) C++ Library" -HOMEPAGE="https://github.com/rdiankov/collada-dom" - -LICENSE="MIT" -SLOT="0/25" -IUSE="" - -RDEPEND=" - dev-libs/boost:= - sys-libs/zlib:=[minizip] - dev-libs/libxml2:= - dev-libs/libpcre:=[cxx]" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -src_configure() { - # bug 618960 - append-cxxflags -std=c++14 - - cmake-utils_src_configure -}