OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/desktop-file-utils?expand=0&rev=11
This commit is contained in:
parent
acbbdcb401
commit
02b21dc850
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:716a41ceb5dc750b0dd89dd8d92e967a669bb67e66d52d1d2a24161d84bbb7b7
|
|
||||||
size 242942
|
|
3
desktop-file-utils-0.15.tar.bz2
Normal file
3
desktop-file-utils-0.15.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:6dfe112460c75836094fb4fcdf6144490802949474ca154d49e4bbdb92a6b442
|
||||||
|
size 242650
|
@ -1,3 +1,12 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Mar 10 13:23:58 CET 2008 - sbrabec@suse.cz
|
||||||
|
|
||||||
|
- Updated to version 0.15:
|
||||||
|
* make the extension check for Icon key a warning instead of an
|
||||||
|
error for now
|
||||||
|
* Fix a crash in update-desktop-database when there's no group
|
||||||
|
* Fix a crash in the validator happening for very small lines
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Oct 29 12:55:53 CET 2007 - dmueller@suse.de
|
Mon Oct 29 12:55:53 CET 2007 - dmueller@suse.de
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package desktop-file-utils (Version 0.14)
|
# spec file for package desktop-file-utils (Version 0.15)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
# This file and all modifications and additions to the pristine
|
# This file and all modifications and additions to the pristine
|
||||||
# package are under the same license as the package itself.
|
# package are under the same license as the package itself.
|
||||||
#
|
#
|
||||||
@ -10,12 +10,12 @@
|
|||||||
|
|
||||||
# norootforbuild
|
# norootforbuild
|
||||||
|
|
||||||
|
|
||||||
Name: desktop-file-utils
|
Name: desktop-file-utils
|
||||||
BuildRequires: emacs-nox glib2-devel pkg-config popt-devel update-desktop-files
|
BuildRequires: emacs-nox glib2-devel pkg-config
|
||||||
License: GPL v2 or later
|
License: GPL v2 or later
|
||||||
Group: Development/Tools/Other
|
Group: Development/Tools/Other
|
||||||
AutoReqProv: on
|
Version: 0.15
|
||||||
Version: 0.14
|
|
||||||
Release: 1
|
Release: 1
|
||||||
Source: %{name}-%{version}.tar.bz2
|
Source: %{name}-%{version}.tar.bz2
|
||||||
Source1: SuSEconfig.desktop-file-utils
|
Source1: SuSEconfig.desktop-file-utils
|
||||||
@ -89,8 +89,15 @@ fi
|
|||||||
%dir /opt/kde3/share
|
%dir /opt/kde3/share
|
||||||
%dir /opt/kde3/share/applications
|
%dir /opt/kde3/share/applications
|
||||||
%ghost /opt/kde3/share/applications/mimeinfo.cache
|
%ghost /opt/kde3/share/applications/mimeinfo.cache
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Mon Oct 29 2007 - dmueller@suse.de
|
* Mon Mar 10 2008 sbrabec@suse.cz
|
||||||
|
- Updated to version 0.15:
|
||||||
|
* make the extension check for Icon key a warning instead of an
|
||||||
|
error for now
|
||||||
|
* Fix a crash in update-desktop-database when there's no group
|
||||||
|
* Fix a crash in the validator happening for very small lines
|
||||||
|
* Mon Oct 29 2007 dmueller@suse.de
|
||||||
- update to 0.14:
|
- update to 0.14:
|
||||||
o make desktop-file-install print an error when trying to install a
|
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)
|
non-existing desktop file, or a desktop file that can't be read (Vincent)
|
||||||
@ -105,11 +112,11 @@ fi
|
|||||||
o make desktop-file-install validate the created desktop file before removing
|
o make desktop-file-install validate the created desktop file before removing
|
||||||
the original file, and unlink it if it's not valid (Vincent)
|
the original file, and unlink it if it's not valid (Vincent)
|
||||||
o code cleanups for desktop-file-install (Vincent)
|
o code cleanups for desktop-file-install (Vincent)
|
||||||
* Wed Sep 12 2007 - coolo@suse.de
|
* Wed Sep 12 2007 coolo@suse.de
|
||||||
- don't require path names
|
- don't require path names
|
||||||
* Thu Jul 12 2007 - dmueller@suse.de
|
* Thu Jul 12 2007 dmueller@suse.de
|
||||||
- allow X-SUSE in OnlyShowIn
|
- allow X-SUSE in OnlyShowIn
|
||||||
* Tue Jun 05 2007 - sbrabec@suse.cz
|
* Tue Jun 05 2007 sbrabec@suse.cz
|
||||||
- Updated to version 0.13:
|
- Updated to version 0.13:
|
||||||
* rewrite validator, and update it for desktop entry specification 1.0.
|
* rewrite validator, and update it for desktop entry specification 1.0.
|
||||||
The validator should be stricter and report more useful messages.
|
The validator should be stricter and report more useful messages.
|
||||||
@ -118,23 +125,23 @@ fi
|
|||||||
* port desktop-file-install to GKeyFile
|
* port desktop-file-install to GKeyFile
|
||||||
* don't require --vendor for desktop-file-install
|
* don't require --vendor for desktop-file-install
|
||||||
* some general module cleanup
|
* some general module cleanup
|
||||||
* Wed May 02 2007 - dmueller@suse.de
|
* Wed May 02 2007 dmueller@suse.de
|
||||||
- add patch to validate suse keys
|
- add patch to validate suse keys
|
||||||
* Fri Apr 27 2007 - sbrabec@suse.cz
|
* Fri Apr 27 2007 sbrabec@suse.cz
|
||||||
- Fixed invalid error for missing "Encoding" (Freedesktop#10093).
|
- Fixed invalid error for missing "Encoding" (Freedesktop#10093).
|
||||||
* Thu Apr 19 2007 - sbrabec@suse.cz
|
* Thu Apr 19 2007 sbrabec@suse.cz
|
||||||
- Correctly initialize XDG_DATA_DIRS in SuSEconfig (#240603).
|
- Correctly initialize XDG_DATA_DIRS in SuSEconfig (#240603).
|
||||||
* Fri Feb 23 2007 - sbrabec@suse.cz
|
* Fri Feb 23 2007 sbrabec@suse.cz
|
||||||
- Updated to version 0.12:
|
- Updated to version 0.12:
|
||||||
* improves category validation code to not catch false positives
|
* improves category validation code to not catch false positives
|
||||||
* make category validation code non-fatal
|
* make category validation code non-fatal
|
||||||
* fix mem leaks and double frees
|
* fix mem leaks and double frees
|
||||||
* Mon Jan 15 2007 - sbrabec@suse.cz
|
* Mon Jan 15 2007 sbrabec@suse.cz
|
||||||
- Spec file cleanup.
|
- Spec file cleanup.
|
||||||
- Fixed path in SuSEconfig.desktop-file-utils.
|
- Fixed path in SuSEconfig.desktop-file-utils.
|
||||||
* Mon Jan 08 2007 - ro@suse.de
|
* Mon Jan 08 2007 ro@suse.de
|
||||||
- GNOME moved to /usr
|
- GNOME moved to /usr
|
||||||
* Fri Oct 20 2006 - sbrabec@suse.cz
|
* Fri Oct 20 2006 sbrabec@suse.cz
|
||||||
- Updated to version 0.11:
|
- Updated to version 0.11:
|
||||||
* Validate desktop file categories.
|
* Validate desktop file categories.
|
||||||
* Use GKeyFile instead of the old egg code in
|
* Use GKeyFile instead of the old egg code in
|
||||||
@ -143,29 +150,29 @@ fi
|
|||||||
* Fix grammar problem in one of the strings.
|
* Fix grammar problem in one of the strings.
|
||||||
* NULL terminate search patch in update-desktop-database.
|
* NULL terminate search patch in update-desktop-database.
|
||||||
* Fix language to encoding mapping to match spec.
|
* Fix language to encoding mapping to match spec.
|
||||||
* Sat Feb 25 2006 - aj@suse.de
|
* Sat Feb 25 2006 aj@suse.de
|
||||||
- Reduce BuildRequires.
|
- Reduce BuildRequires.
|
||||||
* Wed Jan 25 2006 - mls@suse.de
|
* Wed Jan 25 2006 mls@suse.de
|
||||||
- converted neededforbuild to BuildRequires
|
- converted neededforbuild to BuildRequires
|
||||||
* Thu Mar 17 2005 - sbrabec@suse.cz
|
* Thu Mar 17 2005 sbrabec@suse.cz
|
||||||
- Explicitly require /etc/profile.d/xdg-enviroment.sh.
|
- Explicitly require /etc/profile.d/xdg-enviroment.sh.
|
||||||
* Wed Mar 16 2005 - sbrabec@suse.cz
|
* Wed Mar 16 2005 sbrabec@suse.cz
|
||||||
- Ensure, that $XDG_DATA_DIRS is defined in
|
- Ensure, that $XDG_DATA_DIRS is defined in
|
||||||
SuSEconfig.desktop-file-utils (#71978).
|
SuSEconfig.desktop-file-utils (#71978).
|
||||||
* Sun Feb 27 2005 - ro@suse.de
|
* Mon Feb 28 2005 ro@suse.de
|
||||||
- try to fix postun script
|
- try to fix postun script
|
||||||
* Fri Feb 25 2005 - sbrabec@suse.cz
|
* Fri Feb 25 2005 sbrabec@suse.cz
|
||||||
- Added SuSEconfig.desktop-file-utils (#66605).
|
- Added SuSEconfig.desktop-file-utils (#66605).
|
||||||
* Thu Jan 06 2005 - sbrabec@suse.cz
|
* Thu Jan 06 2005 sbrabec@suse.cz
|
||||||
- Updated to version 0.10.
|
- Updated to version 0.10.
|
||||||
* Tue Aug 24 2004 - sbrabec@suse.cz
|
* Tue Aug 24 2004 sbrabec@suse.cz
|
||||||
- Updated to version 0.7.
|
- Updated to version 0.7.
|
||||||
* Sun Jan 11 2004 - adrian@suse.de
|
* Sun Jan 11 2004 adrian@suse.de
|
||||||
- build as user
|
- build as user
|
||||||
* Thu Aug 07 2003 - sbrabec@suse.cz
|
* Thu Aug 07 2003 sbrabec@suse.cz
|
||||||
- Updated to actual CVS snapshot.
|
- Updated to actual CVS snapshot.
|
||||||
- Prefix changed to /opt/gnome (now depends on gnome-vfs).
|
- Prefix changed to /opt/gnome (now depends on gnome-vfs).
|
||||||
* Tue Jul 29 2003 - ro@suse.de
|
* Tue Jul 29 2003 ro@suse.de
|
||||||
- added gnome-filesystem to neededforbuild
|
- added gnome-filesystem to neededforbuild
|
||||||
* Mon Jun 02 2003 - sbrabec@suse.cz
|
* Mon Jun 02 2003 sbrabec@suse.cz
|
||||||
- Initial SuSE package.
|
- Initial SuSE package.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user