This commit is contained in:
parent
15a7b42815
commit
1d0793c54a
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:8abda2b30ecccb3aedc9f465b667787b4fca9ae80b18e3292901c57ffc484747
|
|
||||||
size 595150
|
|
3
gnome-doc-utils-0.13.1.tar.bz2
Normal file
3
gnome-doc-utils-0.13.1.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:ed052e5213793c663a1fe6439d3d15751b54849885fb21288142e6b486554ce4
|
||||||
|
size 603540
|
@ -1,11 +0,0 @@
|
|||||||
--- trunk/xml2po/xml2po.py 2007/03/02 09:41:10 892
|
|
||||||
+++ trunk/xml2po/xml2po.py 2008/07/13 23:14:50 1109
|
|
||||||
@@ -507,7 +507,7 @@
|
|
||||||
if mode == 'merge':
|
|
||||||
translation = getTranslation(outtxt, isSpacePreserveNode(node))
|
|
||||||
else:
|
|
||||||
- translation = outtxt
|
|
||||||
+ translation = outtxt.decode('utf-8')
|
|
||||||
|
|
||||||
starttag = startTagForNode(node)
|
|
||||||
endtag = endTagForNode(node)
|
|
@ -1,3 +1,14 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Aug 30 13:54:40 CEST 2008 - mboman@novell.com
|
||||||
|
|
||||||
|
- Updated to version 0.13.1:
|
||||||
|
+ Fixed UnicodeDecodeError in xml2po
|
||||||
|
+ Correctly handle content and tooltips for links to anchors
|
||||||
|
+ Don't reprocess book titles when title and bookinfo/title exist
|
||||||
|
+ Remove GLib build dependency; include glib-gettext.m4 [bgo#510915]
|
||||||
|
+ Updated translations
|
||||||
|
- Removed gnome-doc-utils-bnc408363-unicodeerror.patch. Fixed upstream.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jul 25 13:54:40 CEST 2008 - vuntz@novell.com
|
Fri Jul 25 13:54:40 CEST 2008 - vuntz@novell.com
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package gnome-doc-utils (Version 0.12.2)
|
# spec file for package gnome-doc-utils (Version 0.13.1)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
@ -23,14 +23,12 @@ BuildRequires: docbook_4 glib2-devel gnome-common intltool libxslt-devel python
|
|||||||
License: GPL v2 or later; LGPL v2.1 or later
|
License: GPL v2 or later; LGPL v2.1 or later
|
||||||
Group: System/GUI/GNOME
|
Group: System/GUI/GNOME
|
||||||
AutoReqProv: on
|
AutoReqProv: on
|
||||||
Version: 0.12.2
|
Version: 0.13.1
|
||||||
Release: 59
|
Release: 1
|
||||||
Summary: A Collection of Documentation Utilities for GNOME
|
Summary: A Collection of Documentation Utilities for GNOME
|
||||||
Source: ftp://ftp.gnome.org/pub/GNOME/sources/gnome-doc-utils/0.8/%{name}-%{version}.tar.bz2
|
Source: ftp://ftp.gnome.org/pub/GNOME/sources/gnome-doc-utils/0.8/%{name}-%{version}.tar.bz2
|
||||||
# PATCH-FIX-OPENSUSE gnome-doc-utils-permissive.patch -- Be permissive for incorrectly formatted docs, so that builds don't fail. Should be removed ASAP.
|
# PATCH-FIX-OPENSUSE gnome-doc-utils-permissive.patch -- Be permissive for incorrectly formatted docs, so that builds don't fail. Should be removed ASAP.
|
||||||
Patch: gnome-doc-utils-permissive.patch
|
Patch: gnome-doc-utils-permissive.patch
|
||||||
# PATCH-FIX-UPSTREAM gnome-doc-utils-bnc408363-unicodeerror.patch bnc408363 bgo437371 vuntz@novell.com -- Fix a UnicodeDecodeError, already applied upstream.
|
|
||||||
Patch1: gnome-doc-utils-bnc408363-unicodeerror.patch
|
|
||||||
Url: http://www.gnome.org
|
Url: http://www.gnome.org
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
Requires: libxml2-python
|
Requires: libxml2-python
|
||||||
@ -99,7 +97,6 @@ Authors:
|
|||||||
%setup -q
|
%setup -q
|
||||||
# This patch is an ugly hack and should be removed ASAP:
|
# This patch is an ugly hack and should be removed ASAP:
|
||||||
%patch
|
%patch
|
||||||
%patch1 -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
# autoreconf fails...
|
# autoreconf fails...
|
||||||
@ -133,6 +130,14 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%{_datadir}/pkgconfig/*.pc
|
%{_datadir}/pkgconfig/*.pc
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Sat Aug 30 2008 mboman@novell.com
|
||||||
|
- Updated to version 0.13.1:
|
||||||
|
+ Fixed UnicodeDecodeError in xml2po
|
||||||
|
+ Correctly handle content and tooltips for links to anchors
|
||||||
|
+ Don't reprocess book titles when title and bookinfo/title exist
|
||||||
|
+ Remove GLib build dependency; include glib-gettext.m4 [bgo#510915]
|
||||||
|
+ Updated translations
|
||||||
|
- Removed gnome-doc-utils-bnc408363-unicodeerror.patch. Fixed upstream.
|
||||||
* Fri Jul 25 2008 vuntz@novell.com
|
* Fri Jul 25 2008 vuntz@novell.com
|
||||||
- Tag patch.
|
- Tag patch.
|
||||||
- Add gnome-doc-utils-bnc408363-unicodeerror.patch to fix an error
|
- Add gnome-doc-utils-bnc408363-unicodeerror.patch to fix an error
|
||||||
|
Loading…
Reference in New Issue
Block a user