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, 27 Jun 2025 14:10:45 +0000 (UTC)	[thread overview]
Message-ID: <1751033433.4d4ebb3874df20a540f4491a6cb59e7a33bb91e4.ppn@gentoo> (raw)

commit:     4d4ebb3874df20a540f4491a6cb59e7a33bb91e4
Author:     Nicolas PARLANT <nicolas.parlant <AT> parhuet <DOT> fr>
AuthorDate: Fri Jun 27 14:10:33 2025 +0000
Commit:     Nicolas PARLANT <ppn <AT> parhuet <DOT> fr>
CommitDate: Fri Jun 27 14:10:33 2025 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4d4ebb38

media-gfx/swayimg: drop 4.1

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

 media-gfx/swayimg/Manifest           |  1 -
 media-gfx/swayimg/swayimg-4.1.ebuild | 76 ------------------------------------
 2 files changed, 77 deletions(-)

diff --git a/media-gfx/swayimg/Manifest b/media-gfx/swayimg/Manifest
index 15e3978800..c482de4ee5 100644
--- a/media-gfx/swayimg/Manifest
+++ b/media-gfx/swayimg/Manifest
@@ -1,3 +1,2 @@
-DIST swayimg-4.1.tar.gz 772139 BLAKE2B f20aca21800510f348f0cff3ee9d2c1a176f746b0e75f3b39147d1cee23ef54454ee618120c87d9649fde0bb0565ed2462bdc148b107c6eaf026d94cd8d7f3ad SHA512 0cce9c60bba1daa85776d155a656f7d3988a4e8fd5fa8f461c1bec00c800fdf6a51f6a18212042f61e324d45936434988d60e80bf03f237172d9a159e3e52153
 DIST swayimg-4.2.tar.gz 778261 BLAKE2B 58a0fc1b70c7218493d499d224fd32bfcd4083515060ae6d5ec40225f127a0cc9115dff9237f90e12fb46ac66f110d7003edf8ea13218d7b5e631074c8d30f76 SHA512 6496591410ddadd4569c51e12b92d32f83b233b055212a50c861facb30cc7fe5c58c8b4e4955ae862086ed3d06f014fcc657fb8ba112b3bbfb287dc1e3ec3852
 DIST swayimg-4.3.tar.gz 785384 BLAKE2B 1d341b92865436b7cb1393e719a2e5fa3a69200a7cc4e2b0ce0d07564578245835951fd70bb186b3defaffc7765962694db8d73fa97b3721c2e2e992b7f6c38d SHA512 cdd9ee386fdc63f136ec91aa2750ffb67eb6b5a8b6751f75b7947a1793814d1ba81973ad7db19316d496cd6a355fc6288c326a042e8fe7f410e2a2346b2c6b57

diff --git a/media-gfx/swayimg/swayimg-4.1.ebuild b/media-gfx/swayimg/swayimg-4.1.ebuild
deleted file mode 100644
index 71f57da146..0000000000
--- a/media-gfx/swayimg/swayimg-4.1.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# 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 +sway test tiff webp X"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-	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=]
-	)
-	sway? ( dev-libs/json-c:= )
-	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 sway)
-		$(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-06-27 14:10 UTC|newest]

Thread overview: 39+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-06-27 14:10 Nicolas PARLANT [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-07-13  8:45 [gentoo-commits] repo/proj/guru:dev commit in: media-gfx/swayimg/ Filip Kobierski
2025-07-11 15:27 Filip Kobierski
2025-07-11 15:27 Filip Kobierski
2025-07-11 15:27 Filip Kobierski
2025-07-09  9:58 Nicolas PARLANT
2025-07-09  9:58 Nicolas PARLANT
2025-07-08 14:52 Nicolas PARLANT
2025-06-27 14:13 Nicolas PARLANT
2025-06-27 14:10 Nicolas PARLANT
2025-06-02  1:41 Nicolas PARLANT
2025-06-02  1:41 Nicolas PARLANT
2025-05-18 19:10 Nicolas PARLANT
2025-03-14 11:41 Nicolas PARLANT
2025-02-01 22:22 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=1751033433.4d4ebb3874df20a540f4491a6cb59e7a33bb91e4.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