Compare commits
No commits in common. "c8s" and "c9-beta" have entirely different histories.
3
.gitignore
vendored
3
.gitignore
vendored
@ -1,2 +1 @@
|
|||||||
SOURCES/libwpd-0.10.2.tar.xz
|
SOURCES/libwpd-0.10.3.tar.xz
|
||||||
/libwpd-0.10.2.tar.xz
|
|
||||||
|
1
.libwpd.metadata
Normal file
1
.libwpd.metadata
Normal file
@ -0,0 +1 @@
|
|||||||
|
c1254f05b2318c160d836e5583c221386db50dd2 SOURCES/libwpd-0.10.3.tar.xz
|
@ -1,29 +0,0 @@
|
|||||||
diff -ru libwpd-0.10.2/src/lib/WP6ContentListener.cpp libwpd-0.10.2.new/src/lib/WP6ContentListener.cpp
|
|
||||||
--- libwpd-0.10.2/src/lib/WP6ContentListener.cpp 2017-09-08 18:04:25.000000000 +0100
|
|
||||||
+++ libwpd-0.10.2.new/src/lib/WP6ContentListener.cpp 2018-10-30 10:54:22.326697162 +0000
|
|
||||||
@@ -1311,7 +1311,10 @@
|
|
||||||
m_ps->m_tableDefinition.m_columnsProperties.clear();
|
|
||||||
|
|
||||||
// pull a table definition off of our stack
|
|
||||||
- m_parseState->m_currentTable = m_parseState->m_tableList[m_parseState->m_nextTableIndice++];
|
|
||||||
+ auto index = m_parseState->m_nextTableIndice++;
|
|
||||||
+ if (index >= m_parseState->m_tableList.size())
|
|
||||||
+ throw ParseException();
|
|
||||||
+ m_parseState->m_currentTable = m_parseState->m_tableList[index];
|
|
||||||
if (!m_parseState->m_currentTable)
|
|
||||||
throw ParseException();
|
|
||||||
m_parseState->m_currentTable->makeBordersConsistent();
|
|
||||||
diff -ru libwpd-0.10.2/src/lib/WPXTable.h libwpd-0.10.2.new/src/lib/WPXTable.h
|
|
||||||
--- libwpd-0.10.2/src/lib/WPXTable.h 2015-12-30 08:27:30.000000000 +0000
|
|
||||||
+++ libwpd-0.10.2.new/src/lib/WPXTable.h 2018-10-30 10:55:41.264362182 +0000
|
|
||||||
@@ -92,6 +92,10 @@
|
|
||||||
{
|
|
||||||
m_tableList->push_back(table);
|
|
||||||
}
|
|
||||||
+ size_t size() const
|
|
||||||
+ {
|
|
||||||
+ return m_tableList->size();
|
|
||||||
+ }
|
|
||||||
|
|
||||||
private:
|
|
||||||
void release();
|
|
25
SOURCES/libwpd-gcc11.patch
Normal file
25
SOURCES/libwpd-gcc11.patch
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
diff --git a/src/lib/WPXContentListener.cpp b/src/lib/WPXContentListener.cpp
|
||||||
|
index ab0f9b1..0b559e6 100644
|
||||||
|
--- a/src/lib/WPXContentListener.cpp
|
||||||
|
+++ b/src/lib/WPXContentListener.cpp
|
||||||
|
@@ -23,6 +23,7 @@
|
||||||
|
* Corel Corporation or Corel Corporation Limited."
|
||||||
|
*/
|
||||||
|
|
||||||
|
+#include <cstddef>
|
||||||
|
#include "WPXContentListener.h"
|
||||||
|
#include "WPXPageSpan.h"
|
||||||
|
#include "libwpd_internal.h"
|
||||||
|
diff --git a/src/lib/WPXTable.cpp b/src/lib/WPXTable.cpp
|
||||||
|
index 0ad202a..3ff35e1 100644
|
||||||
|
--- a/src/lib/WPXTable.cpp
|
||||||
|
+++ b/src/lib/WPXTable.cpp
|
||||||
|
@@ -25,6 +25,8 @@
|
||||||
|
* Corel Corporation or Corel Corporation Limited."
|
||||||
|
*/
|
||||||
|
|
||||||
|
+#include <cstddef>
|
||||||
|
+
|
||||||
|
#include "WPXTable.h"
|
||||||
|
|
||||||
|
#include "libwpd_internal.h"
|
@ -2,19 +2,22 @@
|
|||||||
|
|
||||||
Name: libwpd
|
Name: libwpd
|
||||||
Summary: A library for import of WordPerfect documents
|
Summary: A library for import of WordPerfect documents
|
||||||
Version: 0.10.2
|
Version: 0.10.3
|
||||||
Release: 2%{?dist}
|
Release: 10%{?dist}
|
||||||
Source: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.xz
|
Source: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.xz
|
||||||
|
Patch0: %{name}-gcc11.patch
|
||||||
URL: http://libwpd.sf.net/
|
URL: http://libwpd.sf.net/
|
||||||
License: LGPLv2+ or MPLv2.0
|
License: LGPLv2+ or MPLv2.0
|
||||||
|
|
||||||
BuildRequires: boost-devel
|
BuildRequires: boost-devel
|
||||||
BuildRequires: doxygen
|
BuildRequires: doxygen
|
||||||
|
BuildRequires: gcc-c++
|
||||||
BuildRequires: help2man
|
BuildRequires: help2man
|
||||||
BuildRequires: pkgconfig(librevenge-0.0)
|
BuildRequires: pkgconfig(librevenge-0.0)
|
||||||
|
BuildRequires: pkgconfig(librevenge-generators-0.0)
|
||||||
|
BuildRequires: pkgconfig(librevenge-stream-0.0)
|
||||||
BuildRequires: pkgconfig(zlib)
|
BuildRequires: pkgconfig(zlib)
|
||||||
|
BuildRequires: make
|
||||||
Patch0: 0001-Resolves-rhbz-1643752-bounds-check-m_currentTable-ac.patch
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
%{name} is a library for import of WordPerfect documents.
|
%{name} is a library for import of WordPerfect documents.
|
||||||
@ -45,13 +48,13 @@ The %{name}-doc package contains API documentation for %{name}.
|
|||||||
%autosetup -p1
|
%autosetup -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%configure --disable-static --disable-werror --disable-silent-rules
|
%configure --disable-static --disable-silent-rules
|
||||||
sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
|
sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
|
||||||
sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
|
sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
|
||||||
make %{?_smp_mflags}
|
%make_build
|
||||||
|
|
||||||
%install
|
%install
|
||||||
make DESTDIR=$RPM_BUILD_ROOT install
|
%make_install
|
||||||
rm -f $RPM_BUILD_ROOT/%{_libdir}/*.la
|
rm -f $RPM_BUILD_ROOT/%{_libdir}/*.la
|
||||||
# we install API docs directly from build
|
# we install API docs directly from build
|
||||||
rm -rf $RPM_BUILD_ROOT/%{_docdir}/%{name}
|
rm -rf $RPM_BUILD_ROOT/%{_docdir}/%{name}
|
||||||
@ -64,8 +67,7 @@ done
|
|||||||
install -m 0755 -d %{buildroot}/%{_mandir}/man1
|
install -m 0755 -d %{buildroot}/%{_mandir}/man1
|
||||||
install -m 0644 wpd2*.1 %{buildroot}/%{_mandir}/man1
|
install -m 0644 wpd2*.1 %{buildroot}/%{_mandir}/man1
|
||||||
|
|
||||||
%post -p /sbin/ldconfig
|
%ldconfig_scriptlets
|
||||||
%postun -p /sbin/ldconfig
|
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%doc CREDITS NEWS README
|
%doc CREDITS NEWS README
|
||||||
@ -93,8 +95,46 @@ install -m 0644 wpd2*.1 %{buildroot}/%{_mandir}/man1
|
|||||||
%doc docs/%{name}.png
|
%doc docs/%{name}.png
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Tue Oct 30 2018 Caolán McNamara <caolanm@redhat.com> - 0.10.2-2
|
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 0.10.3-10
|
||||||
- Resolves: rhbz#1644276 crash in specific wpd file
|
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
||||||
|
Related: rhbz#1991688
|
||||||
|
|
||||||
|
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 0.10.3-9
|
||||||
|
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
||||||
|
|
||||||
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.10.3-8
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Nov 04 2020 Jeff Law <law@redhat.com> - 0.10.3-7
|
||||||
|
- Fix missing #includes for gcc-11
|
||||||
|
|
||||||
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.10.3-6
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jul 14 2020 Tom Stellard <tstellar@redhat.com> - 0.10.3-5
|
||||||
|
- Use make macros
|
||||||
|
- https://fedoraproject.org/wiki/Changes/UseMakeBuildInstallMacro
|
||||||
|
|
||||||
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.10.3-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.10.3-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.10.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Dec 29 2018 David Tardon <dtardon@redhat.com> - 0.10.3-1
|
||||||
|
- new upstream release
|
||||||
|
|
||||||
|
* Tue Oct 30 2018 Caolán McNamara <caolanm@redhat.com> - 0.10.2-4
|
||||||
|
- Resolves: rhbz#1643752 crash in specific wpd file
|
||||||
|
|
||||||
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.10.2-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.10.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
* Tue Sep 12 2017 David Tardon <dtardon@redhat.com> - 0.10.2-1
|
* Tue Sep 12 2017 David Tardon <dtardon@redhat.com> - 0.10.2-1
|
||||||
- new upstream release
|
- new upstream release
|
@ -1,6 +0,0 @@
|
|||||||
--- !Policy
|
|
||||||
product_versions:
|
|
||||||
- rhel-8
|
|
||||||
decision_context: osci_compose_gate
|
|
||||||
rules:
|
|
||||||
- !PassingTestCaseRule {test_case_name: desktop-qe.desktop-ci.tier1-gating.functional}
|
|
Loading…
Reference in New Issue
Block a user