From 646479e83370a85f0225428d4c3765cebe8b6f22 Mon Sep 17 00:00:00 2001 From: MSVSphere Packaging Team Date: Tue, 26 Nov 2024 15:36:16 +0300 Subject: [PATCH] import baobab-46.0-3.el10 --- .baobab.metadata | 1 + .gitignore | 1 + ...e-column-reordering-of-FolderDisplay.patch | 58 +++ SPECS/baobab.spec | 435 ++++++++++++++++++ 4 files changed, 495 insertions(+) create mode 100644 .baobab.metadata create mode 100644 .gitignore create mode 100644 SOURCES/Disable-column-reordering-of-FolderDisplay.patch create mode 100644 SPECS/baobab.spec diff --git a/.baobab.metadata b/.baobab.metadata new file mode 100644 index 0000000..0c76eb0 --- /dev/null +++ b/.baobab.metadata @@ -0,0 +1 @@ +8c1d5a09aba554ff07d58e5d6afbf4f16a732ab1 SOURCES/baobab-46.0.tar.xz diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b2a8b87 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/baobab-46.0.tar.xz diff --git a/SOURCES/Disable-column-reordering-of-FolderDisplay.patch b/SOURCES/Disable-column-reordering-of-FolderDisplay.patch new file mode 100644 index 0000000..c03e088 --- /dev/null +++ b/SOURCES/Disable-column-reordering-of-FolderDisplay.patch @@ -0,0 +1,58 @@ +From a3b597b7a2f02b4ba7466bfa1ea4a306a883728f Mon Sep 17 00:00:00 2001 +From: Ondrej Holy +Date: Thu, 13 Jun 2024 11:50:30 +0200 +Subject: [PATCH] Disable column reordering of FolderDisplay + +Currently, it is possible to reorder columns of the `BaobabFolderDisplay` +widget using drag and drop. However, there are some issues with this +feature. The new column order is applied only to the first row and not to +the others that are part of the separate `treeview` widget. Another +problem is that dragging the "Folder" column sometimes significantly +increases the window width. Let's disable the column reordering until +those issues are resolved. + +Related: https://issues.redhat.com/browse/RHEL-40874 +Related: https://issues.redhat.com/browse/RHEL-40875 +--- + data/ui/baobab-folder-display.ui | 4 ---- + 1 file changed, 4 deletions(-) + +diff --git a/data/ui/baobab-folder-display.ui b/data/ui/baobab-folder-display.ui +index 7e585c7..6466b18 100644 +--- a/data/ui/baobab-folder-display.ui ++++ b/data/ui/baobab-folder-display.ui +@@ -13,7 +13,6 @@ + + Folder + True +- True + 0 + + +@@ -35,7 +34,6 @@ + + + Size +- True + 2 + + +@@ -51,7 +49,6 @@ + + + Contents +- True + 5 + + +@@ -67,7 +64,6 @@ + + + Modified +- True + 3 + + +-- +2.45.1 + diff --git a/SPECS/baobab.spec b/SPECS/baobab.spec new file mode 100644 index 0000000..e7d64e9 --- /dev/null +++ b/SPECS/baobab.spec @@ -0,0 +1,435 @@ +%global gtk4_version 4.4.0 +%global libadwaita_version 1.4~alpha + +%global tarball_version %%(echo %{version} | tr '~' '.') + +Name: baobab +Version: 46.0 +Release: 3%{?dist} +Summary: A graphical directory tree analyzer + +# Sources are under GPL-2.0-or-later, help is under CC-BY-SA-3.0, Appdata is +# under CC0-1.0. +License: GPL-2.0-or-later AND CC-BY-SA-3.0 AND CC0-1.0 +URL: https://wiki.gnome.org/Apps/Baobab +Source0: https://download.gnome.org/sources/baobab/46/%{name}-%{tarball_version}.tar.xz + +# https://issues.redhat.com/browse/RHEL-40874 +# https://issues.redhat.com/browse/RHEL-40875 +Patch: Disable-column-reordering-of-FolderDisplay.patch + +BuildRequires: pkgconfig(gtk4) >= %{gtk4_version} +BuildRequires: pkgconfig(libadwaita-1) >= %{libadwaita_version} +BuildRequires: /usr/bin/appstream-util +BuildRequires: desktop-file-utils +BuildRequires: gettext +BuildRequires: itstool +BuildRequires: meson +BuildRequires: vala + +Requires: gtk4%{?_isa} >= %{libadwaita_version} +Requires: libadwaita%{?_isa} >= %{libadwaita_version} + +%description +Baobab is able to scan either specific directories or the whole filesystem, in +order to give the user a graphical tree representation including each +directory size or percentage in the branch. It also auto-detects in real-time +any change made to your home folder as far as any mounted/unmounted device. + +%prep +%autosetup -p1 -n %{name}-%{tarball_version} + + +%build +%meson +%meson_build + + +%install +%meson_install + +%find_lang %{name} --with-gnome + + +%check +appstream-util validate-relax --nonet %{buildroot}/%{_metainfodir}/org.gnome.baobab.appdata.xml +desktop-file-validate %{buildroot}/%{_datadir}/applications/org.gnome.baobab.desktop + + +%files -f %{name}.lang +%doc AUTHORS NEWS README.md +%license COPYING COPYING.docs +%{_bindir}/baobab +%{_datadir}/applications/org.gnome.baobab.desktop +%{_datadir}/dbus-1/services/org.gnome.baobab.service +%{_datadir}/icons/hicolor/scalable/apps/org.gnome.baobab*.svg +%{_datadir}/icons/hicolor/symbolic/apps/org.gnome.baobab-symbolic.svg +%{_datadir}/glib-2.0/schemas/org.gnome.baobab.gschema.xml +%{_metainfodir}/org.gnome.baobab.appdata.xml +%{_mandir}/man1/baobab.1* + + +%changelog +* Tue Nov 26 2024 MSVSphere Packaging Team - 46.0-3 +- Rebuilt for MSVSphere 10 + +* Wed Jun 26 2024 Ondrej Holy - 46.0-3 +- Disable column reordering of FolderDisplay (RHEL-40874, RHEL-40875) + +* Mon Jun 24 2024 Troy Dawson - 46.0-2 +- Bump release for June 2024 mass rebuild + +* Fri Mar 22 2024 David King - 46.0-1 +- Update to 46.0 + +* Tue Jan 23 2024 Fedora Release Engineering - 45.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Fri Jan 19 2024 Fedora Release Engineering - 45.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Wed Sep 20 2023 Kalev Lember - 45.0-1 +- Update to 45.0 + +* Wed Jul 19 2023 Fedora Release Engineering - 45~alpha-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + +* Tue Jul 04 2023 Kalev Lember - 45~alpha-1 +- Update to 45.alpha + +* Sun Mar 19 2023 David King - 44.0-1 +- Update to 44.0 + +* Mon Mar 06 2023 David King - 44~rc-1 +- Update to 44.rc + +* Wed Feb 15 2023 David King - 44~beta-1 +- Update to 44.beta + +* Wed Jan 18 2023 Fedora Release Engineering - 43.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + +* Tue Sep 20 2022 Kalev Lember - 43.0-1 +- Update to 43.0 + +* Tue Sep 06 2022 Kalev Lember - 43~rc-1 +- Update to 43.rc + +* Mon Aug 08 2022 Kalev Lember - 43~beta-1 +- Update to 43.beta + +* Wed Jul 20 2022 Fedora Release Engineering - 43~alpha-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + +* Mon Jul 18 2022 Kalev Lember - 43~alpha-2 +- Bump required libadwaita version + +* Mon Jul 18 2022 Kalev Lember - 43~alpha-1 +- Update to 43.alpha + +* Mon Mar 21 2022 David King - 42.0-1 +- Update to 42.0 + +* Tue Mar 08 2022 David King - 42~rc-1 +- Update to 42.rc + +* Wed Feb 16 2022 David King - 42~beta-1 +- Update to 42.beta + +* Wed Jan 19 2022 Fedora Release Engineering - 42~alpha-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + +* Wed Jan 12 2022 David King - 42~alpha-1 +- Update to 42.alpha + +* Tue Sep 21 2021 Kalev Lember - 41.0-1 +- Update to 41.0 + +* Wed Jul 21 2021 Fedora Release Engineering - 40.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Mon Mar 22 2021 Kalev Lember - 40.0-1 +- Update to 40.0 +- Drop old obsoletes + +* Thu Feb 18 2021 Kalev Lember - 40~beta-1 +- Update to 40.beta + +* Tue Jan 26 2021 Fedora Release Engineering - 3.38.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Sat Sep 12 2020 Kalev Lember - 3.38.0-1 +- Update to 3.38.0 + +* Mon Aug 17 2020 Kalev Lember - 3.37.90-1 +- Update to 3.37.90 + +* Mon Jul 27 2020 Fedora Release Engineering - 3.34.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Tue Jan 28 2020 Fedora Release Engineering - 3.34.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Mon Sep 09 2019 Kalev Lember - 3.34.0-1 +- Update to 3.34.0 + +* Wed Jul 24 2019 Fedora Release Engineering - 3.32.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Mon Mar 11 2019 Kalev Lember - 3.32.0-1 +- Update to 3.32.0 + +* Fri Feb 01 2019 Kalev Lember - 3.31.1-1 +- Update to 3.31.1 + +* Thu Jan 31 2019 Fedora Release Engineering - 3.30.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Fri Sep 07 2018 Kalev Lember - 3.30.0-1 +- Update to 3.30.0 + +* Thu Jul 12 2018 Fedora Release Engineering - 3.28.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Fri Jun 1 2018 Ondrej Holy - 3.28.0-2 +- Fix setting GNOMELOCALEDIR + +* Mon Mar 12 2018 Kalev Lember - 3.28.0-1 +- Update to 3.28.0 + +* Tue Mar 06 2018 Kalev Lember - 3.27.90-1 +- Update to 3.27.90 +- Switch to the meson build system + +* Wed Feb 07 2018 Fedora Release Engineering - 3.26.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Fri Jan 05 2018 Igor Gnatenko - 3.26.1-2 +- Remove obsolete scriptlets + +* Sun Oct 08 2017 Kalev Lember - 3.26.1-1 +- Update to 3.26.1 + +* Sun Sep 10 2017 Kalev Lember - 3.26.0-1 +- Update to 3.26.0 + +* Tue Sep 05 2017 Kalev Lember - 3.25.92-1 +- Update to 3.25.92 + +* Wed Aug 02 2017 Fedora Release Engineering - 3.24.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Wed Jul 26 2017 Fedora Release Engineering - 3.24.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Tue Mar 21 2017 Kalev Lember - 3.24.0-1 +- Update to 3.24.0 + +* Mon Feb 27 2017 Richard Hughes - 3.23.91-1 +- Update to 3.23.91 + +* Tue Feb 14 2017 Richard Hughes - 3.23.90-1 +- Update to 3.23.90 + +* Fri Feb 10 2017 Fedora Release Engineering - 3.22.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Wed Nov 23 2016 Kalev Lember - 3.22.1-1 +- Update to 3.22.1 + +* Thu Sep 22 2016 Kalev Lember - 3.22.0-2 +- BR vala instead of obsolete vala-tools subpackage + +* Mon Sep 19 2016 Kalev Lember - 3.22.0-1 +- Update to 3.22.0 + +* Wed Sep 14 2016 Kalev Lember - 3.21.92-1 +- Update to 3.21.92 +- Don't set group tags + +* Thu Aug 18 2016 Kalev Lember - 3.21.90-1 +- Update to 3.21.90 + +* Wed Apr 13 2016 Kalev Lember - 3.20.1-1 +- Update to 3.20.1 + +* Sun Mar 20 2016 Kalev Lember - 3.20.0-1 +- Update to 3.20.0 + +* Sun Feb 28 2016 David King - 3.19.91-1 +- Update to 3.19.91 + +* Wed Feb 03 2016 Fedora Release Engineering - 3.18.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Thu Oct 15 2015 Kalev Lember - 3.18.1-2 +- Rebuilt + +* Fri Oct 09 2015 David King - 3.18.1-1 +- Update to 3.18.1 + +* Wed Sep 23 2015 Kalev Lember - 3.18.0-1 +- Update to 3.18.0 + +* Wed Sep 16 2015 Kalev Lember - 3.17.90-1 +- Update to 3.17.90 +- Use make_install macro + +* Wed Jun 17 2015 Fedora Release Engineering - 3.16.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Tue Apr 14 2015 David King - 3.16.1-1 +- Update to 3.16.1 + +* Mon Mar 23 2015 Kalev Lember - 3.16.0-1 +- Update to 3.16.0 + +* Wed Feb 18 2015 David King - 3.15.90-1 +- Update to 3.15.90 +- Use license macro for COPYING and COPYING.docs +- Use pkgconfig for BuildRequires +- Update URL +- Validate AppData in check +- Update man page glob in files section + +* Tue Oct 14 2014 Kalev Lember - 3.14.1-1 +- Update to 3.14.1 + +* Mon Sep 22 2014 Kalev Lember - 3.14.0-1 +- Update to 3.14.0 + +* Wed Sep 03 2014 Kalev Lember - 3.13.91-1 +- Update to 3.13.91 + +* Fri Aug 15 2014 Fedora Release Engineering - 3.13.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + +* Thu Jul 24 2014 Kalev Lember - 3.13.2-1 +- Update to 3.13.2 + +* Sat Jun 07 2014 Fedora Release Engineering - 3.13.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Wed May 28 2014 Kalev Lember - 3.13.1-1 +- Update to 3.13.1 + +* Tue Apr 15 2014 Kalev Lember - 3.12.1-1 +- Update to 3.12.1 + +* Mon Mar 24 2014 Richard Hughes - 3.12.0-1 +- Update to 3.12.0 + +* Wed Feb 19 2014 Richard Hughes - 3.11.90-1 +- Update to 3.11.90 + +* Tue Feb 04 2014 Richard Hughes - 3.11.1-1 +- Update to 3.11.1 + +* Mon Oct 28 2013 Richard Hughes - 3.10.1-1 +- Update to 3.10.1 + +* Wed Sep 25 2013 Richard Hughes - 3.10-1 +- Update to 3.10 + +* Wed Sep 04 2013 Kalev Lember - 3.9.91-1 +- Update to 3.9.91 + +* Thu Aug 22 2013 Kalev Lember - 3.9.90-1 +- Update to 3.9.90 + +* Sat Aug 10 2013 Kalev Lember - 3.9.3-1 +- Update to 3.9.3 + +* Sat Aug 03 2013 Fedora Release Engineering - 3.9.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Tue Jul 16 2013 Richard Hughes - 3.9.1-1 +- Update to 3.9.1 + +* Mon May 13 2013 Richard Hughes - 3.8.2-1 +- Update to 3.8.2 + +* Mon Apr 15 2013 Kalev Lember - 3.8.1-1 +- Update to 3.8.1 + +* Tue Mar 26 2013 Kalev Lember - 3.8.0-1 +- Update to 3.8.0 + +* Wed Mar 20 2013 Kalev Lember - 3.7.92-1 +- Update to 3.7.92 + +* Wed Mar 6 2013 Matthias Clasen - 3.7.91-1 +- Update to 3.7.91 + +* Fri Feb 22 2013 Kalev Lember - 3.7.90-1 +- Update to 3.7.90 +- Install HighContrast icons and update the rpm scriptlets for the icon cache + +* Wed Feb 13 2013 Fedora Release Engineering - 3.7.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Wed Jan 16 2013 Richard Hughes - 3.7.4-1 +- Update to 3.7.4 + +* Thu Nov 15 2012 Kalev Lember - 3.6.3-1 +- Update to 3.6.3 +- Remove an unwanted lib64 rpath + +* Wed Nov 14 2012 Tomas Bzatek - 3.6.2-2 +- Fix homepage URL + +* Wed Oct 17 2012 Kalev Lember - 3.6.2-1 +- Update to 3.6.2 + +* Tue Oct 16 2012 Kalev Lember - 3.6.1-1 +- Update to 3.6.1 + +* Tue Sep 25 2012 Richard Hughes - 3.6.0-1 +- Update to 3.6.0 + +* Wed Sep 19 2012 Richard Hughes - 3.5.92-1 +- Update to 3.5.92 + +* Tue Sep 04 2012 Richard Hughes - 3.5.91-1 +- Update to 3.5.91 + +* Tue Aug 21 2012 Richard Hughes - 3.5.90-1 +- Update to 3.5.90 + +* Tue Aug 07 2012 Richard Hughes - 3.5.5-1 +- Update to 3.5.5 + +* Wed Jul 18 2012 Fedora Release Engineering - 3.5.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Mon Jun 25 2012 Richard Hughes - 3.5.3-1 +- Update to 3.5.3 + +* Tue Apr 24 2012 Kalev Lember - 3.4.1-2 +- Silence glib-compile-schemas output + +* Mon Apr 16 2012 Richard Hughes - 3.4.1-1 +- Update to 3.4.1 + +* Tue Mar 27 2012 Rui Matos - 3.4.0-1 +- Update to 3.4.0 + +* Wed Mar 21 2012 Kalev Lember - 3.3.4-1 +- Update to 3.3.4 + +* Sat Mar 17 2012 Matthias Clasen - 3.3.3-3 +- Don't obsolete gnome-system-log + +* Fri Mar 16 2012 Rui Matos - 3.3.3-2 +- Obsolete all gnome-utils subpackages + +* Mon Mar 12 2012 Rui Matos - 3.3.3-1 +- Update to 3.3.3 +- Just list %%{_datadir}/help/xx_YY/baobab in %%files since %%find_lang + doesn't find those for us + +* Mon Mar 5 2012 Rui Matos - 3.3.2-1 +- Update to 3.3.2 + +* Tue Dec 27 2011 Matthias Clasen - 3.3.1-1 +- Initial packaging