Compare commits
No commits in common. "c8" and "c10s" have entirely different histories.
@ -1 +0,0 @@
|
||||
2f3677c2aafa1c6a832befe45e0aeb25f9f95089 SOURCES/brasero-3.12.2.tar.xz
|
36
.gitignore
vendored
36
.gitignore
vendored
@ -1 +1,35 @@
|
||||
SOURCES/brasero-3.12.2.tar.xz
|
||||
brasero-2.31.5.tar.bz2
|
||||
/brasero-2.31.90.tar.bz2
|
||||
/brasero-2.31.91.tar.bz2
|
||||
/brasero-2.31.92.tar.bz2
|
||||
/brasero-2.32.0.tar.bz2
|
||||
/brasero-2.91.0.tar.bz2
|
||||
/brasero-2.91.1.tar.bz2
|
||||
/brasero-2.91.2-gitcede364.tar.gz
|
||||
/brasero-2.91.2.tar.bz2
|
||||
/brasero-2.91.3.tar.bz2
|
||||
/brasero-2.91.4.2.tar.bz2
|
||||
/brasero-2.91.5.tar.bz2
|
||||
/brasero-2.91.6.tar.bz2
|
||||
/brasero-2.91.90.tar.bz2
|
||||
/brasero-2.91.91.tar.bz2
|
||||
/brasero-2.91.93.tar.bz2
|
||||
/brasero-3.0.0.tar.bz2
|
||||
/brasero-3.2.0.tar.xz
|
||||
/brasero-3.3.91.tar.xz
|
||||
/brasero-3.3.92.tar.xz
|
||||
/brasero-3.4.0.tar.xz
|
||||
/brasero-3.4.1.tar.xz
|
||||
/brasero-3.5.92.tar.xz
|
||||
/brasero-3.6.0.tar.xz
|
||||
/brasero-3.6.1.tar.xz
|
||||
/brasero-3.7.91.tar.gz
|
||||
/brasero-3.8.0.tar.xz
|
||||
/brasero-3.10.0.tar.xz
|
||||
/brasero-3.11.0.tar.xz
|
||||
/brasero-3.11.3.tar.xz
|
||||
/brasero-3.11.4.tar.xz
|
||||
/brasero-3.12.0.tar.xz
|
||||
/brasero-3.12.1.tar.gz
|
||||
/brasero-3.12.2.tar.xz
|
||||
/brasero-3.12.3.tar.xz
|
||||
|
@ -1,153 +0,0 @@
|
||||
From a2cca499d8b7e4b8ca7030e0656f6c57e98beb88 Mon Sep 17 00:00:00 2001
|
||||
From: Bastien Nocera <hadess@hadess.net>
|
||||
Date: Thu, 9 Sep 2021 15:09:35 +0200
|
||||
Subject: [PATCH 1/4] libbrasero-media: Fix memset() warning
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
|
||||
libbrasero-media/scsi-read-track-information.c: In function ‘brasero_read_track_info’:
|
||||
libbrasero-media/scsi-read-track-information.c:116:33: warning: argument to ‘sizeof’ in ‘memset’ call is the same pointer type ‘BraseroScsiTrackInfo *’ {aka ‘struct _BraseroScsiTrackInfo *’} as the destination; expected ‘BraseroScsiTrackInfo’ {aka ‘struct _BraseroScsiTrackInfo’} or an explicit length [-Wsizeof-pointer-memaccess]
|
||||
116 | memset (&hdr, 0, sizeof (info));
|
||||
| ^
|
||||
---
|
||||
libbrasero-media/scsi-read-track-information.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/libbrasero-media/scsi-read-track-information.c b/libbrasero-media/scsi-read-track-information.c
|
||||
index 37644f25..6f6274ad 100644
|
||||
--- a/libbrasero-media/scsi-read-track-information.c
|
||||
+++ b/libbrasero-media/scsi-read-track-information.c
|
||||
@@ -113,7 +113,7 @@ brasero_read_track_info (BraseroRdTrackInfoCDB *cdb,
|
||||
|
||||
/* first ask the drive how long should the data be and then ... */
|
||||
datasize = 4;
|
||||
- memset (&hdr, 0, sizeof (info));
|
||||
+ memset (&hdr, 0, sizeof (hdr));
|
||||
BRASERO_SET_16 (cdb->alloc_len, datasize);
|
||||
res = brasero_scsi_command_issue_sync (cdb, &hdr, datasize, error);
|
||||
if (res)
|
||||
--
|
||||
GitLab
|
||||
|
||||
|
||||
From 45dee052e1c3d636fd1c6d32f6320e33163ee05d Mon Sep 17 00:00:00 2001
|
||||
From: Bastien Nocera <hadess@hadess.net>
|
||||
Date: Thu, 9 Sep 2021 22:44:58 +0200
|
||||
Subject: [PATCH 2/4] libbrasero-burn: Better log for
|
||||
brasero_check_flags_for_drive()
|
||||
|
||||
Print some debug when flags don't match.
|
||||
---
|
||||
libbrasero-burn/burn-basics.c | 20 +++++++++++++++-----
|
||||
1 file changed, 15 insertions(+), 5 deletions(-)
|
||||
|
||||
diff --git a/libbrasero-burn/burn-basics.c b/libbrasero-burn/burn-basics.c
|
||||
index 2bfe7fde..f4c3a9f0 100644
|
||||
--- a/libbrasero-burn/burn-basics.c
|
||||
+++ b/libbrasero-burn/burn-basics.c
|
||||
@@ -118,24 +118,34 @@ brasero_check_flags_for_drive (BraseroDrive *drive,
|
||||
media = brasero_medium_get_status (medium);
|
||||
if (flags & BRASERO_BURN_FLAG_DUMMY) {
|
||||
/* This is always FALSE */
|
||||
- if (media & BRASERO_MEDIUM_PLUS)
|
||||
+ if (media & BRASERO_MEDIUM_PLUS) {
|
||||
+ BRASERO_BURN_LOG ("Drive does not support BRASERO_MEDIUM_PLUS flag");
|
||||
return FALSE;
|
||||
+ }
|
||||
|
||||
if (media & BRASERO_MEDIUM_DVD) {
|
||||
- if (!brasero_medium_can_use_dummy_for_sao (medium))
|
||||
+ if (!brasero_medium_can_use_dummy_for_sao (medium)) {
|
||||
+ BRASERO_BURN_LOG ("Drive does not support using dummy for SAO");
|
||||
return FALSE;
|
||||
+ }
|
||||
}
|
||||
else if (flags & BRASERO_BURN_FLAG_DAO) {
|
||||
- if (!brasero_medium_can_use_dummy_for_sao (medium))
|
||||
+ if (!brasero_medium_can_use_dummy_for_sao (medium)) {
|
||||
+ BRASERO_BURN_LOG ("Drive does not support using dummy for DAO");
|
||||
return FALSE;
|
||||
+ }
|
||||
}
|
||||
- else if (!brasero_medium_can_use_dummy_for_tao (medium))
|
||||
+ else if (!brasero_medium_can_use_dummy_for_tao (medium)) {
|
||||
+ BRASERO_BURN_LOG ("Drive does not support using dummy for TAO");
|
||||
return FALSE;
|
||||
+ }
|
||||
}
|
||||
|
||||
if (flags & BRASERO_BURN_FLAG_BURNPROOF) {
|
||||
- if (!brasero_medium_can_use_burnfree (medium))
|
||||
+ if (!brasero_medium_can_use_burnfree (medium)) {
|
||||
+ BRASERO_BURN_LOG ("Drive does not support burnproof/burnfree");
|
||||
return FALSE;
|
||||
+ }
|
||||
}
|
||||
|
||||
return TRUE;
|
||||
--
|
||||
GitLab
|
||||
|
||||
|
||||
From 52137beac620cf34541698a3d0222f5e169eba85 Mon Sep 17 00:00:00 2001
|
||||
From: Bastien Nocera <hadess@hadess.net>
|
||||
Date: Thu, 9 Sep 2021 23:45:03 +0200
|
||||
Subject: [PATCH 3/4] libbrasero-burn: Fix
|
||||
BRASERO_PLUGIN_ADD_STANDARD_BD_R_FLAGS
|
||||
|
||||
The macro was never used and was missing an opening parenthesis.
|
||||
---
|
||||
libbrasero-burn/brasero-plugin-registration.h | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/libbrasero-burn/brasero-plugin-registration.h b/libbrasero-burn/brasero-plugin-registration.h
|
||||
index 2d3719d8..a92fe1e9 100644
|
||||
--- a/libbrasero-burn/brasero-plugin-registration.h
|
||||
+++ b/libbrasero-burn/brasero-plugin-registration.h
|
||||
@@ -494,7 +494,7 @@ brasero_plugin_register (BraseroPlugin *plugin) \
|
||||
BRASERO_MEDIUM_BDR_SRM_POW| \
|
||||
BRASERO_MEDIUM_DUAL_L| \
|
||||
BRASERO_MEDIUM_BLANK, \
|
||||
- BRASERO_BURN_FLAG_MULTI| \
|
||||
+ (BRASERO_BURN_FLAG_MULTI| \
|
||||
BRASERO_BURN_FLAG_DUMMY| \
|
||||
BRASERO_BURN_FLAG_NOGRACE) & \
|
||||
(~(unsupported_MACRO)), \
|
||||
--
|
||||
GitLab
|
||||
|
||||
|
||||
From 5e703334370ccc51e02bcd4bed33ef5bb2bd364d Mon Sep 17 00:00:00 2001
|
||||
From: Bastien Nocera <hadess@hadess.net>
|
||||
Date: Thu, 9 Sep 2021 23:40:28 +0200
|
||||
Subject: [PATCH 4/4] growisofs: Fix burning BD-R media not working
|
||||
|
||||
The BD-R flags were simply never applied to the plugin, so the brasero
|
||||
core didn't know how to burn that type of media.
|
||||
|
||||
See https://bugzilla.redhat.com/show_bug.cgi?id=1704341
|
||||
and https://bugzilla.redhat.com/show_bug.cgi?id=1456971
|
||||
|
||||
Closes: #324
|
||||
---
|
||||
plugins/growisofs/burn-growisofs.c | 3 +++
|
||||
1 file changed, 3 insertions(+)
|
||||
|
||||
diff --git a/plugins/growisofs/burn-growisofs.c b/plugins/growisofs/burn-growisofs.c
|
||||
index 3d00a779..c9955aac 100644
|
||||
--- a/plugins/growisofs/burn-growisofs.c
|
||||
+++ b/plugins/growisofs/burn-growisofs.c
|
||||
@@ -877,6 +877,9 @@ brasero_growisofs_export_caps (BraseroPlugin *plugin)
|
||||
/* for DVD+RW */
|
||||
BRASERO_PLUGIN_ADD_STANDARD_DVDRW_PLUS_FLAGS (plugin, BRASERO_BURN_FLAG_NONE);
|
||||
|
||||
+ /* for BD-R */
|
||||
+ BRASERO_PLUGIN_ADD_STANDARD_BD_R_FLAGS (plugin, BRASERO_BURN_FLAG_NONE);
|
||||
+
|
||||
/* for BD-RE */
|
||||
BRASERO_PLUGIN_ADD_STANDARD_BD_RE_FLAGS (plugin, BRASERO_BURN_FLAG_NONE);
|
||||
|
||||
--
|
||||
GitLab
|
||||
|
@ -1,44 +1,73 @@
|
||||
%define basever %(echo %{version} | sed "s/\.[0-9]*$//")
|
||||
|
||||
%if 0%{?rhel} >= 9
|
||||
%bcond_with cdrdao
|
||||
%bcond_with cdrkit
|
||||
%bcond_with dvdrwtools
|
||||
%else
|
||||
%bcond_without cdrdao
|
||||
%bcond_without cdrkit
|
||||
%bcond_without dvdrwtools
|
||||
%endif
|
||||
|
||||
# FTBFS with GCC 14 -Werror=incompatible-pointer-types
|
||||
# https://gitlab.gnome.org/GNOME/brasero/-/issues/370
|
||||
%if 0%{?fedora} >= 40 || 0%{?rhel} >= 10
|
||||
%global build_type_safety_c 2
|
||||
%endif
|
||||
|
||||
Name: brasero
|
||||
Version: 3.12.2
|
||||
Release: 5%{?dist}
|
||||
Version: 3.12.3
|
||||
Release: 11%{?dist}
|
||||
Summary: Gnome CD/DVD burning application
|
||||
|
||||
# see https://bugzilla.gnome.org/show_bug.cgi?id=683503
|
||||
License: GPLv3+
|
||||
URL: https://wiki.gnome.org/Apps/Brasero
|
||||
Source0: https://download.gnome.org/sources/brasero/3.12/brasero-%{version}.tar.xz
|
||||
# https://bugzilla.redhat.com/show_bug.cgi?id=1704341
|
||||
Patch0: brasero-3.12.2-fix-bdr-flags.patch
|
||||
|
||||
BuildRequires: gtk3-devel >= 2.99.0
|
||||
BuildRequires: glib2-devel >= 2.15.6
|
||||
BuildRequires: gettext intltool gtk-doc
|
||||
# see https://bugzilla.gnome.org/show_bug.cgi?id=683503
|
||||
# SVG files are GPL-2.0-only
|
||||
# data/icons/hicolor_actions_scalable_transform-crop-and-resize.svg is CC-BY-SA-2.0
|
||||
# libbrasero-media is GPL-2.0-or-later WITH GStreamer-exception-2008
|
||||
License: GPL-3.0-or-later AND LGPL-2.0-or-later AND GPL-2.0-only AND CC-BY-SA-2.0 AND GPL-2.0-or-later WITH GStreamer-exception-2008
|
||||
URL: https://wiki.gnome.org/Apps/Brasero
|
||||
Source0: https://download.gnome.org/sources/%{name}/%{basever}/%{name}-%{version}.tar.xz
|
||||
|
||||
BuildRequires: pkgconfig(gstreamer-plugins-base-1.0) >= 0.11.92
|
||||
BuildRequires: pkgconfig(gtk+-3.0) >= 2.99.0
|
||||
BuildRequires: pkgconfig(ice)
|
||||
BuildRequires: pkgconfig(libburn-1) >= 0.4.0
|
||||
BuildRequires: pkgconfig(libcanberra-gtk3)
|
||||
BuildRequires: pkgconfig(libisofs-1) >= 0.6.4
|
||||
BuildRequires: pkgconfig(libnotify) >= 0.7.0
|
||||
%if 0%{?fedora} < 37 && 0%{?rhel} < 10
|
||||
BuildRequires: pkgconfig(libnautilus-extension) >= 2.22.2
|
||||
%endif
|
||||
BuildRequires: pkgconfig(libxml-2.0) >= 2.6.0
|
||||
BuildRequires: pkgconfig(sm)
|
||||
%if 0%{?fedora} || 0%{?rhel} < 10
|
||||
BuildRequires: pkgconfig(totem-plparser) >= 2.29.1
|
||||
%endif
|
||||
BuildRequires: pkgconfig(tracker-sparql-3.0)
|
||||
BuildRequires: desktop-file-utils
|
||||
BuildRequires: gstreamer1-devel >= 0.11.92
|
||||
BuildRequires: gstreamer1-plugins-base-devel >= 0.11.92
|
||||
BuildRequires: totem-pl-parser-devel >= 2.22.0
|
||||
BuildRequires: libnotify-devel >= 0.7.0
|
||||
BuildRequires: libxml2-devel >= 2.6.0
|
||||
BuildRequires: dbus-glib-devel >= 0.7.2
|
||||
BuildRequires: libxslt
|
||||
BuildRequires: libappstream-glib
|
||||
BuildRequires: libburn-devel >= 0.4.0
|
||||
BuildRequires: libisofs-devel >= 0.6.4
|
||||
BuildRequires: nautilus-devel >= 2.22.2
|
||||
BuildRequires: libSM-devel
|
||||
BuildRequires: libcanberra-devel
|
||||
BuildRequires: gcc
|
||||
BuildRequires: gettext
|
||||
BuildRequires: gobject-introspection-devel
|
||||
BuildRequires: tracker-devel
|
||||
BuildRequires: gtk-doc
|
||||
BuildRequires: intltool
|
||||
BuildRequires: itstool
|
||||
BuildRequires: libappstream-glib
|
||||
BuildRequires: make
|
||||
BuildRequires: yelp-tools
|
||||
|
||||
Requires: dvd+rw-tools
|
||||
Requires: cdrecord
|
||||
Requires: mkisofs
|
||||
Requires: cdda2wav
|
||||
%{?with_dvdrwtools:Requires: dvd+rw-tools}
|
||||
%{?with_cdrkit:Requires: wodim}
|
||||
%{?with_cdrkit:Requires: genisoimage}
|
||||
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
|
||||
%ifnarch s390 s390x
|
||||
Requires: cdrdao
|
||||
%ifnarch s390x
|
||||
%{?with_cdrdao:Requires: cdrdao}
|
||||
%endif
|
||||
%{?with_cdrkit:Recommends: icedax}
|
||||
|
||||
%if 0%{?fedora} >= 37 || 0%{?rhel} >= 10
|
||||
Obsoletes: %{name}-nautilus < %{version}-%{release}
|
||||
%endif
|
||||
|
||||
%description
|
||||
@ -48,28 +77,25 @@ desktop.
|
||||
|
||||
%package libs
|
||||
Summary: Libraries for %{name}
|
||||
Obsoletes: nautilus-cd-burner-libs < 2.25.4
|
||||
|
||||
%description libs
|
||||
The %{name}-libs package contains the runtime shared libraries for
|
||||
%{name}.
|
||||
|
||||
|
||||
%if 0%{?fedora} < 37 && 0%{?rhel} < 10
|
||||
%package nautilus
|
||||
Summary: Nautilus extension for %{name}
|
||||
|
||||
Provides: nautilus-cd-burner = %{version}-%{release}
|
||||
Obsoletes: nautilus-cd-burner < 2.25.4
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||
|
||||
%description nautilus
|
||||
The %{name}-nautilus package contains the brasero nautilus extension.
|
||||
%endif
|
||||
|
||||
|
||||
%package devel
|
||||
Summary: Headers for developing programs that will use %{name}
|
||||
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
|
||||
Obsoletes: nautilus-cd-burner-devel < 2.25.4
|
||||
%package devel
|
||||
Summary: Headers for developing programs that will use %{name}
|
||||
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
|
||||
|
||||
|
||||
%description devel
|
||||
@ -89,6 +115,9 @@ developing brasero applications.
|
||||
--enable-playlist \
|
||||
--enable-preview \
|
||||
--enable-inotify \
|
||||
%{!?with_cdrdao:--disable-cdrdao} \
|
||||
%{!?with_cdrkit:--disable-cdrkit} \
|
||||
%{!?with_dvdrwtools:--disable-growisofs} \
|
||||
--disable-caches \
|
||||
--disable-static
|
||||
sed -i -e 's! -shared ! -Wl,--as-needed\0!g' libtool
|
||||
@ -97,7 +126,7 @@ sed -i -e 's! -shared ! -Wl,--as-needed\0!g' libtool
|
||||
|
||||
%install
|
||||
%make_install
|
||||
find $RPM_BUILD_ROOT -type f -name "*.la" -exec rm -f {} ';'
|
||||
find %{buildroot} -type f -name "*.la" -delete
|
||||
%find_lang %{name}
|
||||
|
||||
# Update the screenshot shown in the software center
|
||||
@ -106,14 +135,14 @@ find $RPM_BUILD_ROOT -type f -name "*.la" -exec rm -f {} ';'
|
||||
#
|
||||
# See http://people.freedesktop.org/~hughsient/appdata/#screenshots for more details.
|
||||
#
|
||||
appstream-util replace-screenshots $RPM_BUILD_ROOT%{_datadir}/appdata/brasero.appdata.xml \
|
||||
appstream-util replace-screenshots $RPM_BUILD_ROOT%{_datadir}/metainfo/brasero.appdata.xml \
|
||||
https://raw.githubusercontent.com/hughsie/fedora-appstream/master/screenshots-extra/brasero/a.png \
|
||||
https://raw.githubusercontent.com/hughsie/fedora-appstream/master/screenshots-extra/brasero/b.png \
|
||||
https://raw.githubusercontent.com/hughsie/fedora-appstream/master/screenshots-extra/brasero/c.png
|
||||
|
||||
|
||||
%check
|
||||
appstream-util validate-relax --nonet %{buildroot}%{_datadir}/appdata/%{name}.appdata.xml
|
||||
appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/%{name}.appdata.xml
|
||||
desktop-file-validate %{buildroot}%{_datadir}/applications/*.desktop
|
||||
|
||||
|
||||
@ -128,7 +157,7 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/*.desktop
|
||||
%{_libdir}/brasero3
|
||||
%{_datadir}/%{name}
|
||||
%{_datadir}/applications/%{name}.desktop
|
||||
%{_datadir}/appdata/%{name}.appdata.xml
|
||||
%{_datadir}/metainfo/%{name}.appdata.xml
|
||||
%{_datadir}/help/*
|
||||
%{_datadir}/icons/hicolor/*/apps/*
|
||||
%{_datadir}/mime/packages/*
|
||||
@ -139,9 +168,11 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/*.desktop
|
||||
%{_libdir}/*.so.*
|
||||
%{_libdir}/girepository-1.0/*.typelib
|
||||
|
||||
%if 0%{?fedora} < 37 && 0%{?rhel} < 10
|
||||
%files nautilus
|
||||
%{_libdir}/nautilus/extensions-3.0/*.so
|
||||
%{_datadir}/applications/brasero-nautilus.desktop
|
||||
%endif
|
||||
|
||||
%files devel
|
||||
%doc %{_datadir}/gtk-doc/html/libbrasero-media
|
||||
@ -154,8 +185,79 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/*.desktop
|
||||
|
||||
|
||||
%changelog
|
||||
* Fri Sep 10 2021 David King <dking@redhat.com> - 3.12.2-5
|
||||
- Fix BD-R media flags
|
||||
* Tue Oct 29 2024 Troy Dawson <tdawson@redhat.com> - 3.12.3-11
|
||||
- Bump release for October 2024 mass rebuild:
|
||||
Resolves: RHEL-64018
|
||||
|
||||
* Mon Aug 05 2024 Tomas Popela <tpopela@redhat.com> - 3.12.3-10
|
||||
- totem-pl-parser won't be in RHEL 10
|
||||
|
||||
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 3.12.3-9
|
||||
- Bump release for June 2024 mass rebuild
|
||||
|
||||
* Tue Jan 23 2024 Fedora Release Engineering <releng@fedoraproject.org> - 3.12.3-8
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Fri Jan 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 3.12.3-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Wed Jul 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 3.12.3-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||
|
||||
* Wed Jan 18 2023 Fedora Release Engineering <releng@fedoraproject.org> - 3.12.3-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Mon Aug 15 2022 Kalev Lember <klember@redhat.com> - 3.12.3-4
|
||||
- Obsolete brasero-nautilus subpackage
|
||||
|
||||
* Wed Jul 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 3.12.3-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Wed Jan 19 2022 Fedora Release Engineering <releng@fedoraproject.org> - 3.12.3-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Mon Sep 20 2021 David King <amigadave@amigadave.com> - 3.12.3-1
|
||||
- Update to 3.12.3
|
||||
|
||||
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.12.2-17
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Thu Jun 17 2021 Jiri Kucera <jkucera@redhat.com> - 3.12.2-16
|
||||
- Drop dependencies on cdrdao, cdrkit, and dvd+rw-tools for el9+
|
||||
|
||||
* Mon Mar 15 2021 Kalev Lember <klember@redhat.com> - 3.12.2-15
|
||||
- Switch to Tracker 3
|
||||
|
||||
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.12.2-14
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Thu Jan 21 2021 Adam Jackson <ajax@redhat.com> - 3.12.2-13
|
||||
- Relax Requires: icedax to Recommends
|
||||
|
||||
* Thu Jan 07 2021 David King <amigadave@amigadave.com> - 3.12.2-12
|
||||
- Use pkgconfig for BuildRequires
|
||||
- Depend on tracker only on Fedora
|
||||
|
||||
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.12.2-11
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.12.2-10
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.12.2-9
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.12.2-8
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.12.2-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Mon Jul 9 2018 Peter Robinson <pbrobinson@fedoraproject.org> 3.12.2-6
|
||||
- Update requires
|
||||
|
||||
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.12.2-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Sat Feb 03 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 3.12.2-4
|
||||
- Switch to %%ldconfig_scriptlets
|
6
gating.yaml
Normal file
6
gating.yaml
Normal file
@ -0,0 +1,6 @@
|
||||
--- !Policy
|
||||
product_versions:
|
||||
- rhel-10
|
||||
decision_context: osci_compose_gate
|
||||
rules:
|
||||
- !PassingTestCaseRule {test_case_name: desktop-qe.desktop-ci.tier1-gating.functional}
|
Loading…
Reference in New Issue
Block a user