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 24C88158099 for ; Sat, 25 Nov 2023 09:56:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4DA712BC039; Sat, 25 Nov 2023 09:56:36 +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 2E1242BC039 for ; Sat, 25 Nov 2023 09:56:36 +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 44261340441 for ; Sat, 25 Nov 2023 09:56:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 970B6BB1 for ; Sat, 25 Nov 2023 09:56:33 +0000 (UTC) From: "Hans de Graaff" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Hans de Graaff" Message-ID: <1700906171.763d29a25989ce828980fdfc934d9dc8466f14bf.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libraw/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libraw/libraw-0.21.1.ebuild X-VCS-Directories: media-libs/libraw/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 763d29a25989ce828980fdfc934d9dc8466f14bf X-VCS-Branch: master Date: Sat, 25 Nov 2023 09:56:33 +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: 00d2a4ff-646d-452c-82ae-adf42c3e8007 X-Archives-Hash: 215c69a5485477be5308f612216d45ed commit: 763d29a25989ce828980fdfc934d9dc8466f14bf Author: Hans de Graaff gentoo org> AuthorDate: Sat Nov 25 09:55:50 2023 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sat Nov 25 09:56:11 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=763d29a2 media-libs/libraw: drop 0.21.1 Bug: https://bugs.gentoo.org/908041 Signed-off-by: Hans de Graaff gentoo.org> media-libs/libraw/libraw-0.21.1.ebuild | 60 ---------------------------------- 1 file changed, 60 deletions(-) diff --git a/media-libs/libraw/libraw-0.21.1.ebuild b/media-libs/libraw/libraw-0.21.1.ebuild deleted file mode 100644 index 27e5a64aa7cc..000000000000 --- a/media-libs/libraw/libraw-0.21.1.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit multilib-minimal toolchain-funcs - -MY_PN=LibRaw -MY_PV="${PV/_b/-B}" -MY_P="${MY_PN}-${MY_PV}" - -DESCRIPTION="LibRaw is a library for reading RAW files obtained from digital photo cameras" -HOMEPAGE="https://www.libraw.org/ https://github.com/LibRaw/LibRaw" -SRC_URI="https://www.libraw.org/data/${MY_P}.tar.gz" - -LICENSE="LGPL-2.1 CDDL" -# SONAME isn't exactly the same as PV but it does correspond and -# libraw has unstable ABI across releases. -SLOT="0/$(ver_cut 1-2)" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux" -IUSE="examples jpeg +lcms openmp zlib" - -RDEPEND=" - jpeg? ( media-libs/libjpeg-turbo:=[${MULTILIB_USEDEP}] ) - lcms? ( >=media-libs/lcms-2.5:2[${MULTILIB_USEDEP}] ) - zlib? ( sys-libs/zlib[${MULTILIB_USEDEP}] ) -" -DEPEND="${RDEPEND}" -BDEPEND="virtual/pkgconfig" - -S="${WORKDIR}/${MY_P}" - -DOCS=( Changelog.txt README.md ) - -pkg_pretend() { - [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp -} - -pkg_setup() { - [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp -} - -multilib_src_configure() { - local myeconfargs=( - --disable-jasper - $(multilib_native_use_enable examples) - $(use_enable jpeg) - $(use_enable lcms) - $(use_enable openmp) - $(use_enable zlib) - ) - ECONF_SOURCE="${S}" econf "${myeconfargs[@]}" -} - -multilib_src_install_all() { - einstalldocs - - # package installs .pc files - find "${D}" -name '*.la' -delete || die -}