From 98fe841c8e0a7963607f48ab62b776c7cf61b65d28809cc91f6b13f8147e2535 Mon Sep 17 00:00:00 2001 From: Fridrich Strba Date: Tue, 29 Dec 2015 20:11:37 +0000 Subject: [PATCH 1/2] libvisio 0.1.5 OBS-URL: https://build.opensuse.org/package/show/LibreOffice:Factory/libvisio?expand=0&rev=36 --- libvisio-0.1.4.tar.xz | 3 --- libvisio-0.1.5.tar.xz | 3 +++ libvisio.changes | 10 ++++++++++ libvisio.spec | 2 +- 4 files changed, 14 insertions(+), 4 deletions(-) delete mode 100644 libvisio-0.1.4.tar.xz create mode 100644 libvisio-0.1.5.tar.xz diff --git a/libvisio-0.1.4.tar.xz b/libvisio-0.1.4.tar.xz deleted file mode 100644 index 7897e9b..0000000 --- a/libvisio-0.1.4.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0c1b1b34382aaeb6dad8077d0bfb153cad7de6229ce59c99e6523a88ffd01038 -size 502940 diff --git a/libvisio-0.1.5.tar.xz b/libvisio-0.1.5.tar.xz new file mode 100644 index 0000000..bb72ec9 --- /dev/null +++ b/libvisio-0.1.5.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:430a067903660bb1b97daf4b045e408a1bb75ca45e615cf05fb1a4da65fc5a8c +size 504196 diff --git a/libvisio.changes b/libvisio.changes index 004bd6d..f4074e1 100644 --- a/libvisio.changes +++ b/libvisio.changes @@ -1,3 +1,13 @@ +------------------------------------------------------------------- +Tue Dec 29 20:06:55 UTC 2015 - fstrba@suse.com + +- Version bump to 0.1.5 + * Rewrite text output to avoid empty spans and to make the + function a bit more readable for common mortal (wo)man. + * Initial emulation of line rounding property (tdf#90603). + * Make --help output of all command line tools more + help2man-friendly. + ------------------------------------------------------------------- Thu Dec 24 09:30:28 UTC 2015 - fstrba@suse.com diff --git a/libvisio.spec b/libvisio.spec index bd5f266..2d9bc5e 100644 --- a/libvisio.spec +++ b/libvisio.spec @@ -18,7 +18,7 @@ %define libname libvisio-0_1-1 Name: libvisio -Version: 0.1.4 +Version: 0.1.5 Release: 0 Summary: Library for parsing the MS Visio file format structure License: MPL-2.0 From 0c674c8a22d63453d03a66908f05f1770092f0317c6a96958c0a2b56c95952f1 Mon Sep 17 00:00:00 2001 From: Fridrich Strba Date: Wed, 30 Dec 2015 09:16:29 +0000 Subject: [PATCH 2/2] OBS-URL: https://build.opensuse.org/package/show/LibreOffice:Factory/libvisio?expand=0&rev=37 --- libvisio.changes | 5 +++++ libvisio.spec | 10 +++++++++- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/libvisio.changes b/libvisio.changes index f4074e1..7b4dd45 100644 --- a/libvisio.changes +++ b/libvisio.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Dec 30 09:15:48 UTC 2015 - fstrba@suse.com + +- Generate manpages for the tools in libvisio-tool package + ------------------------------------------------------------------- Tue Dec 29 20:06:55 UTC 2015 - fstrba@suse.com diff --git a/libvisio.spec b/libvisio.spec index 2d9bc5e..abd8d18 100644 --- a/libvisio.spec +++ b/libvisio.spec @@ -31,6 +31,7 @@ BuildRequires: doxygen BuildRequires: fdupes BuildRequires: gcc-c++ BuildRequires: gperf +BuildRequires: help2man BuildRequires: libicu-devel BuildRequires: librevenge-devel >= 0.0.0 BuildRequires: libxml2-devel @@ -88,13 +89,19 @@ export CXXFLAGS="%{optflags} -fvisibility-inlines-hidden" --disable-werror \ --disable-static \ --docdir=%{_docdir}/%{name}-devel/html -make %{?_smp_mflags} V=1 +make %{?_smp_mflags} %install make DESTDIR=%{buildroot} install %{?_smp_mflags} find %{buildroot} -type f -name "*.la" -delete -print +mkdir -p %{buildroot}%{_mandir}/man1 +for i in %{buildroot}%{_bindir}/*; do + LD_LIBRARY_PATH=%{buildroot}%{_libdir} \ + help2man -N -o %{buildroot}%{_mandir}/man1/$(basename $i).1 $i +done + cp -p AUTHORS COPYING.* ChangeLog %{buildroot}%{_docdir}/%{name}-devel/ %fdupes -s %{buildroot} @@ -127,5 +134,6 @@ make check %{?_smp_mflags} %defattr(-,root,root) %doc AUTHORS COPYING.* ChangeLog %{_bindir}/* +%{_mandir}/man1/*.1* %changelog