dtardon pushed to libetonyek (master). "new upstream release 0.1.2"

notifications at fedoraproject.org notifications at fedoraproject.org
Wed May 20 13:42:55 UTC 2015


From d1401a9459f54a72b92f86630a65911e5fb6fd95 Mon Sep 17 00:00:00 2001
From: David Tardon <dtardon at redhat.com>
Date: Wed, 20 May 2015 15:20:00 +0200
Subject: new upstream release 0.1.2


diff --git a/.gitignore b/.gitignore
index 31d1edc..337edbd 100644
--- a/.gitignore
+++ b/.gitignore
@@ -5,3 +5,4 @@
 /libetonyek-0.0.4.tar.xz
 /libetonyek-0.1.0.tar.xz
 /libetonyek-0.1.1.tar.xz
+/libetonyek-0.1.2.tar.xz
diff --git a/libetonyek.spec b/libetonyek.spec
index d1c8ac3..78cc1b5 100644
--- a/libetonyek.spec
+++ b/libetonyek.spec
@@ -1,9 +1,9 @@
 %global apiversion 0.1
 
 Name: libetonyek
-Version: 0.1.1
-Release: 5%{?dist}
-Summary: A library for import of Apple Keynote presentations
+Version: 0.1.2
+Release: 1%{?dist}
+Summary: A library for import of Apple iWork documents
 
 License: MPLv2.0
 URL: http://wiki.documentfoundation.org/DLP/Libraries/libetonyek
@@ -11,6 +11,7 @@ Source: http://dev-www.libreoffice.org/src/%{name}/%{name}-%{version}.tar.xz
 
 BuildRequires: boost-devel
 BuildRequires: doxygen
+BuildRequires: glm-devel
 BuildRequires: gperf
 BuildRequires: help2man
 BuildRequires: pkgconfig(cppunit)
@@ -19,9 +20,10 @@ BuildRequires: pkgconfig(libxml-2.0)
 BuildRequires: pkgconfig(zlib)
 
 %description
-libetonyek is library providing ability to interpret and import Apple
-Keynote presentations into various applications. Only version 5 is
-supported at the moment, although versions 2-4 should work.
+%{name} is library for import of documents from Apple iWork applications
+(Keynote, Pages and Numbers). It can only import the older format
+(Keynote 2-5, Pages 4, Numbers 2). The support for Pages and Numbers is
+only minimal at the moment.
 
 %package devel
 Summary: Development files for %{name}
@@ -39,12 +41,12 @@ BuildArch: noarch
 The %{name}-doc package contains documentation files for %{name}.
 
 %package tools
-Summary: Tools to transform Apple Keynote presentations into other formats
+Summary: Tools to transform Apple iWork documents into other formats
 Requires: %{name}%{?_isa} = %{version}-%{release}
 
 %description tools
-Tools to transform Apple Keynote presentations into other formats.
-Currently supported: XHTML, raw, text.
+Tools to transform Apple iWork documents into other formats. Currently
+supported: CSV, HTML, SVG, text, and raw.
 
 %prep
 %autosetup -p1
@@ -59,22 +61,25 @@ make %{?_smp_mflags}
 
 export LD_LIBRARY_PATH=`pwd`/src/lib/.libs${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}
 help2man -N -n 'debug the conversion library' -o key2raw.1 ./src/conv/raw/.libs/key2raw
+help2man -N -n 'debug the conversion library' -o numbers2raw.1 ./src/conv/raw/.libs/numbers2raw
+help2man -N -n 'debug the conversion library' -o pages2raw.1 ./src/conv/raw/.libs/pages2raw
+help2man -N -n 'convert Numbers spreadsheet into CSV' -o numbers2csv.1 ./src/conv/csv/.libs/numbers2csv
+help2man -N -n 'convert Pages document into HTML' -o pages2html.1 ./src/conv/html/.libs/pages2html
 help2man -N -n 'convert Keynote presentation into SVG' -o key2xhtml.1 ./src/conv/svg/.libs/key2xhtml
 help2man -N -n 'convert Keynote presentation into plain text' -o key2text.1 ./src/conv/text/.libs/key2text
+help2man -N -n 'convert Numbers spreadsheet into plain text' -o numbers2text.1 ./src/conv/text/.libs/numbers2text
+help2man -N -n 'convert Pages document into plain text' -o pages2text.1 ./src/conv/text/.libs/pages2text
 
 %install
 make install DESTDIR=%{buildroot}
 rm -f %{buildroot}/%{_libdir}/*.la
 # we install API docs directly from build
 rm -rf %{buildroot}/%{_docdir}/%{name}
-# these are only skeletons at the moment
-rm -f %{buildroot}%{_bindir}/numbers2* %{buildroot}%{_bindir}/pages*
 
 install -m 0755 -d %{buildroot}/%{_mandir}/man1
-install -m 0644 key2*.1 %{buildroot}/%{_mandir}/man1
+install -m 0644 key2*.1 numbers2*.1 pages2*.1 %{buildroot}/%{_mandir}/man1
 
 %post -p /sbin/ldconfig
-
 %postun -p /sbin/ldconfig
 
 %check
@@ -99,11 +104,26 @@ make %{?_smp_mflags} check
 %{_bindir}/key2raw
 %{_bindir}/key2text
 %{_bindir}/key2xhtml
+%{_bindir}/numbers2csv
+%{_bindir}/numbers2raw
+%{_bindir}/numbers2text
+%{_bindir}/pages2html
+%{_bindir}/pages2raw
+%{_bindir}/pages2text
 %{_mandir}/man1/key2raw.1*
 %{_mandir}/man1/key2text.1*
 %{_mandir}/man1/key2xhtml.1*
+%{_mandir}/man1/numbers2csv.1*
+%{_mandir}/man1/numbers2raw.1*
+%{_mandir}/man1/numbers2text.1*
+%{_mandir}/man1/pages2html.1*
+%{_mandir}/man1/pages2raw.1*
+%{_mandir}/man1/pages2text.1*
 
 %changelog
+* Wed May 20 2015 David Tardon <dtardon at redhat.com> - 0.1.2-1
+- new upstream release
+
 * Sat May 02 2015 Kalev Lember <kalevlember at gmail.com> - 0.1.1-5
 - Rebuilt for GCC 5 C++11 ABI change
 
diff --git a/sources b/sources
index d7634e9..bbc9a4a 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-7adbc34bb4a33e26688c862e154a0d29  libetonyek-0.1.1.tar.xz
+c74195efe487a495aba090bf39d072d3  libetonyek-0.1.2.tar.xz
-- 
cgit v0.10.2


	http://pkgs.fedoraproject.org/cgit/libetonyek.git/commit/?h=master&id=d1401a9459f54a72b92f86630a65911e5fb6fd95


More information about the scm-commits mailing list