From e62a46bad2dba26a247907cf983a8dda90f650b4 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 20 Jan 2022 00:32:38 +0000 Subject: [PATCH 01/18] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- desktop-file-utils.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/desktop-file-utils.spec b/desktop-file-utils.spec index 08298f0..366902f 100644 --- a/desktop-file-utils.spec +++ b/desktop-file-utils.spec @@ -1,7 +1,7 @@ Summary: Utilities for manipulating .desktop files Name: desktop-file-utils Version: 0.26 -Release: 4%{?dist} +Release: 5%{?dist} URL: https://www.freedesktop.org/software/desktop-file-utils Source0: https://www.freedesktop.org/software/desktop-file-utils/releases/%{name}-%{version}.tar.xz Source1: desktop-entry-mode-init.el @@ -56,6 +56,9 @@ update-desktop-database &> /dev/null || : %{_emacs_sitelispdir}/desktop-file-utils/ %changelog +* Thu Jan 20 2022 Fedora Release Engineering - 0.26-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Wed Jul 21 2021 Fedora Release Engineering - 0.26-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild From dd31fa832961a07391d534fc1f52f6d5c63ad945 Mon Sep 17 00:00:00 2001 From: David King Date: Tue, 15 Feb 2022 11:12:13 +0000 Subject: [PATCH 02/18] Support files conforming to 1.5 of the specification (#2053905) --- desktop-file-utils-0.26-support-1.5.patch | 83 +++++++++++++++++++++++ desktop-file-utils.spec | 7 +- 2 files changed, 89 insertions(+), 1 deletion(-) create mode 100644 desktop-file-utils-0.26-support-1.5.patch diff --git a/desktop-file-utils-0.26-support-1.5.patch b/desktop-file-utils-0.26-support-1.5.patch new file mode 100644 index 0000000..1e350ed --- /dev/null +++ b/desktop-file-utils-0.26-support-1.5.patch @@ -0,0 +1,83 @@ +From 48586dd1a755a80ec8ce0e8151b3ba236d81502f Mon Sep 17 00:00:00 2001 +From: David King +Date: Tue, 15 Feb 2022 10:54:40 +0000 +Subject: [PATCH 1/2] Add support for SingleMainWindow key from 1.5 + +Fixes https://gitlab.freedesktop.org/xdg/desktop-file-utils/-/issues/59 +--- + src/validate.c | 3 +++ + 1 file changed, 3 insertions(+) + +diff --git a/src/validate.c b/src/validate.c +index 62406ab..ebb03b5 100644 +--- a/src/validate.c ++++ b/src/validate.c +@@ -326,6 +326,9 @@ static DesktopKeyDefinition registered_desktop_keys[] = { + /* Since 1.4 */ + { DESKTOP_BOOLEAN_TYPE, "PrefersNonDefaultGPU", FALSE, FALSE, FALSE, NULL }, + ++ /* Since 1.5 */ ++ { DESKTOP_BOOLEAN_TYPE, "SingleMainWindow", FALSE, FALSE, FALSE, NULL }, ++ + /* Keys reserved for KDE */ + + /* since 0.9.4 */ +-- +2.34.1 + + +From e3e21bccfe257aa2a34d64a68582dcc2363c2606 Mon Sep 17 00:00:00 2001 +From: David King +Date: Tue, 15 Feb 2022 10:56:04 +0000 +Subject: [PATCH 2/2] validate: Support version 1.5 + +Bump CURRENT_SPEC_VERSION to 1.5. +--- + man/desktop-file-validate.1 | 2 +- + src/validate.c | 3 +++ + src/validate.h | 2 +- + 3 files changed, 5 insertions(+), 2 deletions(-) + +diff --git a/man/desktop-file-validate.1 b/man/desktop-file-validate.1 +index 8e17411..ce87c47 100644 +--- a/man/desktop-file-validate.1 ++++ b/man/desktop-file-validate.1 +@@ -9,7 +9,7 @@ desktop-file-validate \- Validate desktop entry files + .B desktop-file-validate [\-\-no-hints] [\-\-no-warn-deprecated] [\-\-warn-kde] FILE... + .SH DESCRIPTION + The \fIdesktop-file-validate\fP program is a tool to validate desktop +-entry files according to the Desktop Entry specification 1.4. ++entry files according to the Desktop Entry specification 1.5. + .PP + The specification describes a file format to provide information such as + name, icon and description for an application. Such a file can then be +diff --git a/src/validate.c b/src/validate.c +index ebb03b5..f9eedee 100644 +--- a/src/validate.c ++++ b/src/validate.c +@@ -961,6 +961,9 @@ handle_version_key (kf_validator *kf, + const char *locale_key, + const char *value) + { ++ if (!strcmp (value, "1.5")) ++ return TRUE; ++ + if (!strcmp (value, "1.4")) + return TRUE; + +diff --git a/src/validate.h b/src/validate.h +index e6efd93..a7952cd 100644 +--- a/src/validate.h ++++ b/src/validate.h +@@ -30,7 +30,7 @@ + + #include + +-#define CURRENT_SPEC_VERSION "1.4" ++#define CURRENT_SPEC_VERSION "1.5" + + #define GROUP_KDE_DESKTOP_ENTRY "KDE Desktop Entry" + #define GROUP_DESKTOP_ACTION "Desktop Action " +-- +2.34.1 + diff --git a/desktop-file-utils.spec b/desktop-file-utils.spec index 366902f..a57cc5c 100644 --- a/desktop-file-utils.spec +++ b/desktop-file-utils.spec @@ -1,10 +1,12 @@ Summary: Utilities for manipulating .desktop files Name: desktop-file-utils Version: 0.26 -Release: 5%{?dist} +Release: 6%{?dist} URL: https://www.freedesktop.org/software/desktop-file-utils Source0: https://www.freedesktop.org/software/desktop-file-utils/releases/%{name}-%{version}.tar.xz Source1: desktop-entry-mode-init.el +# https://bugzilla.redhat.com/show_bug.cgi?id=2053905 +Patch0: desktop-file-utils-0.26-support-1.5.patch License: GPLv2+ BuildRequires: gcc @@ -56,6 +58,9 @@ update-desktop-database &> /dev/null || : %{_emacs_sitelispdir}/desktop-file-utils/ %changelog +* Tue Feb 15 2022 David King - 0.26-6 +- Support files conforming to 1.5 of the specification (#2053905) + * Thu Jan 20 2022 Fedora Release Engineering - 0.26-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild From 135aec02b94f37b1318f1e4a50f48a58a2e3c227 Mon Sep 17 00:00:00 2001 From: David King Date: Tue, 15 Feb 2022 11:12:13 +0000 Subject: [PATCH 03/18] Support files conforming to 1.5 of the specification (#2053905) --- desktop-file-utils-0.26-support-1.5.patch | 83 +++++++++++++++++++++++ desktop-file-utils.spec | 7 +- 2 files changed, 89 insertions(+), 1 deletion(-) create mode 100644 desktop-file-utils-0.26-support-1.5.patch diff --git a/desktop-file-utils-0.26-support-1.5.patch b/desktop-file-utils-0.26-support-1.5.patch new file mode 100644 index 0000000..1e350ed --- /dev/null +++ b/desktop-file-utils-0.26-support-1.5.patch @@ -0,0 +1,83 @@ +From 48586dd1a755a80ec8ce0e8151b3ba236d81502f Mon Sep 17 00:00:00 2001 +From: David King +Date: Tue, 15 Feb 2022 10:54:40 +0000 +Subject: [PATCH 1/2] Add support for SingleMainWindow key from 1.5 + +Fixes https://gitlab.freedesktop.org/xdg/desktop-file-utils/-/issues/59 +--- + src/validate.c | 3 +++ + 1 file changed, 3 insertions(+) + +diff --git a/src/validate.c b/src/validate.c +index 62406ab..ebb03b5 100644 +--- a/src/validate.c ++++ b/src/validate.c +@@ -326,6 +326,9 @@ static DesktopKeyDefinition registered_desktop_keys[] = { + /* Since 1.4 */ + { DESKTOP_BOOLEAN_TYPE, "PrefersNonDefaultGPU", FALSE, FALSE, FALSE, NULL }, + ++ /* Since 1.5 */ ++ { DESKTOP_BOOLEAN_TYPE, "SingleMainWindow", FALSE, FALSE, FALSE, NULL }, ++ + /* Keys reserved for KDE */ + + /* since 0.9.4 */ +-- +2.34.1 + + +From e3e21bccfe257aa2a34d64a68582dcc2363c2606 Mon Sep 17 00:00:00 2001 +From: David King +Date: Tue, 15 Feb 2022 10:56:04 +0000 +Subject: [PATCH 2/2] validate: Support version 1.5 + +Bump CURRENT_SPEC_VERSION to 1.5. +--- + man/desktop-file-validate.1 | 2 +- + src/validate.c | 3 +++ + src/validate.h | 2 +- + 3 files changed, 5 insertions(+), 2 deletions(-) + +diff --git a/man/desktop-file-validate.1 b/man/desktop-file-validate.1 +index 8e17411..ce87c47 100644 +--- a/man/desktop-file-validate.1 ++++ b/man/desktop-file-validate.1 +@@ -9,7 +9,7 @@ desktop-file-validate \- Validate desktop entry files + .B desktop-file-validate [\-\-no-hints] [\-\-no-warn-deprecated] [\-\-warn-kde] FILE... + .SH DESCRIPTION + The \fIdesktop-file-validate\fP program is a tool to validate desktop +-entry files according to the Desktop Entry specification 1.4. ++entry files according to the Desktop Entry specification 1.5. + .PP + The specification describes a file format to provide information such as + name, icon and description for an application. Such a file can then be +diff --git a/src/validate.c b/src/validate.c +index ebb03b5..f9eedee 100644 +--- a/src/validate.c ++++ b/src/validate.c +@@ -961,6 +961,9 @@ handle_version_key (kf_validator *kf, + const char *locale_key, + const char *value) + { ++ if (!strcmp (value, "1.5")) ++ return TRUE; ++ + if (!strcmp (value, "1.4")) + return TRUE; + +diff --git a/src/validate.h b/src/validate.h +index e6efd93..a7952cd 100644 +--- a/src/validate.h ++++ b/src/validate.h +@@ -30,7 +30,7 @@ + + #include + +-#define CURRENT_SPEC_VERSION "1.4" ++#define CURRENT_SPEC_VERSION "1.5" + + #define GROUP_KDE_DESKTOP_ENTRY "KDE Desktop Entry" + #define GROUP_DESKTOP_ACTION "Desktop Action " +-- +2.34.1 + diff --git a/desktop-file-utils.spec b/desktop-file-utils.spec index 08298f0..e7609cd 100644 --- a/desktop-file-utils.spec +++ b/desktop-file-utils.spec @@ -1,10 +1,12 @@ Summary: Utilities for manipulating .desktop files Name: desktop-file-utils Version: 0.26 -Release: 4%{?dist} +Release: 5%{?dist} URL: https://www.freedesktop.org/software/desktop-file-utils Source0: https://www.freedesktop.org/software/desktop-file-utils/releases/%{name}-%{version}.tar.xz Source1: desktop-entry-mode-init.el +# https://bugzilla.redhat.com/show_bug.cgi?id=2053905 +Patch0: desktop-file-utils-0.26-support-1.5.patch License: GPLv2+ BuildRequires: gcc @@ -56,6 +58,9 @@ update-desktop-database &> /dev/null || : %{_emacs_sitelispdir}/desktop-file-utils/ %changelog +* Tue Feb 15 2022 David King - 0.26-5 +- Support files conforming to 1.5 of the specification (#2053905) + * Wed Jul 21 2021 Fedora Release Engineering - 0.26-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild From 4bcdd33bb0b23d3b83892c2c5b1a5930ca68c0c6 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 21 Jul 2022 00:19:58 +0000 Subject: [PATCH 04/18] Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- desktop-file-utils.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/desktop-file-utils.spec b/desktop-file-utils.spec index a57cc5c..2d94811 100644 --- a/desktop-file-utils.spec +++ b/desktop-file-utils.spec @@ -1,7 +1,7 @@ Summary: Utilities for manipulating .desktop files Name: desktop-file-utils Version: 0.26 -Release: 6%{?dist} +Release: 7%{?dist} URL: https://www.freedesktop.org/software/desktop-file-utils Source0: https://www.freedesktop.org/software/desktop-file-utils/releases/%{name}-%{version}.tar.xz Source1: desktop-entry-mode-init.el @@ -58,6 +58,9 @@ update-desktop-database &> /dev/null || : %{_emacs_sitelispdir}/desktop-file-utils/ %changelog +* Thu Jul 21 2022 Fedora Release Engineering - 0.26-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + * Tue Feb 15 2022 David King - 0.26-6 - Support files conforming to 1.5 of the specification (#2053905) From a5cdce7454e7cfd51dc80730a5f6eb1321be8143 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 19 Jan 2023 01:16:18 +0000 Subject: [PATCH 05/18] Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- desktop-file-utils.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/desktop-file-utils.spec b/desktop-file-utils.spec index 2d94811..0ecc160 100644 --- a/desktop-file-utils.spec +++ b/desktop-file-utils.spec @@ -1,7 +1,7 @@ Summary: Utilities for manipulating .desktop files Name: desktop-file-utils Version: 0.26 -Release: 7%{?dist} +Release: 8%{?dist} URL: https://www.freedesktop.org/software/desktop-file-utils Source0: https://www.freedesktop.org/software/desktop-file-utils/releases/%{name}-%{version}.tar.xz Source1: desktop-entry-mode-init.el @@ -58,6 +58,9 @@ update-desktop-database &> /dev/null || : %{_emacs_sitelispdir}/desktop-file-utils/ %changelog +* Thu Jan 19 2023 Fedora Release Engineering - 0.26-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + * Thu Jul 21 2022 Fedora Release Engineering - 0.26-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild From 1e3cb35021e3935cdcb9791058b84ac0e565a360 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 19 Jul 2023 17:18:01 +0000 Subject: [PATCH 06/18] Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- desktop-file-utils.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/desktop-file-utils.spec b/desktop-file-utils.spec index 0ecc160..b8b1c13 100644 --- a/desktop-file-utils.spec +++ b/desktop-file-utils.spec @@ -1,7 +1,7 @@ Summary: Utilities for manipulating .desktop files Name: desktop-file-utils Version: 0.26 -Release: 8%{?dist} +Release: 9%{?dist} URL: https://www.freedesktop.org/software/desktop-file-utils Source0: https://www.freedesktop.org/software/desktop-file-utils/releases/%{name}-%{version}.tar.xz Source1: desktop-entry-mode-init.el @@ -58,6 +58,9 @@ update-desktop-database &> /dev/null || : %{_emacs_sitelispdir}/desktop-file-utils/ %changelog +* Wed Jul 19 2023 Fedora Release Engineering - 0.26-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + * Thu Jan 19 2023 Fedora Release Engineering - 0.26-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild From 9b79e22a29b6a8bb48d967f6c92a31f963e8a268 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 19 Jan 2024 17:02:16 +0000 Subject: [PATCH 07/18] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- desktop-file-utils.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/desktop-file-utils.spec b/desktop-file-utils.spec index b8b1c13..f376f91 100644 --- a/desktop-file-utils.spec +++ b/desktop-file-utils.spec @@ -1,7 +1,7 @@ Summary: Utilities for manipulating .desktop files Name: desktop-file-utils Version: 0.26 -Release: 9%{?dist} +Release: 10%{?dist} URL: https://www.freedesktop.org/software/desktop-file-utils Source0: https://www.freedesktop.org/software/desktop-file-utils/releases/%{name}-%{version}.tar.xz Source1: desktop-entry-mode-init.el @@ -58,6 +58,9 @@ update-desktop-database &> /dev/null || : %{_emacs_sitelispdir}/desktop-file-utils/ %changelog +* Fri Jan 19 2024 Fedora Release Engineering - 0.26-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Wed Jul 19 2023 Fedora Release Engineering - 0.26-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild From 12f8a72b30dedf0ec3a98b633906210232bdee8b Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 24 Jan 2024 09:19:11 +0000 Subject: [PATCH 08/18] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- desktop-file-utils.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/desktop-file-utils.spec b/desktop-file-utils.spec index f376f91..372ff48 100644 --- a/desktop-file-utils.spec +++ b/desktop-file-utils.spec @@ -1,7 +1,7 @@ Summary: Utilities for manipulating .desktop files Name: desktop-file-utils Version: 0.26 -Release: 10%{?dist} +Release: 11%{?dist} URL: https://www.freedesktop.org/software/desktop-file-utils Source0: https://www.freedesktop.org/software/desktop-file-utils/releases/%{name}-%{version}.tar.xz Source1: desktop-entry-mode-init.el @@ -58,6 +58,9 @@ update-desktop-database &> /dev/null || : %{_emacs_sitelispdir}/desktop-file-utils/ %changelog +* Wed Jan 24 2024 Fedora Release Engineering - 0.26-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Fri Jan 19 2024 Fedora Release Engineering - 0.26-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From 357ec870d61da9f58f6c0da73baa686fd9df8335 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Mon, 5 Feb 2024 15:45:04 +0000 Subject: [PATCH 09/18] Migrate to SPDX license This is part of https://fedoraproject.org/wiki/Changes/SPDX_Licenses_Phase_3 --- desktop-file-utils.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desktop-file-utils.spec b/desktop-file-utils.spec index 372ff48..2a9f819 100644 --- a/desktop-file-utils.spec +++ b/desktop-file-utils.spec @@ -7,7 +7,7 @@ Source0: https://www.freedesktop.org/software/desktop-file-utils/releases/%{name Source1: desktop-entry-mode-init.el # https://bugzilla.redhat.com/show_bug.cgi?id=2053905 Patch0: desktop-file-utils-0.26-support-1.5.patch -License: GPLv2+ +License: GPL-2.0-or-later BuildRequires: gcc BuildRequires: glib2-devel From 571367a29cefba8602126a58b1d7c43f8e2dbb6e Mon Sep 17 00:00:00 2001 From: Tomas Popela Date: Mon, 12 Feb 2024 10:56:18 +0100 Subject: [PATCH 10/18] Build for the SPDX license format change --- desktop-file-utils.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/desktop-file-utils.spec b/desktop-file-utils.spec index 2a9f819..468fcb8 100644 --- a/desktop-file-utils.spec +++ b/desktop-file-utils.spec @@ -1,7 +1,7 @@ Summary: Utilities for manipulating .desktop files Name: desktop-file-utils Version: 0.26 -Release: 11%{?dist} +Release: 12%{?dist} URL: https://www.freedesktop.org/software/desktop-file-utils Source0: https://www.freedesktop.org/software/desktop-file-utils/releases/%{name}-%{version}.tar.xz Source1: desktop-entry-mode-init.el @@ -58,6 +58,9 @@ update-desktop-database &> /dev/null || : %{_emacs_sitelispdir}/desktop-file-utils/ %changelog +* Mon Jan 12 2024 Tomas Popela - 0.26-12 +- Build for the SPDX license format change + * Wed Jan 24 2024 Fedora Release Engineering - 0.26-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From 934315eee8d60b24c80672e91e7ebed62cc6ea05 Mon Sep 17 00:00:00 2001 From: Tomas Popela Date: Mon, 12 Feb 2024 10:57:00 +0100 Subject: [PATCH 11/18] Fix the bogus date in my last commit --- desktop-file-utils.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desktop-file-utils.spec b/desktop-file-utils.spec index 468fcb8..16b927b 100644 --- a/desktop-file-utils.spec +++ b/desktop-file-utils.spec @@ -58,7 +58,7 @@ update-desktop-database &> /dev/null || : %{_emacs_sitelispdir}/desktop-file-utils/ %changelog -* Mon Jan 12 2024 Tomas Popela - 0.26-12 +* Mon Feb 12 2024 Tomas Popela - 0.26-12 - Build for the SPDX license format change * Wed Jan 24 2024 Fedora Release Engineering - 0.26-11 From 9eca11add4dfed63c778e70a09b9976422571ade Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 17 Jul 2024 20:50:51 +0000 Subject: [PATCH 12/18] Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild --- desktop-file-utils.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/desktop-file-utils.spec b/desktop-file-utils.spec index 16b927b..e3df228 100644 --- a/desktop-file-utils.spec +++ b/desktop-file-utils.spec @@ -1,7 +1,7 @@ Summary: Utilities for manipulating .desktop files Name: desktop-file-utils Version: 0.26 -Release: 12%{?dist} +Release: 13%{?dist} URL: https://www.freedesktop.org/software/desktop-file-utils Source0: https://www.freedesktop.org/software/desktop-file-utils/releases/%{name}-%{version}.tar.xz Source1: desktop-entry-mode-init.el @@ -58,6 +58,9 @@ update-desktop-database &> /dev/null || : %{_emacs_sitelispdir}/desktop-file-utils/ %changelog +* Wed Jul 17 2024 Fedora Release Engineering - 0.26-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + * Mon Feb 12 2024 Tomas Popela - 0.26-12 - Build for the SPDX license format change From b5d43d787431c47ea52b414c8c1b3535d15d2113 Mon Sep 17 00:00:00 2001 From: Neal Gompa Date: Mon, 22 Jul 2024 20:32:27 -0400 Subject: [PATCH 13/18] Rebase to 0.27 --- .gitignore | 1 + desktop-file-utils-0.26-support-1.5.patch | 83 ----------------------- desktop-file-utils.spec | 9 +-- sources | 2 +- 4 files changed, 7 insertions(+), 88 deletions(-) delete mode 100644 desktop-file-utils-0.26-support-1.5.patch diff --git a/.gitignore b/.gitignore index b8e5c08..ace22bd 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ desktop-file-utils-0.16.tar.bz2 /desktop-file-utils-0.23.tar.xz /desktop-file-utils-0.24.tar.xz /desktop-file-utils-0.26.tar.xz +/desktop-file-utils-0.27.tar.xz diff --git a/desktop-file-utils-0.26-support-1.5.patch b/desktop-file-utils-0.26-support-1.5.patch deleted file mode 100644 index 1e350ed..0000000 --- a/desktop-file-utils-0.26-support-1.5.patch +++ /dev/null @@ -1,83 +0,0 @@ -From 48586dd1a755a80ec8ce0e8151b3ba236d81502f Mon Sep 17 00:00:00 2001 -From: David King -Date: Tue, 15 Feb 2022 10:54:40 +0000 -Subject: [PATCH 1/2] Add support for SingleMainWindow key from 1.5 - -Fixes https://gitlab.freedesktop.org/xdg/desktop-file-utils/-/issues/59 ---- - src/validate.c | 3 +++ - 1 file changed, 3 insertions(+) - -diff --git a/src/validate.c b/src/validate.c -index 62406ab..ebb03b5 100644 ---- a/src/validate.c -+++ b/src/validate.c -@@ -326,6 +326,9 @@ static DesktopKeyDefinition registered_desktop_keys[] = { - /* Since 1.4 */ - { DESKTOP_BOOLEAN_TYPE, "PrefersNonDefaultGPU", FALSE, FALSE, FALSE, NULL }, - -+ /* Since 1.5 */ -+ { DESKTOP_BOOLEAN_TYPE, "SingleMainWindow", FALSE, FALSE, FALSE, NULL }, -+ - /* Keys reserved for KDE */ - - /* since 0.9.4 */ --- -2.34.1 - - -From e3e21bccfe257aa2a34d64a68582dcc2363c2606 Mon Sep 17 00:00:00 2001 -From: David King -Date: Tue, 15 Feb 2022 10:56:04 +0000 -Subject: [PATCH 2/2] validate: Support version 1.5 - -Bump CURRENT_SPEC_VERSION to 1.5. ---- - man/desktop-file-validate.1 | 2 +- - src/validate.c | 3 +++ - src/validate.h | 2 +- - 3 files changed, 5 insertions(+), 2 deletions(-) - -diff --git a/man/desktop-file-validate.1 b/man/desktop-file-validate.1 -index 8e17411..ce87c47 100644 ---- a/man/desktop-file-validate.1 -+++ b/man/desktop-file-validate.1 -@@ -9,7 +9,7 @@ desktop-file-validate \- Validate desktop entry files - .B desktop-file-validate [\-\-no-hints] [\-\-no-warn-deprecated] [\-\-warn-kde] FILE... - .SH DESCRIPTION - The \fIdesktop-file-validate\fP program is a tool to validate desktop --entry files according to the Desktop Entry specification 1.4. -+entry files according to the Desktop Entry specification 1.5. - .PP - The specification describes a file format to provide information such as - name, icon and description for an application. Such a file can then be -diff --git a/src/validate.c b/src/validate.c -index ebb03b5..f9eedee 100644 ---- a/src/validate.c -+++ b/src/validate.c -@@ -961,6 +961,9 @@ handle_version_key (kf_validator *kf, - const char *locale_key, - const char *value) - { -+ if (!strcmp (value, "1.5")) -+ return TRUE; -+ - if (!strcmp (value, "1.4")) - return TRUE; - -diff --git a/src/validate.h b/src/validate.h -index e6efd93..a7952cd 100644 ---- a/src/validate.h -+++ b/src/validate.h -@@ -30,7 +30,7 @@ - - #include - --#define CURRENT_SPEC_VERSION "1.4" -+#define CURRENT_SPEC_VERSION "1.5" - - #define GROUP_KDE_DESKTOP_ENTRY "KDE Desktop Entry" - #define GROUP_DESKTOP_ACTION "Desktop Action " --- -2.34.1 - diff --git a/desktop-file-utils.spec b/desktop-file-utils.spec index e3df228..1012b85 100644 --- a/desktop-file-utils.spec +++ b/desktop-file-utils.spec @@ -1,12 +1,10 @@ Summary: Utilities for manipulating .desktop files Name: desktop-file-utils -Version: 0.26 -Release: 13%{?dist} +Version: 0.27 +Release: 1%{?dist} URL: https://www.freedesktop.org/software/desktop-file-utils Source0: https://www.freedesktop.org/software/desktop-file-utils/releases/%{name}-%{version}.tar.xz Source1: desktop-entry-mode-init.el -# https://bugzilla.redhat.com/show_bug.cgi?id=2053905 -Patch0: desktop-file-utils-0.26-support-1.5.patch License: GPL-2.0-or-later BuildRequires: gcc @@ -58,6 +56,9 @@ update-desktop-database &> /dev/null || : %{_emacs_sitelispdir}/desktop-file-utils/ %changelog +* Tue Jul 23 2024 Neal Gompa - 0.27-1 +- Rebase to 0.27 + * Wed Jul 17 2024 Fedora Release Engineering - 0.26-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild diff --git a/sources b/sources index e43fa50..8ed0639 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (desktop-file-utils-0.26.tar.xz) = 5b4e435f0b635d8f898ac7f5759f74a08ffbe2a56d41fee0e84ff57e73b98d08b57b4416f20b99f696dad8bcb1c20792b39acf836b0814220c0b386ea5f6b831 +SHA512 (desktop-file-utils-0.27.tar.xz) = 81356239a92fb17885aa85a5192c84c2757ebb2e540920d0d41d07035795f08f4162f41b1a87bb2bfcf70ec61f19f1f158e4395a359f46b46f68cb9e24f259a8 From c6a3da2f5267bc73f6b2065a32017b223570ab6b Mon Sep 17 00:00:00 2001 From: Ryan Brue Date: Sat, 20 Jul 2024 17:56:00 +0000 Subject: [PATCH 14/18] patch: add cosmic category patch Signed-off-by: Ryan Brue --- 0001-validate-add-COSMIC.patch | 34 ++++++++++++++++++++++++++++++++++ desktop-file-utils.spec | 7 ++++++- 2 files changed, 40 insertions(+), 1 deletion(-) create mode 100644 0001-validate-add-COSMIC.patch diff --git a/0001-validate-add-COSMIC.patch b/0001-validate-add-COSMIC.patch new file mode 100644 index 0000000..815253f --- /dev/null +++ b/0001-validate-add-COSMIC.patch @@ -0,0 +1,34 @@ +From 67d09f0c851cfaf0ff3ae8689c14a09ec08d6fa1 Mon Sep 17 00:00:00 2001 +From: Ryan Brue +Date: Sat, 20 Jul 2024 15:35:57 +0000 +Subject: [PATCH] validate: add COSMIC + +Signed-off-by: Ryan Brue +--- + src/validate.c | 3 ++- + 1 file changed, 2 insertions(+), 1 deletion(-) + +diff --git a/src/validate.c b/src/validate.c +index 149ccbe..3ccf866 100644 +--- a/src/validate.c ++++ b/src/validate.c +@@ -386,7 +386,7 @@ static DesktopKeyDefinition registered_action_keys[] = { + + /* This should be the same list as in xdg-specs/menu/menu-spec.xml */ + static const char *show_in_registered[] = { +- "GNOME", "GNOME-Classic", "GNOME-Flashback", "KDE", "LXDE", "LXQt", "MATE", "Razor", "ROX", "TDE", "Unity", "XFCE", "EDE", "Cinnamon", "Pantheon", "Budgie", "Enlightenment", "DDE", "Endless", "Old" ++ "COSMIC", "GNOME", "GNOME-Classic", "GNOME-Flashback", "KDE", "LXDE", "LXQt", "MATE", "Razor", "ROX", "TDE", "Unity", "XFCE", "EDE", "Cinnamon", "Pantheon", "Budgie", "Enlightenment", "DDE", "Endless", "Old" + }; + + static struct { +@@ -540,6 +540,7 @@ static struct { + { "Documentation", FALSE, FALSE, FALSE, { NULL }, { NULL } }, + { "Adult", FALSE, FALSE, FALSE, { NULL }, { NULL } }, + { "Core", FALSE, FALSE, FALSE, { NULL }, { NULL } }, ++ { "COSMIC", FALSE, FALSE, FALSE, { NULL }, { NULL } }, + { "KDE", FALSE, FALSE, FALSE, { NULL }, { "Qt", NULL } }, + { "GNOME", FALSE, FALSE, FALSE, { NULL }, { "GTK", NULL } }, + { "XFCE", FALSE, FALSE, FALSE, { NULL }, { "GTK", NULL } }, +-- +2.45.2 + diff --git a/desktop-file-utils.spec b/desktop-file-utils.spec index 1012b85..db23bf7 100644 --- a/desktop-file-utils.spec +++ b/desktop-file-utils.spec @@ -1,10 +1,12 @@ Summary: Utilities for manipulating .desktop files Name: desktop-file-utils Version: 0.27 -Release: 1%{?dist} +Release: 2%{?dist} URL: https://www.freedesktop.org/software/desktop-file-utils Source0: https://www.freedesktop.org/software/desktop-file-utils/releases/%{name}-%{version}.tar.xz Source1: desktop-entry-mode-init.el +# Patch is from https://gitlab.freedesktop.org/xdg/desktop-file-utils/-/merge_requests/22 +Patch0: 0001-validate-add-COSMIC.patch License: GPL-2.0-or-later BuildRequires: gcc @@ -56,6 +58,9 @@ update-desktop-database &> /dev/null || : %{_emacs_sitelispdir}/desktop-file-utils/ %changelog +* Tue Jul 23 2024 Ryan Brue - 0.27-2 +- Add patch to include COSMIC as a category + * Tue Jul 23 2024 Neal Gompa - 0.27-1 - Rebase to 0.27 From 9b8c14ab5ae0631a5092cabe7269b4076f50204d Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 16 Jan 2025 15:36:14 +0000 Subject: [PATCH 15/18] Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild --- desktop-file-utils.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/desktop-file-utils.spec b/desktop-file-utils.spec index db23bf7..2bfea9c 100644 --- a/desktop-file-utils.spec +++ b/desktop-file-utils.spec @@ -1,7 +1,7 @@ Summary: Utilities for manipulating .desktop files Name: desktop-file-utils Version: 0.27 -Release: 2%{?dist} +Release: 3%{?dist} URL: https://www.freedesktop.org/software/desktop-file-utils Source0: https://www.freedesktop.org/software/desktop-file-utils/releases/%{name}-%{version}.tar.xz Source1: desktop-entry-mode-init.el @@ -58,6 +58,9 @@ update-desktop-database &> /dev/null || : %{_emacs_sitelispdir}/desktop-file-utils/ %changelog +* Thu Jan 16 2025 Fedora Release Engineering - 0.27-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + * Tue Jul 23 2024 Ryan Brue - 0.27-2 - Add patch to include COSMIC as a category From b08516ebbce0c577669cb455e2906f9cfc038ea1 Mon Sep 17 00:00:00 2001 From: Sam Day Date: Fri, 31 Jan 2025 15:50:59 +0100 Subject: [PATCH 16/18] 0.28 update Drop COSMIC patch, it landed upstream in 0.28 Add patch to recognize Phosh as a valid OnlyShowIn= environment Signed-off-by: Sam Day --- .gitignore | 1 + ...sh-to-list-of-valid-OnlyShowIn-envir.patch | 28 +++++++++---------- desktop-file-utils.spec | 13 ++++++--- sources | 2 +- 4 files changed, 25 insertions(+), 19 deletions(-) rename 0001-validate-add-COSMIC.patch => 0001-validate-Add-Phosh-to-list-of-valid-OnlyShowIn-envir.patch (50%) diff --git a/.gitignore b/.gitignore index ace22bd..57dc82a 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ desktop-file-utils-0.16.tar.bz2 /desktop-file-utils-0.24.tar.xz /desktop-file-utils-0.26.tar.xz /desktop-file-utils-0.27.tar.xz +/desktop-file-utils-0.28.tar.xz diff --git a/0001-validate-add-COSMIC.patch b/0001-validate-Add-Phosh-to-list-of-valid-OnlyShowIn-envir.patch similarity index 50% rename from 0001-validate-add-COSMIC.patch rename to 0001-validate-Add-Phosh-to-list-of-valid-OnlyShowIn-envir.patch index 815253f..d6380cb 100644 --- a/0001-validate-add-COSMIC.patch +++ b/0001-validate-Add-Phosh-to-list-of-valid-OnlyShowIn-envir.patch @@ -1,34 +1,34 @@ -From 67d09f0c851cfaf0ff3ae8689c14a09ec08d6fa1 Mon Sep 17 00:00:00 2001 -From: Ryan Brue -Date: Sat, 20 Jul 2024 15:35:57 +0000 -Subject: [PATCH] validate: add COSMIC +From 673ec76e881b8dd7f710b846ae0418c09e6f5439 Mon Sep 17 00:00:00 2001 +From: Sam Day +Date: Fri, 31 Jan 2025 14:50:21 +0100 +Subject: [PATCH] validate: Add Phosh to list of valid OnlyShowIn= environments -Signed-off-by: Ryan Brue +Signed-off-by: Sam Day --- src/validate.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/validate.c b/src/validate.c -index 149ccbe..3ccf866 100644 +index 3ccf866..89a17de 100644 --- a/src/validate.c +++ b/src/validate.c @@ -386,7 +386,7 @@ static DesktopKeyDefinition registered_action_keys[] = { /* This should be the same list as in xdg-specs/menu/menu-spec.xml */ static const char *show_in_registered[] = { -- "GNOME", "GNOME-Classic", "GNOME-Flashback", "KDE", "LXDE", "LXQt", "MATE", "Razor", "ROX", "TDE", "Unity", "XFCE", "EDE", "Cinnamon", "Pantheon", "Budgie", "Enlightenment", "DDE", "Endless", "Old" -+ "COSMIC", "GNOME", "GNOME-Classic", "GNOME-Flashback", "KDE", "LXDE", "LXQt", "MATE", "Razor", "ROX", "TDE", "Unity", "XFCE", "EDE", "Cinnamon", "Pantheon", "Budgie", "Enlightenment", "DDE", "Endless", "Old" +- "COSMIC", "GNOME", "GNOME-Classic", "GNOME-Flashback", "KDE", "LXDE", "LXQt", "MATE", "Razor", "ROX", "TDE", "Unity", "XFCE", "EDE", "Cinnamon", "Pantheon", "Budgie", "Enlightenment", "DDE", "Endless", "Old" ++ "COSMIC", "GNOME", "GNOME-Classic", "GNOME-Flashback", "KDE", "LXDE", "LXQt", "MATE", "Phosh", "Razor", "ROX", "TDE", "Unity", "XFCE", "EDE", "Cinnamon", "Pantheon", "Budgie", "Enlightenment", "DDE", "Endless", "Old" }; static struct { -@@ -540,6 +540,7 @@ static struct { - { "Documentation", FALSE, FALSE, FALSE, { NULL }, { NULL } }, - { "Adult", FALSE, FALSE, FALSE, { NULL }, { NULL } }, - { "Core", FALSE, FALSE, FALSE, { NULL }, { NULL } }, -+ { "COSMIC", FALSE, FALSE, FALSE, { NULL }, { NULL } }, +@@ -543,6 +543,7 @@ static struct { + { "COSMIC", FALSE, FALSE, FALSE, { NULL }, { NULL } }, { "KDE", FALSE, FALSE, FALSE, { NULL }, { "Qt", NULL } }, { "GNOME", FALSE, FALSE, FALSE, { NULL }, { "GTK", NULL } }, ++ { "Phosh", FALSE, FALSE, FALSE, { NULL }, { "GTK", NULL } }, { "XFCE", FALSE, FALSE, FALSE, { NULL }, { "GTK", NULL } }, + { "DDE", FALSE, FALSE, FALSE, { NULL }, { "Qt", NULL } }, + { "LXQt", FALSE, FALSE, FALSE, { NULL }, { "Qt", NULL } }, -- -2.45.2 +2.47.1 diff --git a/desktop-file-utils.spec b/desktop-file-utils.spec index 2bfea9c..8a5ed1c 100644 --- a/desktop-file-utils.spec +++ b/desktop-file-utils.spec @@ -1,12 +1,12 @@ Summary: Utilities for manipulating .desktop files Name: desktop-file-utils -Version: 0.27 -Release: 3%{?dist} +Version: 0.28 +Release: 1%{?dist} URL: https://www.freedesktop.org/software/desktop-file-utils Source0: https://www.freedesktop.org/software/desktop-file-utils/releases/%{name}-%{version}.tar.xz Source1: desktop-entry-mode-init.el -# Patch is from https://gitlab.freedesktop.org/xdg/desktop-file-utils/-/merge_requests/22 -Patch0: 0001-validate-add-COSMIC.patch +# https://gitlab.freedesktop.org/xdg/desktop-file-utils/-/merge_requests/24 +Patch0: 0001-validate-Add-Phosh-to-list-of-valid-OnlyShowIn-envir.patch License: GPL-2.0-or-later BuildRequires: gcc @@ -58,6 +58,11 @@ update-desktop-database &> /dev/null || : %{_emacs_sitelispdir}/desktop-file-utils/ %changelog +* Fri Jan 31 2025 Sam Day - 0.28-1 + - 0.28 update + - Drop COSMIC patch, it landed upstream in 0.28 + - Add patch to recognize Phosh as a valid OnlyShowIn= environment + * Thu Jan 16 2025 Fedora Release Engineering - 0.27-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild diff --git a/sources b/sources index 8ed0639..0022540 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (desktop-file-utils-0.27.tar.xz) = 81356239a92fb17885aa85a5192c84c2757ebb2e540920d0d41d07035795f08f4162f41b1a87bb2bfcf70ec61f19f1f158e4395a359f46b46f68cb9e24f259a8 +SHA512 (desktop-file-utils-0.28.tar.xz) = 1024172fcd37ace0660fd58195c0562b47f1ef8ed37f662b88048c295a388d1458d01f86799b34ec9e8b27a7ea441f98665f0d641c29cb5ecc3abd7da41230f0 From cc349fbe8e909f83f5c1bf7608bf1dcea6955038 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 23 Jul 2025 19:12:24 +0000 Subject: [PATCH 17/18] Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild --- desktop-file-utils.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/desktop-file-utils.spec b/desktop-file-utils.spec index 8a5ed1c..e764442 100644 --- a/desktop-file-utils.spec +++ b/desktop-file-utils.spec @@ -1,7 +1,7 @@ Summary: Utilities for manipulating .desktop files Name: desktop-file-utils Version: 0.28 -Release: 1%{?dist} +Release: 2%{?dist} URL: https://www.freedesktop.org/software/desktop-file-utils Source0: https://www.freedesktop.org/software/desktop-file-utils/releases/%{name}-%{version}.tar.xz Source1: desktop-entry-mode-init.el @@ -58,6 +58,9 @@ update-desktop-database &> /dev/null || : %{_emacs_sitelispdir}/desktop-file-utils/ %changelog +* Wed Jul 23 2025 Fedora Release Engineering - 0.28-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + * Fri Jan 31 2025 Sam Day - 0.28-1 - 0.28 update - Drop COSMIC patch, it landed upstream in 0.28 From a30e10b0b5cf54fa02dc4720bfc8d26ad8efd840 Mon Sep 17 00:00:00 2001 From: Debarshi Ray Date: Wed, 19 Nov 2025 18:58:35 +0100 Subject: [PATCH 18/18] Convert to %autorelease and %autochangelog ... using 'rpmautospec convert'. [skip changelog] --- changelog | 395 +++++++++++++++++++++++++++++++++++++++ desktop-file-utils.spec | 398 +--------------------------------------- 2 files changed, 397 insertions(+), 396 deletions(-) create mode 100644 changelog diff --git a/changelog b/changelog new file mode 100644 index 0000000..602d467 --- /dev/null +++ b/changelog @@ -0,0 +1,395 @@ +* Wed Jul 23 2025 Fedora Release Engineering - 0.28-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + +* Fri Jan 31 2025 Sam Day - 0.28-1 + - 0.28 update + - Drop COSMIC patch, it landed upstream in 0.28 + - Add patch to recognize Phosh as a valid OnlyShowIn= environment + +* Thu Jan 16 2025 Fedora Release Engineering - 0.27-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + +* Tue Jul 23 2024 Ryan Brue - 0.27-2 +- Add patch to include COSMIC as a category + +* Tue Jul 23 2024 Neal Gompa - 0.27-1 +- Rebase to 0.27 + +* Wed Jul 17 2024 Fedora Release Engineering - 0.26-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + +* Mon Feb 12 2024 Tomas Popela - 0.26-12 +- Build for the SPDX license format change + +* Wed Jan 24 2024 Fedora Release Engineering - 0.26-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Fri Jan 19 2024 Fedora Release Engineering - 0.26-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Wed Jul 19 2023 Fedora Release Engineering - 0.26-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + +* Thu Jan 19 2023 Fedora Release Engineering - 0.26-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + +* Thu Jul 21 2022 Fedora Release Engineering - 0.26-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + +* Tue Feb 15 2022 David King - 0.26-6 +- Support files conforming to 1.5 of the specification (#2053905) + +* Thu Jan 20 2022 Fedora Release Engineering - 0.26-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + +* Wed Jul 21 2021 Fedora Release Engineering - 0.26-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Tue Jan 26 2021 Fedora Release Engineering - 0.26-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Mon Jul 27 2020 Fedora Release Engineering - 0.26-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Wed Jun 24 2020 Kalev Lember - 0.26-1 +- Update to 0.26 +- Switch to the meson build system +- Avoid hardcoding man page extensions +- Drop old emacs-desktop-file-utils obsoletes/provides + +* Tue Jan 28 2020 Fedora Release Engineering - 0.24-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Wed Aug 14 2019 Kalev Lember - 0.24-1 +- Update to 0.24 + +* Wed Jul 24 2019 Fedora Release Engineering - 0.23-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Thu Jan 31 2019 Fedora Release Engineering - 0.23-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Thu Jul 12 2018 Fedora Release Engineering - 0.23-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Mon Apr 09 2018 Adam Williamson - 0.23-8 +- Add 'font' as a valid media type (#1564650, fdo#105785) + +* Wed Feb 07 2018 Fedora Release Engineering - 0.23-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Mon Feb 05 2018 Rex Dieter - 0.23-6 +- scriplets: silence output, ignore errors +- %%license COPYING +- drop deprecated Group: tag + +* Wed Aug 02 2017 Fedora Release Engineering - 0.23-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Wed Jul 26 2017 Fedora Release Engineering - 0.23-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Fri Feb 10 2017 Fedora Release Engineering - 0.23-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Sat Dec 31 2016 Kevin Kofler - 0.23-2 +- Add Pantheon to the list of desktop environments (#1333550, fdo#97385) + +* Fri Jul 01 2016 Michael Catanzaro - 0.23-1 +- Update to 0.23 + +* Wed Feb 03 2016 Fedora Release Engineering - 0.22-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Fri Aug 14 2015 Matthias Clasen - 0.22-6 +- Add file triggers for desktop file mime extraction + +* Wed Jun 17 2015 Fedora Release Engineering - 0.22-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Sat Feb 21 2015 Till Maas - 0.22-4 +- Rebuilt for Fedora 23 Change + https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code + +* Sat Aug 16 2014 Fedora Release Engineering - 0.22-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + +* Sat Jun 07 2014 Fedora Release Engineering - 0.22-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Thu Aug 29 2013 Kalev Lember - 0.22-1 +- Update to 0.22 + +* Sat Aug 03 2013 Fedora Release Engineering - 0.21-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Wed Feb 13 2013 Fedora Release Engineering - 0.21-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Fri Oct 19 2012 Kalev Lember - 0.21-1 +- Update to 0.21 + +* Thu Sep 06 2012 Dan Mashal 0.20-4 +- Update F17 to 0.20 (#847097). + +* Sat Aug 11 2012 Ville Skyttä - 0.20-3 +- Fold emacs-* subpackages into main (#690264). + +* Wed Jul 18 2012 Fedora Release Engineering - 0.20-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Fri May 18 2012 Matthias Clasen - 0.20-1 +- Update to 0.20 + +* Fri Jan 13 2012 Fedora Release Engineering - 0.19-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Fri Dec 23 2011 Matthias Clasen - 0.19-5 +- Fix up locale lists just like other lists + +* Tue Dec 20 2011 Matthias Clasen - 0.19-1 +- Update to 0.19: support for Unity as desktop env, and support + for Keywords + +* Mon Jul 04 2011 Adam Williamson - 0.18-4 +- add unity.patch from upstream: add Unity to list of registered + environments + +* Tue Feb 08 2011 Fedora Release Engineering - 0.18-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Sun Jan 30 2011 Ville Skyttä - 0.18-2 +- Add desktop-entry-mode-init.el, fix emacs site-start dir ownership. + +* Thu Jan 13 2011 Matthias Clasen - 0.18-1 +- Update to 0.18 + +* Fri Nov 5 2010 Matthias Clasen - 0.16-3 +- Don't warn about x-scheme-handler pseudo-mime-types + +* Sat Sep 25 2010 Parag Nemade - 0.16-2 +- Merge-review cleanup (#225681) + +* Thu Apr 1 2010 Matthias Clasen 0.16-1 +- Update to 0.16 + +* Fri Jul 24 2009 Fedora Release Engineering - 0.15-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Tue Feb 24 2009 Fedora Release Engineering - 0.15-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Wed Feb 04 2009 Richard Hughes - 0.15-6 +- Panu seems to be shipping the prov file in rpmbuild. Remove it here until we + work out where it belongs. + +* Wed Feb 04 2009 Richard Hughes - 0.15-5 +- Panu merged the rpm bits for this feature, but we've got a new provides + filename. Respin this package with the new name. + +* Thu Jan 22 2009 Richard Hughes - 0.15-4 +- Rename desktop-mime-type.prov to desktop_mime_type.prov and add the tiny + macros.desktop_mime_type file so that we can trivially patch rpm to enable + this new functionality. + +* Fri May 02 2008 Richard Hughes - 0.15-3 +- Add desktop-mime-type.prov so that we can automatically + generate mimetype provides for packages at build time. + This lets us do some cool things with PackageKit in the future. + +* Wed Mar 19 2008 Ray Strode - 0.15-2 +- Drop old unneeded obsoletes on desktop-file-validator +(bug 225681) + +* Tue Mar 4 2008 Matthias Clasen - 0.15-1 +- Update to 0.15 +- Drop upstreamed patch + +* Tue Feb 19 2008 Fedora Release Engineering - 0.14-3 +- Autorebuild for GCC 4.3 + +* Thu Dec 6 2007 Ray Strode 0.14-2 +- make icon extension a warning not an error + +* Fri Nov 30 2007 Christopher Stone 0.14-1 +- Upstream sync +- Remove no longer needed short option patch + +* Wed Aug 15 2007 Matthias Clasen - 0.13-3 +- Make the -m option work (#232761) + +* Mon Aug 6 2007 Matthias Clasen - 0.13-2 +- Update license field + +* Tue Jun 5 2007 Matthias Clasen - 0.13-1 +- Update to 0.13, which features a completely rewritten validator + +* Thu Mar 08 2007 Florian La Roche - 0.12-4 +- remove empty post/preun scripts completely + +* Tue Nov 28 2006 Ray Strode - 0.12-3 +- drop some rm -f cruft +- don't call update-desktop-database from %%post or %%postun + +* Tue Nov 28 2006 Ray Strode - 0.12-2 +- make --vendor optional + +* Tue Nov 28 2006 Ray Strode - 0.12-1 +- Update to 0.12 + +* Fri Oct 27 2006 Ray Strode - 0.11-4 +- commit the fix attempted in 0.11-2 and 0.11-3 to the right + function... + +* Fri Oct 27 2006 Ray Strode - 0.11-3 +- actually apply the patch written in 0.11-2 + +* Thu Oct 26 2006 Ray Strode - 0.11-2 +- make desktop file validation non-fatal until we + add support for categories beginning with X- and clean up + our menu system to not require invalid categories + (bug 212048) + +* Mon Oct 23 2006 Matthias Clasen - 0.11-1 +- Update to 0.11 + +* Wed Jul 26 2006 Jesse Keating - 0.10-7 +- rebuild + +* Fri Feb 10 2006 Jesse Keating - 0.10-6.1 +- bump again for double-long bug on ppc(64) + +* Fri Feb 10 2006 Ray Strode - 0.10-6 +- call update-desktop-database in %%preun (bug 180898) +- don't fail if update-desktop-database fails +- don't use %%makeinstall + +* Fri Feb 10 2006 Ray Strode - 0.10-5 +- call update-desktop-database in %%post (bug 180898) + +* Tue Feb 07 2006 Jesse Keating - 0.10-4.1 +- rebuilt for new gcc4.1 snapshot and glibc changes + +* Sun Jan 22 2006 Ray Strode - 0.10-4 +- don't use uninitialized memory (bug 178591) + +* Fri Dec 09 2005 Jesse Keating +- rebuilt + +* Wed Aug 31 2005 Ray Strode - 0.10-3 +- bump build requires for glib to 2.2.0 (bug #146585). + +* Thu May 12 2005 Ray Strode - 0.10-2 +- Add build requires for emacs (bug #141297). + +* Wed Jan 26 2005 Matthias Clasen - 0.10-1 +- Update to 0.10 + +* Mon Oct 18 2004 Miloslav Trmac - 0.9-2 +- Output error message instead of assertion failure (#134934) + +* Tue Sep 28 2004 Mark McLoughlin 0.9-1 +- Update to 0.9, remove upstreamed patches + +* Mon Sep 27 2004 Ray Strode 0.8-6 +- Swap if and else in egg_desktop_entries_get_locale_encoding + to prevent allocating massive amounts of unneeded ram. + +* Mon Sep 27 2004 Ray Strode 0.8-5 +- Swap if and else in egg_desktop_entries_get_locale_country + to prevent allocating massive amounts of unneeded ram. + +* Thu Sep 23 2004 Ray Strode 0.8-4 +- Fix the fix for --remove-show-in option + +* Thu Sep 23 2004 Ray Strode 0.8-3 +- Fix --remove-show-in option + +* Mon Sep 13 2004 Dan Williams 0.8-2 +- Fix RH #131983 (annoying log message about "entries != NULL") + +* Fri Sep 3 2004 Mark McLoughlin 0.8-1 +- Update to 0.8 + +* Sat Jul 31 2004 Dan Williams 0.7-1 +- Update to 0.7 + +* Tue Jun 15 2004 Elliot Lee +- rebuilt + +* Mon Mar 1 2004 Dan Williams 0.4-2 +- Fix RH #117201, initial comment fails validation +- Add in, but do not use, Frederic Crozat's freedesktop.org + menu-spec 0.8 patch + +* Thu Feb 19 2004 Mark McLoughlin 0.4-1 +- Update to 0.4 + +* Fri Feb 13 2004 Elliot Lee +- rebuilt + +* Wed Sep 3 2003 Havoc Pennington 0.3-10 +- fix for #103276 (int/size_t issue) from twoerner + +* Mon Jul 7 2003 Alexander Larsson 0.3-9 +- Rebuild + +* Mon Jun 23 2003 Havoc Pennington 0.3-8 +- rebuild + +* Thu Jun 5 2003 Jonathan Blandford 0.3-6 +- Backport patch to allow @MODIFIER in locale keys + +* Wed Jun 04 2003 Elliot Lee +- rebuilt + +* Wed Jan 22 2003 Tim Powers +- rebuilt + +* Fri Dec 6 2002 Havoc Pennington +- rebuild + +* Tue Aug 6 2002 Havoc Pennington +- fix more error messages + +* Tue Aug 6 2002 Havoc Pennington +- remove old symlinks before creating new ones, chills out + a lot of error messages + +* Tue Aug 6 2002 Havoc Pennington +- version 0.3 + +* Wed Jul 24 2002 Havoc Pennington +- 0.2.95 cvs snap, should fix OnlyShowIn + +* Mon Jul 22 2002 Havoc Pennington +- 0.2.94 cvs snap, adds --print-available + +* Tue Jul 9 2002 Havoc Pennington +- 0.2.93 cvs snap with a crash fixed, and corrects [KDE Desktop Entry] + +* Fri Jun 21 2002 Havoc Pennington +- 0.2.92 cvs snap with --remove-key and checking for OnlyShowIn + and missing trailing semicolons on string lists + +* Fri Jun 21 2002 Havoc Pennington +- 0.2.91 cvs snap with --copy-name-to-generic-name and + --copy-generic-name-to-name + +* Sun Jun 16 2002 Havoc Pennington +- 0.2.90 cvs snap with --delete-original fixed + +* Fri Jun 07 2002 Havoc Pennington +- rebuild in different environment + +* Wed Jun 5 2002 Havoc Pennington +- 0.2 + +* Thu May 23 2002 Tim Powers +- automated rebuild + +* Thu May 09 2002 Havoc Pennington +- rebuild in different environment + +* Thu May 9 2002 Havoc Pennington +- initial build diff --git a/desktop-file-utils.spec b/desktop-file-utils.spec index e764442..984c744 100644 --- a/desktop-file-utils.spec +++ b/desktop-file-utils.spec @@ -1,7 +1,7 @@ Summary: Utilities for manipulating .desktop files Name: desktop-file-utils Version: 0.28 -Release: 2%{?dist} +Release: %autorelease URL: https://www.freedesktop.org/software/desktop-file-utils Source0: https://www.freedesktop.org/software/desktop-file-utils/releases/%{name}-%{version}.tar.xz Source1: desktop-entry-mode-init.el @@ -58,398 +58,4 @@ update-desktop-database &> /dev/null || : %{_emacs_sitelispdir}/desktop-file-utils/ %changelog -* Wed Jul 23 2025 Fedora Release Engineering - 0.28-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild - -* Fri Jan 31 2025 Sam Day - 0.28-1 - - 0.28 update - - Drop COSMIC patch, it landed upstream in 0.28 - - Add patch to recognize Phosh as a valid OnlyShowIn= environment - -* Thu Jan 16 2025 Fedora Release Engineering - 0.27-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild - -* Tue Jul 23 2024 Ryan Brue - 0.27-2 -- Add patch to include COSMIC as a category - -* Tue Jul 23 2024 Neal Gompa - 0.27-1 -- Rebase to 0.27 - -* Wed Jul 17 2024 Fedora Release Engineering - 0.26-13 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild - -* Mon Feb 12 2024 Tomas Popela - 0.26-12 -- Build for the SPDX license format change - -* Wed Jan 24 2024 Fedora Release Engineering - 0.26-11 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild - -* Fri Jan 19 2024 Fedora Release Engineering - 0.26-10 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild - -* Wed Jul 19 2023 Fedora Release Engineering - 0.26-9 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild - -* Thu Jan 19 2023 Fedora Release Engineering - 0.26-8 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild - -* Thu Jul 21 2022 Fedora Release Engineering - 0.26-7 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild - -* Tue Feb 15 2022 David King - 0.26-6 -- Support files conforming to 1.5 of the specification (#2053905) - -* Thu Jan 20 2022 Fedora Release Engineering - 0.26-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild - -* Wed Jul 21 2021 Fedora Release Engineering - 0.26-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild - -* Tue Jan 26 2021 Fedora Release Engineering - 0.26-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild - -* Mon Jul 27 2020 Fedora Release Engineering - 0.26-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild - -* Wed Jun 24 2020 Kalev Lember - 0.26-1 -- Update to 0.26 -- Switch to the meson build system -- Avoid hardcoding man page extensions -- Drop old emacs-desktop-file-utils obsoletes/provides - -* Tue Jan 28 2020 Fedora Release Engineering - 0.24-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild - -* Wed Aug 14 2019 Kalev Lember - 0.24-1 -- Update to 0.24 - -* Wed Jul 24 2019 Fedora Release Engineering - 0.23-11 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild - -* Thu Jan 31 2019 Fedora Release Engineering - 0.23-10 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild - -* Thu Jul 12 2018 Fedora Release Engineering - 0.23-9 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild - -* Mon Apr 09 2018 Adam Williamson - 0.23-8 -- Add 'font' as a valid media type (#1564650, fdo#105785) - -* Wed Feb 07 2018 Fedora Release Engineering - 0.23-7 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild - -* Mon Feb 05 2018 Rex Dieter - 0.23-6 -- scriplets: silence output, ignore errors -- %%license COPYING -- drop deprecated Group: tag - -* Wed Aug 02 2017 Fedora Release Engineering - 0.23-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild - -* Wed Jul 26 2017 Fedora Release Engineering - 0.23-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild - -* Fri Feb 10 2017 Fedora Release Engineering - 0.23-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild - -* Sat Dec 31 2016 Kevin Kofler - 0.23-2 -- Add Pantheon to the list of desktop environments (#1333550, fdo#97385) - -* Fri Jul 01 2016 Michael Catanzaro - 0.23-1 -- Update to 0.23 - -* Wed Feb 03 2016 Fedora Release Engineering - 0.22-7 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild - -* Fri Aug 14 2015 Matthias Clasen - 0.22-6 -- Add file triggers for desktop file mime extraction - -* Wed Jun 17 2015 Fedora Release Engineering - 0.22-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild - -* Sat Feb 21 2015 Till Maas - 0.22-4 -- Rebuilt for Fedora 23 Change - https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code - -* Sat Aug 16 2014 Fedora Release Engineering - 0.22-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild - -* Sat Jun 07 2014 Fedora Release Engineering - 0.22-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild - -* Thu Aug 29 2013 Kalev Lember - 0.22-1 -- Update to 0.22 - -* Sat Aug 03 2013 Fedora Release Engineering - 0.21-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild - -* Wed Feb 13 2013 Fedora Release Engineering - 0.21-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild - -* Fri Oct 19 2012 Kalev Lember - 0.21-1 -- Update to 0.21 - -* Thu Sep 06 2012 Dan Mashal 0.20-4 -- Update F17 to 0.20 (#847097). - -* Sat Aug 11 2012 Ville Skyttä - 0.20-3 -- Fold emacs-* subpackages into main (#690264). - -* Wed Jul 18 2012 Fedora Release Engineering - 0.20-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild - -* Fri May 18 2012 Matthias Clasen - 0.20-1 -- Update to 0.20 - -* Fri Jan 13 2012 Fedora Release Engineering - 0.19-6 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild - -* Fri Dec 23 2011 Matthias Clasen - 0.19-5 -- Fix up locale lists just like other lists - -* Tue Dec 20 2011 Matthias Clasen - 0.19-1 -- Update to 0.19: support for Unity as desktop env, and support - for Keywords - -* Mon Jul 04 2011 Adam Williamson - 0.18-4 -- add unity.patch from upstream: add Unity to list of registered - environments - -* Tue Feb 08 2011 Fedora Release Engineering - 0.18-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild - -* Sun Jan 30 2011 Ville Skyttä - 0.18-2 -- Add desktop-entry-mode-init.el, fix emacs site-start dir ownership. - -* Thu Jan 13 2011 Matthias Clasen - 0.18-1 -- Update to 0.18 - -* Fri Nov 5 2010 Matthias Clasen - 0.16-3 -- Don't warn about x-scheme-handler pseudo-mime-types - -* Sat Sep 25 2010 Parag Nemade - 0.16-2 -- Merge-review cleanup (#225681) - -* Thu Apr 1 2010 Matthias Clasen 0.16-1 -- Update to 0.16 - -* Fri Jul 24 2009 Fedora Release Engineering - 0.15-8 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild - -* Tue Feb 24 2009 Fedora Release Engineering - 0.15-7 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild - -* Wed Feb 04 2009 Richard Hughes - 0.15-6 -- Panu seems to be shipping the prov file in rpmbuild. Remove it here until we - work out where it belongs. - -* Wed Feb 04 2009 Richard Hughes - 0.15-5 -- Panu merged the rpm bits for this feature, but we've got a new provides - filename. Respin this package with the new name. - -* Thu Jan 22 2009 Richard Hughes - 0.15-4 -- Rename desktop-mime-type.prov to desktop_mime_type.prov and add the tiny - macros.desktop_mime_type file so that we can trivially patch rpm to enable - this new functionality. - -* Fri May 02 2008 Richard Hughes - 0.15-3 -- Add desktop-mime-type.prov so that we can automatically - generate mimetype provides for packages at build time. - This lets us do some cool things with PackageKit in the future. - -* Wed Mar 19 2008 Ray Strode - 0.15-2 -- Drop old unneeded obsoletes on desktop-file-validator -(bug 225681) - -* Tue Mar 4 2008 Matthias Clasen - 0.15-1 -- Update to 0.15 -- Drop upstreamed patch - -* Tue Feb 19 2008 Fedora Release Engineering - 0.14-3 -- Autorebuild for GCC 4.3 - -* Thu Dec 6 2007 Ray Strode 0.14-2 -- make icon extension a warning not an error - -* Fri Nov 30 2007 Christopher Stone 0.14-1 -- Upstream sync -- Remove no longer needed short option patch - -* Wed Aug 15 2007 Matthias Clasen - 0.13-3 -- Make the -m option work (#232761) - -* Mon Aug 6 2007 Matthias Clasen - 0.13-2 -- Update license field - -* Tue Jun 5 2007 Matthias Clasen - 0.13-1 -- Update to 0.13, which features a completely rewritten validator - -* Thu Mar 08 2007 Florian La Roche - 0.12-4 -- remove empty post/preun scripts completely - -* Tue Nov 28 2006 Ray Strode - 0.12-3 -- drop some rm -f cruft -- don't call update-desktop-database from %%post or %%postun - -* Tue Nov 28 2006 Ray Strode - 0.12-2 -- make --vendor optional - -* Tue Nov 28 2006 Ray Strode - 0.12-1 -- Update to 0.12 - -* Fri Oct 27 2006 Ray Strode - 0.11-4 -- commit the fix attempted in 0.11-2 and 0.11-3 to the right - function... - -* Fri Oct 27 2006 Ray Strode - 0.11-3 -- actually apply the patch written in 0.11-2 - -* Thu Oct 26 2006 Ray Strode - 0.11-2 -- make desktop file validation non-fatal until we - add support for categories beginning with X- and clean up - our menu system to not require invalid categories - (bug 212048) - -* Mon Oct 23 2006 Matthias Clasen - 0.11-1 -- Update to 0.11 - -* Wed Jul 26 2006 Jesse Keating - 0.10-7 -- rebuild - -* Fri Feb 10 2006 Jesse Keating - 0.10-6.1 -- bump again for double-long bug on ppc(64) - -* Fri Feb 10 2006 Ray Strode - 0.10-6 -- call update-desktop-database in %%preun (bug 180898) -- don't fail if update-desktop-database fails -- don't use %%makeinstall - -* Fri Feb 10 2006 Ray Strode - 0.10-5 -- call update-desktop-database in %%post (bug 180898) - -* Tue Feb 07 2006 Jesse Keating - 0.10-4.1 -- rebuilt for new gcc4.1 snapshot and glibc changes - -* Sun Jan 22 2006 Ray Strode - 0.10-4 -- don't use uninitialized memory (bug 178591) - -* Fri Dec 09 2005 Jesse Keating -- rebuilt - -* Wed Aug 31 2005 Ray Strode - 0.10-3 -- bump build requires for glib to 2.2.0 (bug #146585). - -* Thu May 12 2005 Ray Strode - 0.10-2 -- Add build requires for emacs (bug #141297). - -* Wed Jan 26 2005 Matthias Clasen - 0.10-1 -- Update to 0.10 - -* Mon Oct 18 2004 Miloslav Trmac - 0.9-2 -- Output error message instead of assertion failure (#134934) - -* Tue Sep 28 2004 Mark McLoughlin 0.9-1 -- Update to 0.9, remove upstreamed patches - -* Mon Sep 27 2004 Ray Strode 0.8-6 -- Swap if and else in egg_desktop_entries_get_locale_encoding - to prevent allocating massive amounts of unneeded ram. - -* Mon Sep 27 2004 Ray Strode 0.8-5 -- Swap if and else in egg_desktop_entries_get_locale_country - to prevent allocating massive amounts of unneeded ram. - -* Thu Sep 23 2004 Ray Strode 0.8-4 -- Fix the fix for --remove-show-in option - -* Thu Sep 23 2004 Ray Strode 0.8-3 -- Fix --remove-show-in option - -* Mon Sep 13 2004 Dan Williams 0.8-2 -- Fix RH #131983 (annoying log message about "entries != NULL") - -* Fri Sep 3 2004 Mark McLoughlin 0.8-1 -- Update to 0.8 - -* Sat Jul 31 2004 Dan Williams 0.7-1 -- Update to 0.7 - -* Tue Jun 15 2004 Elliot Lee -- rebuilt - -* Mon Mar 1 2004 Dan Williams 0.4-2 -- Fix RH #117201, initial comment fails validation -- Add in, but do not use, Frederic Crozat's freedesktop.org - menu-spec 0.8 patch - -* Thu Feb 19 2004 Mark McLoughlin 0.4-1 -- Update to 0.4 - -* Fri Feb 13 2004 Elliot Lee -- rebuilt - -* Wed Sep 3 2003 Havoc Pennington 0.3-10 -- fix for #103276 (int/size_t issue) from twoerner - -* Mon Jul 7 2003 Alexander Larsson 0.3-9 -- Rebuild - -* Mon Jun 23 2003 Havoc Pennington 0.3-8 -- rebuild - -* Thu Jun 5 2003 Jonathan Blandford 0.3-6 -- Backport patch to allow @MODIFIER in locale keys - -* Wed Jun 04 2003 Elliot Lee -- rebuilt - -* Wed Jan 22 2003 Tim Powers -- rebuilt - -* Fri Dec 6 2002 Havoc Pennington -- rebuild - -* Tue Aug 6 2002 Havoc Pennington -- fix more error messages - -* Tue Aug 6 2002 Havoc Pennington -- remove old symlinks before creating new ones, chills out - a lot of error messages - -* Tue Aug 6 2002 Havoc Pennington -- version 0.3 - -* Wed Jul 24 2002 Havoc Pennington -- 0.2.95 cvs snap, should fix OnlyShowIn - -* Mon Jul 22 2002 Havoc Pennington -- 0.2.94 cvs snap, adds --print-available - -* Tue Jul 9 2002 Havoc Pennington -- 0.2.93 cvs snap with a crash fixed, and corrects [KDE Desktop Entry] - -* Fri Jun 21 2002 Havoc Pennington -- 0.2.92 cvs snap with --remove-key and checking for OnlyShowIn - and missing trailing semicolons on string lists - -* Fri Jun 21 2002 Havoc Pennington -- 0.2.91 cvs snap with --copy-name-to-generic-name and - --copy-generic-name-to-name - -* Sun Jun 16 2002 Havoc Pennington -- 0.2.90 cvs snap with --delete-original fixed - -* Fri Jun 07 2002 Havoc Pennington -- rebuild in different environment - -* Wed Jun 5 2002 Havoc Pennington -- 0.2 - -* Thu May 23 2002 Tim Powers -- automated rebuild - -* Thu May 09 2002 Havoc Pennington -- rebuild in different environment - -* Thu May 9 2002 Havoc Pennington -- initial build +%autochangelog