public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Nicolas PARLANT" <ppn@parhuet.fr>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:dev commit in: media-gfx/swayimg/
Date: Fri, 14 Mar 2025 11:41:52 +0000 (UTC)	[thread overview]
Message-ID: <1741951007.73214bf8195ba32dcd4efb41b28d9e8f9a143abf.ppn@gentoo> (raw)

commit:     73214bf8195ba32dcd4efb41b28d9e8f9a143abf
Author:     Nicolas PARLANT <nicolas.parlant <AT> parhuet <DOT> fr>
AuthorDate: Fri Mar 14 11:15:23 2025 +0000
Commit:     Nicolas PARLANT <ppn <AT> parhuet <DOT> fr>
CommitDate: Fri Mar 14 11:16:47 2025 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=73214bf8

media-gfx/swayimg: add 3.9

add raw support via media-libs/libraw

Signed-off-by: Nicolas PARLANT <nicolas.parlant <AT> parhuet.fr>

 media-gfx/swayimg/Manifest           |  1 +
 media-gfx/swayimg/swayimg-3.9.ebuild | 74 ++++++++++++++++++++++++++++++++++++
 2 files changed, 75 insertions(+)

diff --git a/media-gfx/swayimg/Manifest b/media-gfx/swayimg/Manifest
index fb5cd0db6..49b833774 100644
--- a/media-gfx/swayimg/Manifest
+++ b/media-gfx/swayimg/Manifest
@@ -1,2 +1,3 @@
 DIST swayimg-3.7.tar.gz 754482 BLAKE2B 028ddd5f8348d7323ed8acf8ea2839466bfc599b433b7528292af23eb8cb250afd3f381f9634de806f64967e1a7a1cb7ee5044145dfeb6ad4bac09204cef00ec SHA512 bbd58c6600faeab456550f539ef1989b6163ad048641d76c8c1b68ac9bfafa077bdb46581cc5ceae17d179255072cf27ebc0d012fd3e55005e110d6d0856298a
 DIST swayimg-3.8.tar.gz 754719 BLAKE2B c41b22912499db8bbc0de5b778280d84826b4cfc974d036a8ba7c6bc2a1b54ed87667c7ae11eb4c9ddccc56f753a0ce1256d0c4516e2a3cd72f28a40551759a3 SHA512 3075eb4f48d11708ff0610a7551c38a0b09d65210c56b267410e688f595711ee5357d27a48ce4a8c3e0fe9a4204881f30363579e5686f0979ce59d0277185303
+DIST swayimg-3.9.tar.gz 756909 BLAKE2B 09dccc87a07ef154db792a441d5e8265b0d04432f70c2510eb64df8d0f971aa2b012915e2520c52336eb111ef60d333b7fdf24b8b578ea54e93de4ba27e74c2d SHA512 66d97c6695eb030d1013f28bc4fdbb210d26fe602f178fe32e20084f84d8b8e1934012d93e6239234dadbcb2715e61762eadb2350fb6725788b8e70acbea0b11

diff --git a/media-gfx/swayimg/swayimg-3.9.ebuild b/media-gfx/swayimg/swayimg-3.9.ebuild
new file mode 100644
index 000000000..a202adbf3
--- /dev/null
+++ b/media-gfx/swayimg/swayimg-3.9.ebuild
@@ -0,0 +1,74 @@
+# Copyright 2023-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson xdg
+
+DESCRIPTION="A lightweight image viewer for Wayland display servers"
+HOMEPAGE="https://github.com/artemsen/swayimg"
+SRC_URI="https://github.com/artemsen/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="avif bash-completion exif exr gif heif jpeg jpegxl png raw sixel svg test tiff webp X"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+	dev-libs/json-c:=
+	dev-libs/wayland
+	media-libs/fontconfig
+	media-libs/freetype
+	x11-libs/libxkbcommon
+	avif? ( media-libs/libavif:= )
+	bash-completion? ( app-shells/bash-completion )
+	exif? ( media-libs/libexif )
+	exr? ( media-libs/openexr:= )
+	gif? ( media-libs/giflib:= )
+	heif? ( media-libs/libheif:= )
+	jpeg? ( media-libs/libjpeg-turbo:= )
+	jpegxl? ( media-libs/libjxl:= )
+	png? ( media-libs/libpng:= )
+	raw? ( media-libs/libraw:= )
+	sixel? ( media-libs/libsixel )
+	svg? (
+		dev-libs/glib:2
+		gnome-base/librsvg:2
+		x11-libs/cairo[X=]
+	)
+	tiff? ( media-libs/tiff:= )
+	webp? ( media-libs/libwebp:= )"
+DEPEND="${RDEPEND}
+	dev-libs/wayland-protocols
+	svg? ( X? ( x11-base/xorg-proto ) )
+"
+BDEPEND="
+	dev-util/wayland-scanner
+	test? ( dev-cpp/gtest )
+"
+
+src_configure() {
+	local emesonargs=(
+		$(meson_feature avif)
+		$(meson_feature exif)
+		$(meson_feature exr)
+		$(meson_feature gif)
+		$(meson_feature heif)
+		$(meson_feature jpeg)
+		$(meson_feature jpegxl jxl)
+		$(meson_feature png)
+		$(meson_feature raw)
+		$(meson_feature sixel)
+		$(meson_feature svg)
+		$(meson_feature test tests)
+		$(meson_feature tiff)
+		$(meson_feature webp)
+		$(meson_feature bash-completion bash)
+		-Dversion=${PV}
+		-Ddesktop=true
+		-Dman=true
+		-Dzsh=enabled
+	)
+	meson_src_configure
+}


             reply	other threads:[~2025-03-14 11:41 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-03-14 11:41 Nicolas PARLANT [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-02-01 22:22 [gentoo-commits] repo/proj/guru:dev commit in: media-gfx/swayimg/ Filip Kobierski
2025-02-01 19:09 Filip Kobierski
2025-02-01 13:36 Nicolas PARLANT
2025-02-01 13:36 Nicolas PARLANT
2025-01-19 19:06 Nicolas PARLANT
2024-12-08 21:10 Nicolas PARLANT
2024-12-08 21:10 Nicolas PARLANT
2024-12-08 20:59 Nicolas PARLANT
2024-12-08 20:59 Nicolas PARLANT
2024-11-16 20:30 Nicolas PARLANT
2024-11-16 20:30 Nicolas PARLANT
2024-11-02 15:20 Takuya Wakazono
2024-11-02 13:02 Takuya Wakazono
2024-11-01  1:39 Dale Showers
2024-10-28  0:48 Nicolas PARLANT
2024-10-28  0:17 Nicolas PARLANT
2024-08-27 15:37 Filip Kobierski
2024-08-27 15:37 Filip Kobierski
2024-07-07  9:02 Takuya Wakazono
2024-03-12  9:55 Takuya Wakazono
2024-01-07  7:24 Takuya Wakazono
2023-08-01 20:51 Mykyta Holubakha
2023-06-03 12:20 Mykyta Holubakha
2023-06-03 12:16 Mykyta Holubakha
2023-06-03 12:06 Mykyta Holubakha

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1741951007.73214bf8195ba32dcd4efb41b28d9e8f9a143abf.ppn@gentoo \
    --to=ppn@parhuet.fr \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox