Compare commits
9 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| 297c8a6470 | |||
| 007aebacc9 | |||
| 9116124114 | |||
| 1b4f670bfa | |||
| ce782faa03 | |||
| 4684572f36 | |||
| 278ca53a7b | |||
| af92f89886 | |||
| 5b8871c25d |
BIN
libvisio-0.1.7.tar.xz
LFS
BIN
libvisio-0.1.7.tar.xz
LFS
Binary file not shown.
3
libvisio-0.1.9.tar.xz
Normal file
3
libvisio-0.1.9.tar.xz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4a61d086daa3f5c9db8a3fd1b6dbfc29ba756057aa6b3cc23878fd4854362af9
|
||||
size 2007560
|
||||
@@ -1,3 +1,45 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 22 12:24:26 UTC 2025 - Fridrich Strba <fstrba@suse.com>
|
||||
|
||||
- version update to 0.1.9
|
||||
* Implement displaying Angle TextField (tdf#126292)
|
||||
* Correctly display Text Background for VSD 6 and 11 format
|
||||
(tdf#126292)
|
||||
* Better handling of theme colors (tdf#168475)
|
||||
- Removed patch:
|
||||
* libvisio-optional.patch
|
||||
+ this version used std::optional instead
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 11 01:14:17 UTC 2025 - Fridrich Strba <fstrba@suse.com>
|
||||
|
||||
- Added patch:
|
||||
* libvisio-optional.patch
|
||||
+ fix build with wider range of Boost.Optional versions
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 11 00:40:55 UTC 2025 - Fridrich Strba <fstrba@suse.com>
|
||||
|
||||
- Make gcc >= 13 the baseline
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 2 14:24:53 UTC 2025 - pgajdos@suse.com
|
||||
|
||||
- version update to 0.1.8
|
||||
* tests: Fix build with libxml 2.12
|
||||
* Add support for simple solid fill styles
|
||||
* Add support for TextBackground from SheetStyle (tdf136564)
|
||||
* Improve Arrowheads appearance (tdf#126402)
|
||||
* Fix reading FillStyleLst and TextBkgnd from shape (tdf#154379)
|
||||
* Add support to DrawingUnits types (tdf#154379)
|
||||
* Visio5: Provide cellType to collector in readTextField
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 26 22:52:59 UTC 2024 - Jan Engelhardt <jengelh@inai.de>
|
||||
|
||||
- libvisio testsuite in combination with ICU 76.1 requires UTF-8
|
||||
locale during %check [boo#1232061]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Aug 18 07:19:54 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package libvisio
|
||||
#
|
||||
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2025 SUSE LLC and contributors
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -16,9 +16,13 @@
|
||||
#
|
||||
|
||||
|
||||
%{!?make_build:%global make_build make %{?_smp_mflags}}
|
||||
%define libname libvisio-0_1-1
|
||||
%if 0%{?suse_version} < 1500 || 0%{?gcc_version} < 13
|
||||
%define with_gcc 13
|
||||
%endif
|
||||
Name: libvisio
|
||||
Version: 0.1.7
|
||||
Version: 0.1.9
|
||||
Release: 0
|
||||
Summary: Library for parsing the MS Visio file format structure
|
||||
License: MPL-2.0
|
||||
@@ -27,7 +31,8 @@ URL: https://www.freedesktop.org/wiki/Software/libvisio
|
||||
Source0: http://dev-www.libreoffice.org/src/%{name}/%{name}-%{version}.tar.xz
|
||||
BuildRequires: doxygen
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: gcc-c++
|
||||
BuildRequires: gcc%{?with_gcc}
|
||||
BuildRequires: gcc%{?with_gcc}-c++
|
||||
BuildRequires: gperf
|
||||
BuildRequires: help2man
|
||||
BuildRequires: pkgconfig
|
||||
@@ -84,16 +89,20 @@ Group: Productivity/Publishing/Word
|
||||
This package contains tools to work with documents in MS Visio file-format.
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
%autosetup -p1
|
||||
|
||||
%build
|
||||
%if 0%{?with_gcc}
|
||||
export CXX=g++-%{with_gcc}
|
||||
export CC=gcc-%{with_gcc}
|
||||
%endif
|
||||
export CXXFLAGS="%{optflags} -fvisibility-inlines-hidden"
|
||||
%configure \
|
||||
--disable-werror \
|
||||
--disable-static \
|
||||
--disable-silent-rules \
|
||||
--docdir=%{_docdir}/%{name}-devel/html
|
||||
make %{?_smp_mflags}
|
||||
%make_build
|
||||
|
||||
%install
|
||||
%make_install
|
||||
@@ -111,7 +120,8 @@ cp -p AUTHORS COPYING.* ChangeLog %{buildroot}%{_docdir}/%{name}-devel/
|
||||
%fdupes -s %{buildroot}
|
||||
|
||||
%check
|
||||
make check %{?_smp_mflags}
|
||||
export LANG=C.UTF-8
|
||||
%make_build check
|
||||
|
||||
%post -n %{libname} -p /sbin/ldconfig
|
||||
%postun -n %{libname} -p /sbin/ldconfig
|
||||
|
||||
Reference in New Issue
Block a user