OBS User unknown 2007-10-29 14:37:48 +00:00 committed by Git OBS Bridge
parent f064640f16
commit acbbdcb401
5 changed files with 41 additions and 22 deletions

View File

@ -1,11 +0,0 @@
--- src/validate.c
+++ src/validate.c
@@ -750,7 +750,7 @@ handle_show_in_key (kf_validator *kf,
g_hash_table_insert (hashtable, show[i], show[i]);
for (j = 0; j < G_N_ELEMENTS (show_in_registered); j++) {
- if (!strcmp (show[i], show_in_registered[j]))
+ if (!strncmp(show[i], "X-", 2) || !strcmp (show[i], show_in_registered[j]))
break;
}

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5b4f124eea48ee14af28e55e6b3ba29b0f1736b98cf9ad213fcc4c8e33773e39
size 241562

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:716a41ceb5dc750b0dd89dd8d92e967a669bb67e66d52d1d2a24161d84bbb7b7
size 242942

View File

@ -1,3 +1,21 @@
-------------------------------------------------------------------
Mon Oct 29 12:55:53 CET 2007 - dmueller@suse.de
- update to 0.14:
o make desktop-file-install print an error when trying to install a
non-existing desktop file, or a desktop file that can't be read (Vincent)
o make the validator check the content of the Icon key (Vincent)
o make the validator accept X-Foo as a valid environment (this was added to
the spec) (Stanislav Brabec, Vincent)
o really handle the -m command line argument for desktop-file-install
(Matthias Clasen)
o make desktop-file-install accept as one valid argument multiple
categories/only-show-in/mime-types values. Now --add-category="GNOME;GTK"
works as expected. (Vincent)
o make desktop-file-install validate the created desktop file before removing
the original file, and unlink it if it's not valid (Vincent)
o code cleanups for desktop-file-install (Vincent)
-------------------------------------------------------------------
Wed Sep 12 13:49:14 CEST 2007 - coolo@suse.de

View File

@ -1,5 +1,5 @@
#
# spec file for package desktop-file-utils (Version 0.13)
# spec file for package desktop-file-utils (Version 0.14)
#
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
@ -14,16 +14,15 @@ Name: desktop-file-utils
BuildRequires: emacs-nox glib2-devel pkg-config popt-devel update-desktop-files
License: GPL v2 or later
Group: Development/Tools/Other
Autoreqprov: on
Version: 0.13
Release: 33
AutoReqProv: on
Version: 0.14
Release: 1
Source: %{name}-%{version}.tar.bz2
Source1: SuSEconfig.desktop-file-utils
Patch: desktop-file-utils-suse-keys.patch
Patch1: accept-suse-extensions.diff
PreReq: /bin/rm /bin/rmdir
Requires: aaa_base >= 10.1
URL: http://www.freedesktop.org/wiki/Software/desktop-file-utils
Url: http://www.freedesktop.org/wiki/Software/desktop-file-utils
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Summary: Utilities for Manipulating Desktop Files
@ -44,7 +43,6 @@ Authors:
%prep
%setup
%patch
%patch1
%build
%configure
@ -91,8 +89,22 @@ fi
%dir /opt/kde3/share
%dir /opt/kde3/share/applications
%ghost /opt/kde3/share/applications/mimeinfo.cache
%changelog
* Mon Oct 29 2007 - dmueller@suse.de
- update to 0.14:
o make desktop-file-install print an error when trying to install a
non-existing desktop file, or a desktop file that can't be read (Vincent)
o make the validator check the content of the Icon key (Vincent)
o make the validator accept X-Foo as a valid environment (this was added to
the spec) (Stanislav Brabec, Vincent)
o really handle the -m command line argument for desktop-file-install
(Matthias Clasen)
o make desktop-file-install accept as one valid argument multiple
categories/only-show-in/mime-types values. Now --add-category="GNOME;GTK"
works as expected. (Vincent)
o make desktop-file-install validate the created desktop file before removing
the original file, and unlink it if it's not valid (Vincent)
o code cleanups for desktop-file-install (Vincent)
* Wed Sep 12 2007 - coolo@suse.de
- don't require path names
* Thu Jul 12 2007 - dmueller@suse.de