Compare commits

..

1 Commits

Author SHA1 Message Date
0b198de627 import RHEL 10 Beta glycin-loaders-0.1.2-5.el10 2024-11-20 13:14:17 +00:00
5 changed files with 164 additions and 31 deletions

8
.gitignore vendored
View File

@ -1,7 +1 @@
/glycin-loaders-0.1.beta.2.tar.xz
/glycin-loaders-0.1.beta.3.tar.xz
/glycin-loaders-0.1.beta.4.tar.xz
/glycin-loaders-0.1.rc.tar.xz
/glycin-loaders-0.1.1.tar.xz
/glycin-loaders-0.1.2.tar.xz
/glycin-loaders-1.0.1.tar.xz
glycin-loaders-0.1.2.tar.xz

View File

@ -0,0 +1,67 @@
From be5633a760b751f00e434cbee41468930ac95dbd Mon Sep 17 00:00:00 2001
From: Fabio Valentini <decathorpe@gmail.com>
Date: Tue, 19 Sep 2023 15:00:17 +0200
Subject: [PATCH 1/4] Drop OpenEXR decoders since they are not enabled in the
image crate
---
loaders/glycin-image-rs/glycin-image-rs.conf | 4 ----
loaders/glycin-image-rs/src/bin/glycin-image-rs.rs | 6 ------
2 files changed, 10 deletions(-)
diff --git a/loaders/glycin-image-rs/glycin-image-rs.conf b/loaders/glycin-image-rs/glycin-image-rs.conf
index c96067f3..91508e60 100644
--- a/loaders/glycin-image-rs/glycin-image-rs.conf
+++ b/loaders/glycin-image-rs/glycin-image-rs.conf
@@ -36,10 +36,6 @@ Exec = @EXEC@
#[loader:image/vnd.radiance]
#Exec = @EXEC@
-# OpenEXR
-[loader:image/x-exr]
-Exec = @EXEC@
-
# PNM
[loader:image/x-portable-bitmap]
Exec = @EXEC@
diff --git a/loaders/glycin-image-rs/src/bin/glycin-image-rs.rs b/loaders/glycin-image-rs/src/bin/glycin-image-rs.rs
index d331d94e..699d50dc 100644
--- a/loaders/glycin-image-rs/src/bin/glycin-image-rs.rs
+++ b/loaders/glycin-image-rs/src/bin/glycin-image-rs.rs
@@ -141,7 +141,6 @@ pub enum ImageRsDecoder<T: std::io::Read + std::io::Seek> {
//Hdr(codecs::hdr::HdrDecoder<T>),
Ico(codecs::ico::IcoDecoder<T>),
Jpeg(codecs::jpeg::JpegDecoder<T>),
- OpenExr(codecs::openexr::OpenExrDecoder<T>),
Png(codecs::png::PngDecoder<T>),
Pnm(codecs::pnm::PnmDecoder<T>),
Qoi(codecs::qoi::QoiDecoder<T>),
@@ -164,9 +163,6 @@ impl ImageRsDecoder<Reader> {
Self::Ico(codecs::ico::IcoDecoder::new(data).context_failed()?)
}
"image/jpeg" => Self::Jpeg(codecs::jpeg::JpegDecoder::new(data).context_failed()?),
- "image/x-exr" => {
- Self::OpenExr(codecs::openexr::OpenExrDecoder::new(data).context_failed()?)
- }
"image/png" => Self::Png(codecs::png::PngDecoder::new(data).context_failed()?),
"image/x-portable-bitmap"
| "image/x-portable-graymap"
@@ -196,7 +192,6 @@ impl<'a, T: std::io::Read + std::io::Seek + 'a> ImageRsDecoder<T> {
//Self::Hdr(d) => ImageInfo::from_decoder(d, "Radiance HDR"),
Self::Ico(d) => ImageInfo::from_decoder(d, "ICO"),
Self::Jpeg(d) => ImageInfo::from_decoder(d, "JPEG"),
- Self::OpenExr(d) => ImageInfo::from_decoder(d, "OpenEXR"),
Self::Png(d) => ImageInfo::from_decoder(d, "PNG"),
Self::Pnm(d) => ImageInfo::from_decoder(d, "PNM"),
Self::Qoi(d) => ImageInfo::from_decoder(d, "QOI"),
@@ -215,7 +210,6 @@ impl<'a, T: std::io::Read + std::io::Seek + 'a> ImageRsDecoder<T> {
//Self::Hdr(d) => Frame::from_decoder(d),
Self::Ico(d) => Frame::from_decoder(d),
Self::Jpeg(d) => Frame::from_decoder(d),
- Self::OpenExr(d) => Frame::from_decoder(d),
Self::Png(d) => Frame::from_decoder(d),
Self::Pnm(d) => Frame::from_decoder(d),
Self::Qoi(d) => Frame::from_decoder(d),
--
2.41.0

View File

@ -1,6 +0,0 @@
--- !Policy
product_versions:
- rhel-10
decision_context: osci_compose_gate
rules:
- !PassingTestCaseRule {test_case_name: desktop-qe.desktop-ci.tier1-gating.functional}

View File

@ -1,6 +1,14 @@
%bcond check 1
%bcond heif %{undefined rhel}
%bcond jpegxl %{undefined rhel}
## START: Set by rpmautospec
## (rpmautospec version 0.6.1)
## RPMAUTOSPEC: autorelease, autochangelog
%define autorelease(e:s:pb:n) %{?-p:0.}%{lua:
release_number = 5;
base_release_number = tonumber(rpm.expand("%{?-b*}%{!?-b:1}"));
print(release_number + base_release_number - 1);
}%{?-e:.%{-e*}}%{?-s:.%{-s*}}%{!?-n:%{?dist}}
## END: Set by rpmautospec
%bcond_without check
%if 0%{?rhel}
%global bundled_rust_deps 1
@ -11,7 +19,7 @@
%global tarball_version %%(echo %{version} | tr '~' '.')
Name: glycin-loaders
Version: 1.0.1
Version: 0.1.2
Release: %autorelease
Summary: Sandboxed image rendering
@ -22,7 +30,6 @@ Summary: Sandboxed image rendering
# Apache-2.0 OR MIT
# Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT
# BSD-2-Clause
# GPL-3.0-or-later
# LGPL-2.1-or-later
# MIT
# MIT OR Apache-2.0
@ -32,10 +39,16 @@ Summary: Sandboxed image rendering
# MPL-2.0 OR LGPL-2.1-or-later
# Unlicense OR MIT
# Zlib OR Apache-2.0 OR MIT
License: Apache-2.0 AND BSD-2-Clause AND BSD-3-Clause AND GPL-3.0-or-later AND LGPL-2.1-or-later AND MIT AND MPL-2.0 AND Unicode-DFS-2016 AND (Apache-2.0 OR MIT) AND (0BSD OR MIT OR Apache-2.0) AND (Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT) AND (MIT OR Apache-2.0 OR Zlib) AND (MPL-2.0 OR LGPL-2.1-or-later) AND (Unlicense OR MIT)
License: (Apache-2.0 OR MIT) AND BSD-3-Clause AND (MIT OR Apache-2.0) AND Unicode-DFS-2016 AND (0BSD OR MIT OR Apache-2.0) AND Apache-2.0 AND (Apache-2.0 OR MIT) AND (Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT) AND BSD-2-Clause AND LGPL-2.1-or-later AND MIT AND (MIT OR Apache-2.0) AND (MIT OR Apache-2.0 OR Zlib) AND (MIT OR Zlib OR Apache-2.0) AND MPL-2.0 AND (MPL-2.0 OR LGPL-2.1-or-later) AND (Unlicense OR MIT) AND (Zlib OR Apache-2.0 OR MIT)
# LICENSE.dependencies contains a full license breakdown
URL: https://gitlab.gnome.org/sophie-h/glycin
Source0: https://download.gnome.org/sources/glycin-loaders/1.0/glycin-loaders-%{tarball_version}.tar.xz
Source0: https://download.gnome.org/sources/glycin-loaders/0.1/glycin-loaders-%{tarball_version}.tar.xz
# Fedora-packaged rust-image doesn't have openexr support
Patch: 0001-Drop-OpenEXR-decoders-since-they-are-not-enabled-in-.patch
%if 0%{?fedora}
# Bump libheif-rs dep to the version that's in Fedora
Patch: 0004-Bump-libheif-rs-dep-0.21.0.patch
%endif
# https://fedoraproject.org/wiki/Changes/EncourageI686LeafRemoval
ExcludeArch: %{ix86}
@ -48,14 +61,6 @@ BuildRequires: cargo-rpm-macros
BuildRequires: git-core
BuildRequires: meson
BuildRequires: pkgconfig(gtk4)
BuildRequires: pkgconfig(libseccomp)
%if %{with heif}
BuildRequires: pkgconfig(libheif)
%endif
%if %{with jpegxl}
BuildRequires: pkgconfig(libjxl)
%endif
BuildRequires: pkgconfig(cairo)
%description
Sandboxed and extendable image decoding.
@ -80,7 +85,7 @@ rm -rf vendor
%build
%meson \
-Dloaders=%{?with_heif:glycin-heif,}glycin-image-rs,%{?with_jpegxl:glycin-jxl,}glycin-svg \
-Dloaders=%{!?rhel:glycin-heif,}glycin-image-rs,glycin-jxl,glycin-svg \
-Dtest_skip_install=true \
%{nil}
@ -117,4 +122,77 @@ rm -rf vendor
%changelog
%autochangelog
## START: Generated by rpmautospec
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 0.1.2-5
- Bump release for June 2024 mass rebuild
* Thu Feb 01 2024 Yaakov Selkowitz <yselkowi@redhat.com> - 0.1.2-4
- Update Rust macro usage
* Wed Jan 24 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.2-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
* Fri Jan 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.2-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
* Tue Nov 14 2023 Kalev Lember <klember@redhat.com> - 0.1.2-1
- Update to 0.1.2
* Tue Nov 14 2023 Kalev Lember <klember@redhat.com> - 0.1.1-7
- Update license tag for dependencies
* Tue Nov 14 2023 Kalev Lember <klember@redhat.com> - 0.1.1-6
- Enable glycin-jxl loader
* Mon Nov 13 2023 Yaakov Selkowitz <yselkowi@redhat.com> - 0.1.1-5
- Fix RHEL build
* Thu Nov 09 2023 Kalev Lember <klember@redhat.com> - 0.1.1-4
- Enable glycin-heif loader
* Sun Oct 01 2023 Kalev Lember <klember@redhat.com> - 0.1.1-3
- Drop downstream patch to use librsvg pre-release version
* Thu Sep 21 2023 Kalev Lember <klember@redhat.com> - 0.1.1-2
- Enable heif support now that rust-libheif-rs is packaged
* Tue Sep 19 2023 Fabio Valentini <decathorpe@gmail.com> - 0.1.1-1
- Update to version 0.1.1
* Thu Sep 07 2023 Kalev Lember <klember@redhat.com> - 0.1~rc-4
- ExcludeArch i686 for
https://fedoraproject.org/wiki/Changes/EncourageI686LeafRemoval
* Thu Sep 07 2023 Kalev Lember <klember@redhat.com> - 0.1~rc-3
- Skip install during self tests
* Thu Sep 07 2023 Kalev Lember <klember@redhat.com> - 0.1~rc-2
- Use bundled rust deps on RHEL
* Wed Sep 06 2023 Kalev Lember <klember@redhat.com> - 0.1~rc-1
- Update to 0.1.rc
* Wed Aug 23 2023 Kalev Lember <klember@redhat.com> - 0.1~beta.4-2
- Enable qoi support now that it's available in rust-image
* Wed Aug 23 2023 Kalev Lember <klember@redhat.com> - 0.1~beta.4-1
- Update to 0.1.0-beta.4
- Upstream relicensed to 'MPL-2.0 OR LGPL-2.1-or-later'
* Tue Aug 22 2023 Kalev Lember <klember@redhat.com> - 0.1~beta.3-3
- Re-enable tests, but ignore the results for now
* Tue Aug 22 2023 Kalev Lember <klember@redhat.com> - 0.1~beta.3-2
- Temorarily disable tests
* Tue Aug 22 2023 Kalev Lember <klember@redhat.com> - 0.1~beta.3-1
- Update to 0.1.beta.3
* Mon Aug 21 2023 Kalev Lember <klember@redhat.com> - 0.1~beta.2-2
- Update the license tag to reflect the licenses of all rust dependencies
- Use LGPL-2.1-only for the project license until we get confirmation from
upstream
* Mon Aug 21 2023 Kalev Lember <klember@redhat.com> - 0.1~beta.2-1
- Initial Fedora packaging (rhbz#2233278)
## END: Generated by rpmautospec

View File

@ -1 +1 @@
SHA512 (glycin-loaders-1.0.1.tar.xz) = 6e5c02c8f04b130dbfc1e27a1db10bb23c815dcc35cb1623344b2f53ed8845cbb7af5142a826a2276d388723a2503e8e304adff1963baf886e316e122d114609
SHA512 (glycin-loaders-0.1.2.tar.xz) = ff373582714470c1b942e1aa831f0df3e34acbccc6ba74f7111f9b3666fb0067e75d532c1f5774180261176947dd7faf36d90da961bccf708246affc5f45164c