summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gentoo.org>2023-05-17 17:12:50 -0400
committerMatt Turner <mattst88@gentoo.org>2023-05-17 17:54:55 -0400
commit7060bf2a98cd5c68dda03dfc40c05cfe01a15b79 (patch)
tree97196d0ebaafccaa2abf7111a1a39d8bc9307f04 /media-gfx/shotwell
parentmedia-gfx/gphoto2: Drop old versions (diff)
downloadgentoo-7060bf2a98cd5c68dda03dfc40c05cfe01a15b79.tar.gz
gentoo-7060bf2a98cd5c68dda03dfc40c05cfe01a15b79.tar.bz2
gentoo-7060bf2a98cd5c68dda03dfc40c05cfe01a15b79.zip
media-gfx/shotwell: Drop old versions
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'media-gfx/shotwell')
-rw-r--r--media-gfx/shotwell/Manifest2
-rw-r--r--media-gfx/shotwell/files/0.30.16-optional-wayland.patch59
-rw-r--r--media-gfx/shotwell/files/shotwell-gphoto2-Add-missing-cheader-attributes-of-delegate-s.patch57
-rw-r--r--media-gfx/shotwell/shotwell-0.30.17-r1.ebuild90
-rw-r--r--media-gfx/shotwell/shotwell-0.31.7.ebuild93
5 files changed, 0 insertions, 301 deletions
diff --git a/media-gfx/shotwell/Manifest b/media-gfx/shotwell/Manifest
index 332474e7b203..aabf54f99e8d 100644
--- a/media-gfx/shotwell/Manifest
+++ b/media-gfx/shotwell/Manifest
@@ -1,4 +1,2 @@
-DIST shotwell-0.30.17.tar.xz 6533460 BLAKE2B 58ec94f21bf465dcc19760f40235db7d2ad7d00c214802cd3ad6cfd67cb1088a5999f183c8ae36398e492a1b387e6ea717a9b8d0f31f4ef369e67c10150ae57a SHA512 f680b6f58538fb7b584594d00da7fe997dbc766583a5b5a85943b3df905dbc7192d3e7b5c7b47b6bd1221280995aaba878ea1afff9b042995bf30fbcbce5f7ea
-DIST shotwell-0.31.7.tar.xz 6610144 BLAKE2B b8f69237abb987508f565d5bfd59123fabf2fa1023783362b189da2690a2b72d5908e13c1371097b48db9eddf1b1361b0b92ca1b5e86287dd35b484bbf119593 SHA512 6653cbc2b2147f65d615f6ea879d012e6a5c5b55c9dfcdb8ff9fecf909ee6f5db96ac8124608d8223e0a95ab26508064b9376a293a2bd4fe05a821988400f42e
DIST shotwell-0.32.0.tar.xz 35326752 BLAKE2B a201e5cc910872730a902d43a8d8b16f882966100bcc061d8c88fcfd43b1d0db54b98691b2d4a40568ddcb9d9ec28ca31c7575db7ae5ee4db304a27d10999c3a SHA512 0ff24d70cc15b68d5c51bc3ff42a10873656e5e16bfa273bb928a68ae569898136a33df92468b682c2ebc662f0bfa53ac7748b4b140d03b9608b68447b738051
DIST shotwell-0.32.1.tar.xz 35324252 BLAKE2B a8fd4195dcf495db8413586805f0d75d37759b62847c55dc8e81ed447c7d3c75e1f0f6b95f3982ee0712403b850d735962e4cd0f48ec41426e98c62555fdeb60 SHA512 1d487a0ea7ef0fb1b26d7c53b50e64b7d899bb9082744620dd421195b3ea90765633aac940695371d82fe5054f979e43cb587e726c4fa90712403ea9f60afcfe
diff --git a/media-gfx/shotwell/files/0.30.16-optional-wayland.patch b/media-gfx/shotwell/files/0.30.16-optional-wayland.patch
deleted file mode 100644
index 5cc82e67dc7d..000000000000
--- a/media-gfx/shotwell/files/0.30.16-optional-wayland.patch
+++ /dev/null
@@ -1,59 +0,0 @@
-Make wayland backend optional
-
-* Unfortunately, upstream is hostile to making wayland optional:
- https://gitlab.gnome.org/GNOME/shotwell/-/merge_requests/57#note_1500284
-
-See: https://bugs.gentoo.org/836831
-
---- a/meson.build
-+++ b/meson.build
-@@ -64,7 +64,14 @@
- libraw = dependency('libraw', version : '>= 0.13.2')
- libexif = dependency('libexif', version : '>= 0.6.16')
- unity = dependency('unity', required : false)
--gdk = [ dependency('gdk-x11-3.0'), dependency('gdk-wayland-3.0') ]
-+gdk = [ dependency('gdk-x11-3.0') ]
-+add_global_arguments(['--define=HAVE_X11_BACKEND'],
-+ language : 'vala')
-+if get_option('wayland')
-+ gdk += [dependency('gdk-wayland-3.0')]
-+ add_global_arguments(['--define=HAVE_WAYLAND_BACKEND'],
-+ language : 'vala')
-+endif
-
- unity_available = false
- if unity.found() and get_option('unity-support')
---- a/meson_options.txt
-+++ b/meson_options.txt
-@@ -8,3 +8,4 @@
- option('install-apport-hook', type : 'boolean', value : 'true', description: 'Enable Ubuntu apport hook')
- option('face-detection', type:'boolean', value:false, description: 'Enable face detection and recognition features')
- option('fatal_warnings', type:'boolean', value:false)
-+option('wayland', type: 'boolean', value: true, description: 'Enable Wayland support')
---- a/src/Portal.vala
-+++ b/src/Portal.vala
-@@ -53,6 +53,7 @@
- private static async string get_parent_window () {
- var window = AppWindow.get_instance().get_window ();
-
-+#if HAVE_WAYLAND_BACKEND
- if (window is Gdk.Wayland.Window) {
- var handle = "wayland:";
- ((Gdk.Wayland.Window) window).export_handle ((w, h) => {
-@@ -61,9 +62,14 @@
- });
- yield;
- return handle;
-- } else if (window is Gdk.X11.Window) {
-+ } else
-+#endif
-+#if HAVE_X11_BACKEND
-+ if (window is Gdk.X11.Window) {
- return "x11:%x".printf ((uint) ((Gdk.X11.Window) window).get_xid ());
-- } else {
-+ } else
-+#endif
-+ {
- warning ("Could not get parent window");
- return "";
- }
diff --git a/media-gfx/shotwell/files/shotwell-gphoto2-Add-missing-cheader-attributes-of-delegate-s.patch b/media-gfx/shotwell/files/shotwell-gphoto2-Add-missing-cheader-attributes-of-delegate-s.patch
deleted file mode 100644
index 76e959266fc7..000000000000
--- a/media-gfx/shotwell/files/shotwell-gphoto2-Add-missing-cheader-attributes-of-delegate-s.patch
+++ /dev/null
@@ -1,57 +0,0 @@
-From cd82759231e5ece2fa0dea40397c9051d15fd5c2 Mon Sep 17 00:00:00 2001
-From: Rico Tzschichholz <ricotz@ubuntu.com>
-Date: Sun, 5 Feb 2023 20:44:49 +0100
-Subject: [PATCH] gphoto2: Add missing cheader attributes of delegate symbols
-
----
- vapi/libgphoto2.vapi | 21 +++++++++++++++++++++
- 1 file changed, 21 insertions(+)
-
-diff --git a/vapi/libgphoto2.vapi b/vapi/libgphoto2.vapi
-index e9387b29..67cb2098 100644
---- a/vapi/libgphoto2.vapi
-+++ b/vapi/libgphoto2.vapi
-@@ -340,19 +340,40 @@ namespace GPhoto {
- public void set_message_func([CCode (delegate_target_pos=3.1)] ContextMessageFunc messageFunc);
- }
-
-+ [CCode (
-+ cheader_filename="gphoto2/gphoto2-context.h"
-+ )]
- public delegate void ContextIdleFunc(Context context);
-
-+ [CCode (
-+ cheader_filename="gphoto2/gphoto2-context.h"
-+ )]
- public delegate void ContextErrorFunc(Context context, string text);
-
-+ [CCode (
-+ cheader_filename="gphoto2/gphoto2-context.h"
-+ )]
- public delegate void ContextStatusFunc(Context context, string text);
-
-+ [CCode (
-+ cheader_filename="gphoto2/gphoto2-context.h"
-+ )]
- public delegate void ContextMessageFunc(Context context, string text);
-
- // TODO: Support for va_args in Vala, esp. for delegates?
-+ [CCode (
-+ cheader_filename="gphoto2/gphoto2-context.h"
-+ )]
- public delegate uint ContextProgressStartFunc(Context context, float target, string text);
-
-+ [CCode (
-+ cheader_filename="gphoto2/gphoto2-context.h"
-+ )]
- public delegate void ContextProgressUpdateFunc(Context context, uint id, float current);
-
-+ [CCode (
-+ cheader_filename="gphoto2/gphoto2-context.h"
-+ )]
- public delegate void ContextProgressStopFunc(Context context, uint id);
-
- [CCode (
---
-2.39.2
-
diff --git a/media-gfx/shotwell/shotwell-0.30.17-r1.ebuild b/media-gfx/shotwell/shotwell-0.30.17-r1.ebuild
deleted file mode 100644
index 332fa0c27c41..000000000000
--- a/media-gfx/shotwell/shotwell-0.30.17-r1.ebuild
+++ /dev/null
@@ -1,90 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{9..11} )
-inherit gnome.org gnome2-utils meson python-any-r1 vala xdg
-
-DESCRIPTION="Open source photo manager for GNOME"
-HOMEPAGE="https://wiki.gnome.org/Apps/Shotwell"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~ppc64 ~riscv ~sparc x86"
-IUSE="opencv udev wayland"
-
-DEPEND="
- >=x11-libs/gtk+-3.22.0:3[wayland?]
- >=dev-libs/glib-2.40.0:2
- >=dev-libs/libgee-0.8.5:0.8
- >=net-libs/webkit-gtk-2.26:4
- >=dev-libs/json-glib-0.7.6
- >=dev-libs/libxml2-2.6.32:2
- x11-libs/gdk-pixbuf:2
- >=dev-db/sqlite-3.5.9:3
- media-libs/gstreamer:1.0
- media-libs/gst-plugins-base:1.0
- >=media-libs/libgphoto2-2.5:=
- udev? ( >=dev-libs/libgudev-145:= )
- >=media-libs/gexiv2-0.10.4
- >=media-libs/libraw-0.13.2:=
- >=media-libs/libexif-0.6.16:=
- dev-libs/libgdata
- >=app-crypt/gcr-3:0=[gtk]
- x11-libs/cairo
- opencv? ( >=media-libs/opencv-2.3.0:= )
-"
-RDEPEND="${DEPEND}
- media-plugins/gst-plugins-gdkpixbuf:1.0
- media-plugins/gst-plugins-meta:1.0
-"
-BDEPEND="
- ${PYTHON_DEPS}
- $(vala_depend)
- dev-libs/appstream-glib
- dev-util/itstool
- >=sys-devel/gettext-0.19.8
- virtual/pkgconfig
- net-libs/libsoup:2.4[vala]
- media-libs/gexiv2[vala]
- app-crypt/gcr:0[vala]
-"
-
-PATCHES=(
- "${FILESDIR}"/${PN}-gphoto2-Add-missing-cheader-attributes-of-delegate-s.patch
- "${FILESDIR}"/0.30.16-optional-wayland.patch
-)
-
-src_prepare() {
- default
- vala_setup
- xdg_environment_reset
-}
-
-src_configure() {
- local emesonargs=(
- -Dunity-support=false
- # -Dpublishers # In 0.30.2 all get compiled in anyways, even if restricted list, affects only runtime support
- -Dextra-plugins=true
- #trace
- #measure
- -Ddupe-detection=true
- $(meson_use udev)
- -Dinstall-apport-hook=false
- $(meson_use opencv face-detection)
- -Dfatal_warnings=false
- $(meson_use wayland)
- )
- meson_src_configure
-}
-
-pkg_postinst() {
- xdg_pkg_postinst
- gnome2_schemas_update
-}
-
-pkg_postrm() {
- xdg_pkg_postrm
- gnome2_schemas_update
-}
diff --git a/media-gfx/shotwell/shotwell-0.31.7.ebuild b/media-gfx/shotwell/shotwell-0.31.7.ebuild
deleted file mode 100644
index 2e50785196e9..000000000000
--- a/media-gfx/shotwell/shotwell-0.31.7.ebuild
+++ /dev/null
@@ -1,93 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{9..11} )
-inherit gnome.org gnome2-utils meson python-any-r1 vala xdg
-
-DESCRIPTION="Open source photo manager for GNOME"
-HOMEPAGE="https://wiki.gnome.org/Apps/Shotwell"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~sparc ~x86"
-IUSE="opencv udev"
-
-DEPEND="
- >=x11-libs/gtk+-3.22.0:3
- >=dev-libs/glib-2.40.0:2
- >=dev-libs/libgee-0.8.5:0.8=
- >=net-libs/webkit-gtk-2.26:4.1
- net-libs/libsoup:3.0
- >=dev-libs/json-glib-0.7.6
- >=dev-libs/libxml2-2.6.32:2
- x11-libs/gdk-pixbuf:2
- >=dev-db/sqlite-3.5.9:3
- >=media-libs/gstreamer-1.20:1.0
- >=media-libs/gst-plugins-base-1.20:1.0
- >=media-libs/libgphoto2-2.5:=
- udev? ( >=dev-libs/libgudev-145:= )
- >=media-libs/gexiv2-0.12.3
- >=media-libs/libraw-0.13.2:=
- >=media-libs/libexif-0.6.16
- app-crypt/libsecret
- >=dev-libs/libportal-0.5:=[gtk]
- media-libs/libwebp:=
-
- >=app-crypt/gcr-3:0=[gtk]
- x11-libs/cairo
- opencv? ( >=media-libs/opencv-4.0.0:= )
-"
-RDEPEND="${DEPEND}
- media-plugins/gst-plugins-gdkpixbuf:1.0
- media-plugins/gst-plugins-meta:1.0
-"
-BDEPEND="
- ${PYTHON_DEPS}
- $(vala_depend)
- dev-libs/appstream-glib
- dev-libs/glib
- dev-util/gdbus-codegen
- dev-util/itstool
- >=sys-devel/gettext-0.19.8
- virtual/pkgconfig
- net-libs/libsoup:3.0[vala]
- media-libs/gexiv2[vala]
- app-crypt/gcr:0[vala]
-"
-
-PATCHES=(
- "${FILESDIR}"/${PN}-gphoto2-Add-missing-cheader-attributes-of-delegate-s.patch
-)
-
-src_prepare() {
- default
- vala_setup
- xdg_environment_reset
-}
-
-src_configure() {
- local emesonargs=(
- -Dunity_support=false
- # -Dpublishers # In 0.30.2 all get compiled in anyways, even if restricted list, affects only runtime support
- #trace
- #measure
- -Ddupe_detection=true
- $(meson_use udev)
- -Dinstall_apport_hook=false
- $(meson_use opencv face_detection)
- -Dfatal_warnings=false
- )
- meson_src_configure
-}
-
-pkg_postinst() {
- xdg_pkg_postinst
- gnome2_schemas_update
-}
-
-pkg_postrm() {
- xdg_pkg_postrm
- gnome2_schemas_update
-}