diff options
author | 2022-12-01 10:34:53 -0500 | |
---|---|---|
committer | 2022-12-01 10:44:01 -0500 | |
commit | 822400a47cd508c5a2898b0a912dc6b36ac6d15b (patch) | |
tree | c32bf515b3f4b75125e475ac737ccfffbdd6ae54 /media-gfx | |
parent | dev-libs/glib: Version bump to 2.74.3 (diff) | |
download | gentoo-822400a47cd508c5a2898b0a912dc6b36ac6d15b.tar.gz gentoo-822400a47cd508c5a2898b0a912dc6b36ac6d15b.tar.bz2 gentoo-822400a47cd508c5a2898b0a912dc6b36ac6d15b.zip |
media-gfx/gnome-raw-thumbnailer: Delete
Closes: https://bugs.gentoo.org/878779
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'media-gfx')
6 files changed, 0 insertions, 177 deletions
diff --git a/media-gfx/gnome-raw-thumbnailer/Manifest b/media-gfx/gnome-raw-thumbnailer/Manifest deleted file mode 100644 index 56d9ba59d1ab..000000000000 --- a/media-gfx/gnome-raw-thumbnailer/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST raw-thumbnailer-3.0.0.tar.bz2 270499 BLAKE2B e08d78ba44f160ba1903b78b5e85d9237610c81ac9a63c25c7b2c308139b8e18c9041e2c35aaf44eb87017be17f7bb3968798e165c28349703a5306a78999bbd SHA512 b6b477af0ec604e100a67829bc9262a3aa54db9beb644e60a9ae95f916fd641ad7ccaa908fc6458be2eee60ecdb47bda9449720bc078f1c4fe0135fabf0bd9eb diff --git a/media-gfx/gnome-raw-thumbnailer/files/gnome-raw-thumbnailer-3.0.0-deprecation-warning.patch b/media-gfx/gnome-raw-thumbnailer/files/gnome-raw-thumbnailer-3.0.0-deprecation-warning.patch deleted file mode 100644 index 8fddadb435ab..000000000000 --- a/media-gfx/gnome-raw-thumbnailer/files/gnome-raw-thumbnailer-3.0.0-deprecation-warning.patch +++ /dev/null @@ -1,63 +0,0 @@ -From e769ad77617a3456f0f4aee9418ef6bdbab40403 Mon Sep 17 00:00:00 2001 -From: Anton Keks <anton@codeborne.com> -Date: Thu, 2 Jan 2014 23:14:55 +0200 -Subject: [PATCH 1/8] fix deprecation warnings - ---- - src/raw-thumbnailer.c | 11 ++--------- - 1 file changed, 2 insertions(+), 9 deletions(-) - -diff --git a/src/raw-thumbnailer.c b/src/raw-thumbnailer.c -index d638102..b32bc49 100644 ---- a/src/raw-thumbnailer.c -+++ b/src/raw-thumbnailer.c -@@ -64,7 +64,7 @@ save_pixbuf (GdkPixbuf *pixbuf, const char *path, int size) - } - else { - small = pixbuf; -- gdk_pixbuf_ref (small); -+ g_object_ref (small); - } - - a_width = g_strdup_printf ("%d", width); -@@ -88,14 +88,11 @@ save_pixbuf (GdkPixbuf *pixbuf, const char *path, int size) - g_free(a_height); - - if (small) { -- gdk_pixbuf_unref (small); -+ g_object_unref (small); - } - return; - } - -- -- -- - static const GOptionEntry entries[] = { - { "jpeg", 'j', 0, G_OPTION_ARG_NONE, &jpeg_output, "Output the thumbnail as a JPEG instead of PNG", NULL }, - { "size", 's', 0, G_OPTION_ARG_INT, &output_size, "Size of the thumbnail in pixels", NULL }, -@@ -107,8 +104,6 @@ static const GOptionEntry entries[] = { - { NULL } - }; - -- -- - int main (int argc, char ** argv) - { - const char *output_name; -@@ -121,7 +116,6 @@ int main (int argc, char ** argv) - - context = g_option_context_new ("Thumbnail camera RAW files."); - g_option_context_add_main_entries (context, entries, GETTEXT_PACKAGE); -- g_type_init (); - - if (g_option_context_parse (context, &argc, &argv, &err) == FALSE) { - g_print ("couldn't parse command-line options: %s\n", err->message); -@@ -161,4 +155,3 @@ int main (int argc, char ** argv) - return 0; - } - -- --- -2.12.2 - diff --git a/media-gfx/gnome-raw-thumbnailer/files/gnome-raw-thumbnailer-3.0.0-fix-downscale.patch b/media-gfx/gnome-raw-thumbnailer/files/gnome-raw-thumbnailer-3.0.0-fix-downscale.patch deleted file mode 100644 index def91cb3fb39..000000000000 --- a/media-gfx/gnome-raw-thumbnailer/files/gnome-raw-thumbnailer-3.0.0-fix-downscale.patch +++ /dev/null @@ -1,35 +0,0 @@ -From 5a03b1a9ffece1d38cc0cf91c599975b9f2b028e Mon Sep 17 00:00:00 2001 -From: Anton Keks <anton@codeborne.com> -Date: Thu, 2 Jan 2014 23:44:03 +0200 -Subject: [PATCH 1/7] downscale thumbnail if requested size is smaller than it - is, do not hardcode 128 - ---- - src/raw-thumbnailer.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/src/raw-thumbnailer.c b/src/raw-thumbnailer.c -index b32bc49..135dbe3 100644 ---- a/src/raw-thumbnailer.c -+++ b/src/raw-thumbnailer.c -@@ -47,7 +47,7 @@ save_pixbuf (GdkPixbuf *pixbuf, const char *path, int size) - height = gdk_pixbuf_get_height (pixbuf); - width = gdk_pixbuf_get_width (pixbuf); - -- if (size <= 128) { -+ if (size < height || size < width) { - int d_width, d_height; - - if (width > height) { -@@ -143,7 +143,7 @@ int main (int argc, char ** argv) - - char* inputfname = g_filename_from_uri (uri, NULL, NULL); - g_free(uri); -- -+ - pixbuf = or_gdkpixbuf_extract_rotated_thumbnail(inputfname, output_size); - g_free(inputfname); - --- -2.12.2 - diff --git a/media-gfx/gnome-raw-thumbnailer/files/gnome-raw-thumbnailer-3.0.0-libopenraw-0.1.patch b/media-gfx/gnome-raw-thumbnailer/files/gnome-raw-thumbnailer-3.0.0-libopenraw-0.1.patch deleted file mode 100644 index 50e5433809a0..000000000000 --- a/media-gfx/gnome-raw-thumbnailer/files/gnome-raw-thumbnailer-3.0.0-libopenraw-0.1.patch +++ /dev/null @@ -1,25 +0,0 @@ -From 5cc4ad36b9f25f6973ae48166595d201f215a012 Mon Sep 17 00:00:00 2001 -From: Gilles Dartiguelongue <eva@gentoo.org> -Date: Sun, 16 Apr 2017 16:50:00 +0200 -Subject: [PATCH] Update pkgconfig name of libopenraw - ---- - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/configure.ac b/configure.ac -index 0f637b5..26dbf5a 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -22,7 +22,7 @@ PKG_CHECK_MODULES(GNOME, gdk-pixbuf-2.0 gio-2.0 glib-2.0) - AC_SUBST(GNOME_CFLAGS) - AC_SUBST(GNOME_LIBS) - --PKG_CHECK_MODULES(OPENRAW, libopenraw-gnome-1.0 >= 0.0.9) -+PKG_CHECK_MODULES(OPENRAW, libopenraw-gnome-0.1 >= 0.1.0) - AC_SUBST(OPENRAW_CFLAGS) - AC_SUBST(OPENRAW_LIBS) - --- -2.12.2 - diff --git a/media-gfx/gnome-raw-thumbnailer/gnome-raw-thumbnailer-3.0.0-r2.ebuild b/media-gfx/gnome-raw-thumbnailer/gnome-raw-thumbnailer-3.0.0-r2.ebuild deleted file mode 100644 index 45f4ea3f8cc7..000000000000 --- a/media-gfx/gnome-raw-thumbnailer/gnome-raw-thumbnailer-3.0.0-r2.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit autotools gnome2 - -MY_P="${PN/gnome-}-${PV}" - -DESCRIPTION="A lightweight and fast raw image thumbnailer for GNOME" -HOMEPAGE="https://libopenraw.pages.freedesktop.org/raw-thumbnailer/" -SRC_URI="https://libopenraw.freedesktop.org/download/${MY_P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 ~ia64 ppc ppc64 sparc x86" -IUSE="" - -RDEPEND=" - >=media-libs/libopenraw-0.1.0:=[gtk] - >=x11-libs/gdk-pixbuf-2:2 - >=dev-libs/glib-2.26:2 - !media-gfx/raw-thumbnailer -" -DEPEND="${RDEPEND} - dev-util/intltool - gnome-base/gnome-common - sys-devel/gettext - virtual/pkgconfig -" - -S="${WORKDIR}/${MY_P}" - -PATCHES=( - "${FILESDIR}"/${P}-deprecation-warning.patch - "${FILESDIR}"/${P}-fix-downscale.patch - "${FILESDIR}"/${P}-libopenraw-0.1.patch -) - -src_prepare() { - default - eautoreconf -} diff --git a/media-gfx/gnome-raw-thumbnailer/metadata.xml b/media-gfx/gnome-raw-thumbnailer/metadata.xml deleted file mode 100644 index 5be4d9a9688f..000000000000 --- a/media-gfx/gnome-raw-thumbnailer/metadata.xml +++ /dev/null @@ -1,11 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="project"> - <email>gnome@gentoo.org</email> - <name>Gentoo GNOME Desktop</name> - </maintainer> - <upstream> - <remote-id type="gnome-gitlab">Archive/gnome-raw-thumbnailer</remote-id> - </upstream> -</pkgmetadata> |