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 2C91315800D for ; Sat, 31 Dec 2022 23:09:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9BFAAE0817; Sat, 31 Dec 2022 23:09:40 +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 7F137E0817 for ; Sat, 31 Dec 2022 23:09:40 +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 37C1C340DB5 for ; Sat, 31 Dec 2022 23:09:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 77C247E7 for ; Sat, 31 Dec 2022 23:09:37 +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: <1672527908.18c5c05a7b49e9e81776197927accf75f02bf0ce.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libopenraw/libopenraw-0.3.3.ebuild X-VCS-Directories: media-libs/libopenraw/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 18c5c05a7b49e9e81776197927accf75f02bf0ce X-VCS-Branch: master Date: Sat, 31 Dec 2022 23:09:37 +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: dca13532-2b86-43fc-b9b3-f48fede97dbe X-Archives-Hash: 4236f28f1f80aa43d0cdbd27a4160052 commit: 18c5c05a7b49e9e81776197927accf75f02bf0ce Author: Sam James gentoo org> AuthorDate: Sat Dec 31 23:05:08 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sat Dec 31 23:05:08 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18c5c05a media-libs/libopenraw: add 0.3.3 Signed-off-by: Sam James gentoo.org> media-libs/libopenraw/libopenraw-0.3.3.ebuild | 101 ++++++++++++++++++++++++++ 1 file changed, 101 insertions(+) diff --git a/media-libs/libopenraw/libopenraw-0.3.3.ebuild b/media-libs/libopenraw/libopenraw-0.3.3.ebuild new file mode 100644 index 000000000000..9333b1a4b20a --- /dev/null +++ b/media-libs/libopenraw/libopenraw-0.3.3.ebuild @@ -0,0 +1,101 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +# Run cargo-build or cargo fetch in lib/mp4 to get this list +CRATES=" +ahash-0.7.6 +aho-corasick-0.7.18 +atty-0.2.14 +autocfg-1.0.0 +bitreader-0.3.2 +byteorder-1.2.2 +cfg-if-0.1.10 +cfg-if-1.0.0 +env_logger-0.8.4 +fallible_collections-0.4.4 +getrandom-0.2.7 +hashbrown-0.11.2 +hermit-abi-0.1.8 +humantime-2.1.0 +libc-0.2.126 +log-0.4.17 +memchr-2.5.0 +num-traits-0.2.15 +once_cell-1.12.0 +regex-1.5.6 +regex-syntax-0.6.26 +static_assertions-1.1.0 +termcolor-1.1.3 +version_check-0.9.4 +wasi-0.11.0+wasi-snapshot-preview1 +winapi-0.3.8 +winapi-i686-pc-windows-gnu-0.4.0 +winapi-util-0.1.5 +winapi-x86_64-pc-windows-gnu-0.4.0 +" + +inherit cargo gnome2-utils + +DESCRIPTION="RAW image formats decoding library" +HOMEPAGE="https://libopenraw.freedesktop.org/" +SRC_URI="https://${PN}.freedesktop.org/download/${P}.tar.xz" +SRC_URI+=" $(cargo_crate_uris)" + +LICENSE="GPL-3 LGPL-3" +SLOT="0/9" +KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris" +IUSE="gtk test" +RESTRICT="!test? ( test )" + +RDEPEND=" + dev-libs/libxml2 + media-libs/libjpeg-turbo:= + gtk? ( + dev-libs/glib:2 + >=x11-libs/gdk-pixbuf-2.24.0:2 + ) +" +DEPEND=" + ${RDEPEND} + dev-libs/boost +" +BDEPEND=" + virtual/pkgconfig + test? ( net-misc/curl ) +" + +src_configure() { + econf \ + --with-boost="${EPREFIX}"/usr \ + $(use_enable gtk gnome) +} + +src_compile() { + # Avoid cargo_src_compile + default +} + +src_test() { + # Avoid cargo_src_test + default +} + +src_install() { + default + + find "${ED}" -name '*.la' -delete || die +} + +pkg_preinst() { + use gtk && gnome2_gdk_pixbuf_savelist +} + +pkg_postinst() { + use gtk && gnome2_gdk_pixbuf_update +} + +pkg_postrm() { + use gtk && gnome2_gdk_pixbuf_update +}