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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B511F138335 for ; Wed, 20 Nov 2019 12:22:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 27AD7E08AA; Wed, 20 Nov 2019 12:22:22 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 08804E08AA for ; Wed, 20 Nov 2019 12:22:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2BB4634D121 for ; Wed, 20 Nov 2019 12:22:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B0BBB8BC for ; Wed, 20 Nov 2019 12:22:17 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1574252463.ba3fe31813df16248d40371542bf3de6a12a7c47.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libplacebo/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libplacebo/libplacebo-1.21.0.ebuild X-VCS-Directories: media-libs/libplacebo/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: ba3fe31813df16248d40371542bf3de6a12a7c47 X-VCS-Branch: master Date: Wed, 20 Nov 2019 12:22:17 +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: 8767f378-93e7-464f-b8b6-8f8774e8c1b4 X-Archives-Hash: c61ced72ead858b1b997a0c2c5b07a73 commit: ba3fe31813df16248d40371542bf3de6a12a7c47 Author: Andreas Sturmlechner gentoo org> AuthorDate: Wed Nov 20 11:30:26 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Nov 20 12:21:03 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba3fe318 media-libs/libplacebo: Drop 1.21.0 (r0) Package-Manager: Portage-2.3.79, Repoman-2.3.18 Signed-off-by: Andreas Sturmlechner gentoo.org> media-libs/libplacebo/libplacebo-1.21.0.ebuild | 53 -------------------------- 1 file changed, 53 deletions(-) diff --git a/media-libs/libplacebo/libplacebo-1.21.0.ebuild b/media-libs/libplacebo/libplacebo-1.21.0.ebuild deleted file mode 100644 index ab132357b85..00000000000 --- a/media-libs/libplacebo/libplacebo-1.21.0.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -if [[ "${PV}" == "9999" ]]; then - EGIT_REPO_URI="https://code.videolan.org/videolan/libplacebo.git" - inherit git-r3 -else - KEYWORDS="~amd64 ~x86" - SRC_URI="https://code.videolan.org/videolan/libplacebo/-/archive/v${PV}/libplacebo-v${PV}.tar.gz" - S="${WORKDIR}/${PN}-v${PV}" -fi - -inherit meson multilib-minimal - -DESCRIPTION="Reusable library for GPU-accelerated image processing primitives" -HOMEPAGE="https://github.com/haasn/libplacebo" - -LICENSE="LGPL-2.1+" -SLOT="0" -IUSE="glslang lcms +shaderc test +vulkan" -REQUIRED_USE="vulkan? ( || ( glslang shaderc ) )" - -RDEPEND="glslang? ( =media-libs/shaderc-2017.2[${MULTILIB_USEDEP}] ) - vulkan? ( media-libs/vulkan-loader[${MULTILIB_USEDEP}] )" -DEPEND="${RDEPEND}" -BDEPEND="virtual/pkgconfig" - -multilib_src_configure() { - local emesonargs=( - $(meson_feature glslang) - $(meson_feature lcms) - $(meson_feature shaderc) - $(meson_feature vulkan) - $(meson_use test tests) - ) - meson_src_configure -} - -multilib_src_compile() { - meson_src_compile -} - -multilib_src_test() { - meson_src_test -} - -multilib_src_install() { - meson_src_install -}