commit fbreader for openSUSE:Factory

2018-04-16 Thread root
Hello community,

here is the log from the commit of package fbreader for openSUSE:Factory 
checked in at 2018-04-16 12:47:03

Comparing /work/SRC/openSUSE:Factory/fbreader (Old)
 and  /work/SRC/openSUSE:Factory/.fbreader.new (New)


Package is "fbreader"

Mon Apr 16 12:47:03 2018 rev:14 rq:594675 version:0.99.4

Changes:

--- /work/SRC/openSUSE:Factory/fbreader/fbreader.changes2018-04-04 
11:09:44.286647030 +0200
+++ /work/SRC/openSUSE:Factory/.fbreader.new/fbreader.changes   2018-04-16 
12:47:04.917274954 +0200
@@ -1,0 +2,7 @@
+Wed Apr  4 07:45:35 UTC 2018 - aloi...@gmx.com
+
+- Added fbreader-0.99.4-qt5.patch and switched to Qt5 build
+
+- Spec cleanup
+
+---

New:

  fbreader-0.99.4-qt5.patch



Other differences:
--
++ fbreader.spec ++
--- /var/tmp/diff_new_pack.3B1hb3/_old  2018-04-16 12:47:05.833241631 +0200
+++ /var/tmp/diff_new_pack.3B1hb3/_new  2018-04-16 12:47:05.837241485 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package fbreader
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -35,12 +35,16 @@
 Patch1: fbreader-0.99.4-gcc6-Wno-narrowing.diff
 # PATCH-FIX-UPSTREAM https://github.com/geometer/FBReader/pull/295
 Patch2: FBReader-0.99.4-reproducible.patch
+# PATCH-FEATURE-OPENSUSE fbreader-0.99.4-qt5.patch to use Qt5 libraries, 
courtesy of Arch -- aloi...@gmx.com
+Patch3: fbreader-0.99.4-qt5.patch
 BuildRequires:  expat
 BuildRequires:  fdupes
 BuildRequires:  gcc-c++
 BuildRequires:  pkgconfig
 BuildRequires:  update-desktop-files
-BuildRequires:  pkgconfig(QtGui)
+BuildRequires:  pkgconfig(Qt5Gui)
+BuildRequires:  pkgconfig(Qt5Network)
+BuildRequires:  pkgconfig(Qt5Widgets)
 BuildRequires:  pkgconfig(bzip2)
 BuildRequires:  pkgconfig(enca)
 BuildRequires:  pkgconfig(expat)
@@ -88,21 +92,22 @@
 for writing applications with Zlibrary.
 
 %package -n libzlui%{zl_sover}
-Summary:Qt4 interface module for ZLibrary
+Summary:Qt5 interface module for ZLibrary
 Group:  System/Libraries
 Provides:   zlibrary-ui = %{version}
 Requires:   zlibrary-data >= %{version}
 
 %description -n libzlui%{zl_sover}
-This package provides a Qt4-based UI for ZLibrary.
+This package provides a Qt5-based UI for ZLibrary.
 
 %prep
 %setup -q
 %patch0 -p1
-%if 0%{?suse_version} > 1320
+%if 0%{?suse_version} >= 1500
 %patch1 -p0
 %endif
 %patch2 -p1
+%patch3 -p1
 
 %build
 make %{?_smp_mflags} -C zlibrary/core TARGET_ARCH=desktop LIBDIR=%{_libdir} 
UI_TYPE=dummy
@@ -131,11 +136,13 @@
 
 %fdupes -s %{buildroot}
 
+%if 0%{?suse_version} < 1500
 %post
 %desktop_database_post
 
 %postun
 %desktop_database_postun
+%endif
 
 %post   -n zlibrary%{zl_sover} -p /sbin/ldconfig
 
@@ -163,7 +170,7 @@
 %{_libdir}/libzltext.so.*
 
 %files -n zlibrary-data
-%defattr(-,root,root)
+%defattr(-,root,root,-)
 %{_datadir}/zlibrary/
 
 %files -n zlibrary-devel

++ fbreader-0.99.4-qt5.patch ++
Index: fbreader-0.99.4/zlibrary/ui/src/qt4/network/ZLQtNetworkManager.cpp
===
--- fbreader-0.99.4.orig/zlibrary/ui/src/qt4/network/ZLQtNetworkManager.cpp
+++ fbreader-0.99.4/zlibrary/ui/src/qt4/network/ZLQtNetworkManager.cpp
@@ -24,7 +24,9 @@
 #include 
 #include 
 #include 
+#include 
 
+#include 
 #include 
 #include 
 #include 
@@ -149,12 +151,12 @@ void ZLQtNetworkManager::prepareReply(ZL
QNetworkReply *reply = NULL;
if (!scope.request->postParameters().empty()) {
QByteArray data;
-   QUrl tmp;
+   QUrlQuery tmp;
typedef std::pair string_pair;
foreach (const string_pair &pair, 
scope.request->postParameters()) {
tmp.addQueryItem(QString::fromStdString(pair.first), 
QString::fromStdString(pair.second));
}
-   data = tmp.encodedQuery();
+   data = tmp.query(QUrl::FullyEncoded).toUtf8(); //encodedQuery();
reply = 
const_cast(myManager).post(networkRequest, data);
} else {
reply = 
const_cast(myManager).get(networkRequest);
Index: fbreader-0.99.4/zlibrary/ui/src/qt4/tree/ZLQtItemsListWidget.cpp
===
--- fbreader-0.99.4.orig/zlibrary/ui/src/qt4/tree/ZLQtItemsListWidget.cpp
+++ fbreader-0.99.4/zlibrary/ui/src/qt4/tree/ZLQtItemsListWidget.cpp
@@ -17,14 +17,14 @@
  * 02110-1301, USA.
  */
 
-#include 
-#include 
 #include 
 #include 
 #in

commit fbreader for openSUSE:Factory

2018-04-04 Thread root
Hello community,

here is the log from the commit of package fbreader for openSUSE:Factory 
checked in at 2018-04-04 11:09:14

Comparing /work/SRC/openSUSE:Factory/fbreader (Old)
 and  /work/SRC/openSUSE:Factory/.fbreader.new (New)


Package is "fbreader"

Wed Apr  4 11:09:14 2018 rev:13 rq:593340 version:0.99.4

Changes:

--- /work/SRC/openSUSE:Factory/fbreader/fbreader.changes2016-07-21 
08:19:58.0 +0200
+++ /work/SRC/openSUSE:Factory/.fbreader.new/fbreader.changes   2018-04-04 
11:09:44.286647030 +0200
@@ -1,0 +2,6 @@
+Wed Mar  7 13:09:28 UTC 2018 - bwiedem...@suse.com
+
+- Add FBReader-0.99.4-reproducible.patch to make build reproducible
+  (boo#1041090)
+
+---

New:

  FBReader-0.99.4-reproducible.patch



Other differences:
--
++ fbreader.spec ++
--- /var/tmp/diff_new_pack.etvnuK/_old  2018-04-04 11:09:47.326536867 +0200
+++ /var/tmp/diff_new_pack.etvnuK/_new  2018-04-04 11:09:47.326536867 +0200
@@ -33,6 +33,8 @@
 # PATCH-FIX-OPENSUSE to workaround for build issue via gcc6,
 # see more at https://github.com/geometer/FBReader/issues/289
 Patch1: fbreader-0.99.4-gcc6-Wno-narrowing.diff
+# PATCH-FIX-UPSTREAM https://github.com/geometer/FBReader/pull/295
+Patch2: FBReader-0.99.4-reproducible.patch
 BuildRequires:  expat
 BuildRequires:  fdupes
 BuildRequires:  gcc-c++
@@ -100,6 +102,7 @@
 %if 0%{?suse_version} > 1320
 %patch1 -p0
 %endif
+%patch2 -p1
 
 %build
 make %{?_smp_mflags} -C zlibrary/core TARGET_ARCH=desktop LIBDIR=%{_libdir} 
UI_TYPE=dummy

++ FBReader-0.99.4-reproducible.patch ++
Subject: Sort list of files to make build reproducible
Author: Bernhard M. Wiedemann 
Date: 2017-05-28

https://github.com/geometer/FBReader/pull/295
https://bugzilla.opensuse.org/show_bug.cgi?id=1041090

sort linker input files

when building packages (e.g. for openSUSE Linux)
(random) filesystem order of input files
influences ordering of functions in the output,
thus without the patch, builds (in disposable VMs) would usually differ.

See https://reproducible-builds.org/ for why this matters.

Setting LC_ALL is needed because locales influence how sorting happens.

Index: fbreader-0.99.4/fbreader/Makefile
===
--- fbreader-0.99.4.orig/fbreader/Makefile
+++ fbreader-0.99.4/fbreader/Makefile
@@ -22,7 +22,7 @@ all: .resources
fi; \
done;
@echo -n 'Linking $(TARGET) ...'
-   @$(LD) $(LDFLAGS) -o $(TARGET) `find src -name *.o` $(TEXT_LIBS) 
$(CORE_LIBS) $(ZLUI_LIB) -lsqlite3
+   @$(LD) $(LDFLAGS) -o $(TARGET) `find src -name *.o | LC_ALL=C sort` 
$(TEXT_LIBS) $(CORE_LIBS) $(ZLUI_LIB) -lsqlite3
@echo ' OK'
 
 FBSHAREDIR = $(DESTDIR)$(SHAREDIR)/FBReader



commit fbreader for openSUSE:Factory

2016-07-20 Thread h_root
Hello community,

here is the log from the commit of package fbreader for openSUSE:Factory 
checked in at 2016-07-21 08:19:56

Comparing /work/SRC/openSUSE:Factory/fbreader (Old)
 and  /work/SRC/openSUSE:Factory/.fbreader.new (New)


Package is "fbreader"

Changes:

--- /work/SRC/openSUSE:Factory/fbreader/fbreader.changes2012-11-06 
16:05:27.0 +0100
+++ /work/SRC/openSUSE:Factory/.fbreader.new/fbreader.changes   2016-07-21 
08:19:58.0 +0200
@@ -1,0 +2,53 @@
+Thu Jun 23 17:33:29 UTC 2016 - dap.darkn...@gmail.com
+
+- Added fbreader-0.99.4-gcc6-Wno-narrowing.diff as a workaround
+  for https://github.com/geometer/FBReader/issues/289
+- Added %%description tag & noarch for zlibrary-data subpackage.
+
+---
+Sun Jun 19 19:57:17 UTC 2016 - dap.darkn...@gmail.com
+
+- Removed README.SuSE because there is only Qt GUI now.
+- pkgconfig().
+
+---
+Sun Jun 19 13:44:31 UTC 2016 - jeng...@inai.de
+
+- Fixup shared library packaging
+
+---
+Sun May 25 10:42:36 UTC 2014 - t...@gmx.com
+
+- Update to version 0.99.4
+  * Fixed bug with freezing at start
+  * List of network libraries is updated now from fbreader.org
+  * Fixed working with secured connections (now authentification and books 
buying on LitRes.ru catalog works)
+  * Image support for Ms-Word doc format
+  * Esperanto interface localization has been added (by Katarína Nosková)
+  * Hyphenation patterns for Polish (by Tomasz Długosz)
+  * Polish interface localization (by Tomasz Długosz)
+  * Speed of library scanning has been increased
+  * Plugin for reading MsWord (*.doc) books
+  * Fixed zip reading for several ePub books (e.g. for "die Zeit" ePubs)
+  * Support for book series in ePubs with point format (e.g. "2.5") has been 
added
+  * Fixed image support in RTF books
+  * Encoding & language recognizing has been improved
+  * As from version 0.99.0 FBReader for Linux supports qt4 interface only
+  * Chinese text drawing optimization (thanks to You Sheng (SmartDevices) for 
idea)
+  * Mobipocket image processing has been fixed
+  * Standard file open dialog is now used instead of the old specially written 
for FBReader
+  * CSS processing for multi-xhtml epubs has been fixed (in 0.12.* the CSS 
loaded for the first xhtml was also applied for all other xhtmls)
+  * Chinese encodings detection has been improved
+  * Language/encoding detection for small files has been improved
+  * A problem with TOC in newest O'Reilly ePubs has been fixed
+  * A detection of book format by mime-type (not by file extension) has been 
partially implemented (in Gtk+ version only)
+  * Polish interface localization has been added (by Rafał Bakuła)
+- Updated FBReader.desktop
+- Cleaned spec file
+  * Removed GTK UI version build because it's broken an isn't supported anymore
+See https://github.com/geometer/FBReader/issues/222 and the above changelog
+- Dropped unneeded fbreader-0.12.10-c++.patch
+- Added FBReader-0.99.4-fix-crash-with-fb2.zip-files.patch
+  * fixes crashes with fb2.zip files
+  
+---

Old:

  README.SuSE
  fbreader-0.12.10-c++.patch
  fbreader-0.12.10.tar.bz2

New:

  FBReader-0.99.4-fix-crash-with-fb2.zip-files.patch
  fbreader-0.99.4-gcc6-Wno-narrowing.diff
  fbreader-sources-0.99.4.tgz



Other differences:
--
++ fbreader.spec ++
--- /var/tmp/diff_new_pack.J6D99a/_old  2016-07-21 08:19:59.0 +0200
+++ /var/tmp/diff_new_pack.J6D99a/_new  2016-07-21 08:19:59.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package fbreader
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,132 +16,107 @@
 #
 
 
+%definezl_sover 0_99
 Name:   fbreader
-Version:0.12.10
+Version:0.99.4
 Release:0
 Summary:E-book reader
 License:GPL-2.0+
 Group:  Productivity/Other
 Url:http://www.fbreader.org/
-Source0:fbreader-%{version}.tar.bz2
+Source0:%{name}-sources-%{version}.tgz
 Source1:FBReader.desktop
-Source2:README.SuSE
 Source3:fbreader.xml
-# PATCH-FIX-UPSTREAM fbreader-0.12.10-c++.patch 
http://www.fbreader.org/mantis/view.php?id=283 -- fix build with gcc 4.5
-Patch0: fbreader-0.12.10-c++.patch
-Requires:   zlibrary = %{version}
-%if 0%{?suse_version}
-BuildRe

commit fbreader for openSUSE:Factory

2012-11-06 Thread h_root
Hello community,

here is the log from the commit of package fbreader for openSUSE:Factory 
checked in at 2012-11-06 16:05:24

Comparing /work/SRC/openSUSE:Factory/fbreader (Old)
 and  /work/SRC/openSUSE:Factory/.fbreader.new (New)


Package is "fbreader", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/fbreader/fbreader.changes2012-02-20 
16:10:25.0 +0100
+++ /work/SRC/openSUSE:Factory/.fbreader.new/fbreader.changes   2012-11-06 
16:05:27.0 +0100
@@ -1,0 +2,5 @@
+Tue Oct 16 19:26:18 UTC 2012 - co...@suse.com
+
+- add explicit buildrequire on libbz2-devel
+
+---



Other differences:
--
++ fbreader.spec ++
--- /var/tmp/diff_new_pack.PmLMtI/_old  2012-11-06 16:05:28.0 +0100
+++ /var/tmp/diff_new_pack.PmLMtI/_new  2012-11-06 16:05:28.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package fbreader
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,14 +16,13 @@
 #
 
 
-
 Name:   fbreader
 Version:0.12.10
-Release:1
-License:GPL-2.0+
+Release:0
 Summary:E-book reader
-Url:http://www.fbreader.org/
+License:GPL-2.0+
 Group:  Productivity/Other
+Url:http://www.fbreader.org/
 Source0:fbreader-%{version}.tar.bz2
 Source1:FBReader.desktop
 Source2:README.SuSE
@@ -39,6 +38,7 @@
 BuildRequires:  fdupes
 BuildRequires:  fribidi-devel
 BuildRequires:  gcc-c++
+BuildRequires:  libbz2-devel
 BuildRequires:  libcurl-devel
 BuildRequires:  libexpat-devel
 BuildRequires:  liblinebreak-devel


-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit fbreader for openSUSE:Factory

2012-02-20 Thread h_root
Hello community,

here is the log from the commit of package fbreader for openSUSE:Factory 
checked in at 2012-02-20 16:10:18

Comparing /work/SRC/openSUSE:Factory/fbreader (Old)
 and  /work/SRC/openSUSE:Factory/.fbreader.new (New)


Package is "fbreader", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/fbreader/fbreader.changes2011-09-23 
01:57:23.0 +0200
+++ /work/SRC/openSUSE:Factory/.fbreader.new/fbreader.changes   2012-02-20 
16:10:25.0 +0100
@@ -1,0 +2,11 @@
+Mon Feb 13 10:46:01 UTC 2012 - co...@suse.com
+
+- patch license to follow spdx.org standard
+
+---
+Sun Sep 18 17:17:12 UTC 2011 - jeng...@medozas.de
+
+- Apply packaging guidelines (remove redundant/obsolete
+  tags/sections from specfile, etc.)
+
+---



Other differences:
--
++ fbreader.spec ++
--- /var/tmp/diff_new_pack.FZsEt1/_old  2012-02-20 16:10:27.0 +0100
+++ /var/tmp/diff_new_pack.FZsEt1/_new  2012-02-20 16:10:27.0 +0100
@@ -19,8 +19,8 @@
 
 Name:   fbreader
 Version:0.12.10
-Release:3
-License:GPLv2+
+Release:1
+License:GPL-2.0+
 Summary:E-book reader
 Url:http://www.fbreader.org/
 Group:  Productivity/Other
@@ -84,7 +84,6 @@
 * Screen rotation by 90, 180 and 270 degrees.
 
 %package -n zlibrary
-
 Summary:Cross-platform GUI library
 Group:  Development/Libraries/C and C++
 Requires:   zlibrary-ui = %{version}
@@ -94,7 +93,6 @@
 desktop Linux, Windows, and different Linux-based PDAs.
 
 %package -n zlibrary-devel
-
 Summary:Development files for zlibrary
 Group:  Development/Libraries/C and C++
 Requires:   zlibrary = %{version}
@@ -104,7 +102,6 @@
 for writing applications with Zlibrary.
 
 %package -n zlibrary-ui-gtk
-
 Summary:GTK+ interface module for ZLibrary
 Group:  Development/Libraries/C and C++
 Provides:   zlibrary-ui = %{version}
@@ -113,7 +110,6 @@
 This package provides a GTK+-based UI for ZLibrary.
 
 %package -n zlibrary-ui-qt
-
 Summary:Qt4 interface module for ZLibrary
 Group:  Development/Libraries/C and C++
 Provides:   zlibrary-ui = %{version}
@@ -157,9 +153,6 @@
 
 %fdupes -s %{buildroot}
 
-%clean
-rm -rf %{buildroot}
-
 %post
 %if 0%{?suse_version} > 1130
 %desktop_database_post


-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit fbreader for openSUSE:Factory

2011-09-01 Thread h_root

Hello community,

here is the log from the commit of package fbreader for openSUSE:Factory
checked in at Thu Sep 1 16:04:06 CEST 2011.




--- fbreader/fbreader.changes   2011-08-24 00:25:03.0 +0200
+++ /mounts/work_src_done/STABLE/fbreader/fbreader.changes  2011-08-31 
02:57:12.0 +0200
@@ -1,0 +2,6 @@
+Wed Aug 31 00:53:19 UTC 2011 - kirill.kiril...@gmail.com
+
+- cleaned spec using spec-cleaner
+- fixed generic-name-not-in-filelist RPMLINT warning
+
+---
@@ -5 +11 @@
-- use alternatives to select user interface (based of Fedora spec) 
+- used alternatives to select user interface (based of Fedora spec) 

calling whatdependson for head-i586




Other differences:
--
++ fbreader.spec ++
--- /var/tmp/diff_new_pack.meFqMc/_old  2011-09-01 16:03:23.0 +0200
+++ /var/tmp/diff_new_pack.meFqMc/_new  2011-09-01 16:03:23.0 +0200
@@ -18,28 +18,35 @@
 
 
 Name:   fbreader
-Summary:E-book reader
-Group:  Productivity/Other
 Version:0.12.10
-Release:1
+Release:3
 License:GPLv2+
+Summary:E-book reader
 Url:http://www.fbreader.org/
+Group:  Productivity/Other
 Source0:fbreader-%{version}.tar.bz2
 Source1:FBReader.desktop 
 Source2:README.SuSE
 Source3:fbreader.xml
+# PATCH-FIX-UPSTREAM fbreader-0.12.10-c++.patch 
http://www.fbreader.org/mantis/view.php?id=283 -- fix build with gcc 4.5
 Patch0: fbreader-0.12.10-c++.patch
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+Requires:   zlibrary = %{version}
+%if 0%{?suse_version}
 BuildRequires:  update-desktop-files
+%endif
+BuildRequires:  enca-devel
+BuildRequires:  expat
 BuildRequires:  fdupes
-BuildRequires:  enca-devel expat liblinebreak-devel zlib-devel
-BuildRequires:  gcc-c++ gtk2-devel
-BuildRequires:  libqt4-devel
-BuildRequires:  sqlite3-devel
 BuildRequires:  fribidi-devel
+BuildRequires:  gcc-c++
 BuildRequires:  libcurl-devel
 BuildRequires:  libexpat-devel
-Requires:   zlibrary = %{version}-%{release}
+BuildRequires:  liblinebreak-devel
+BuildRequires:  libqt4-devel
+BuildRequires:  sqlite3-devel
+BuildRequires:  zlib-devel
+BuildRequires:  pkgconfig(gtk+-2.0)
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 FBReader is an e-book reader for various platforms.
@@ -80,7 +87,7 @@
 
 Summary:Cross-platform GUI library
 Group:  Development/Libraries/C and C++
-Requires:   zlibrary-ui = %{version}-%{release}
+Requires:   zlibrary-ui = %{version}
 
 %description -n zlibrary
 ZLibrary is a cross-platform library to build applications running on
@@ -90,7 +97,7 @@
 
 Summary:Development files for zlibrary
 Group:  Development/Libraries/C and C++
-Requires:   zlibrary = %{version}-%{release}
+Requires:   zlibrary = %{version}
 
 %description -n zlibrary-devel
 This package contains the libraries amd header files that are needed
@@ -100,7 +107,7 @@
 
 Summary:GTK+ interface module for ZLibrary
 Group:  Development/Libraries/C and C++
-Provides:   zlibrary-ui = %{version}-%{release}
+Provides:   zlibrary-ui = %{version}
 
 %description -n zlibrary-ui-gtk
 This package provides a GTK+-based UI for ZLibrary.
@@ -109,7 +116,7 @@
 
 Summary:Qt4 interface module for ZLibrary
 Group:  Development/Libraries/C and C++
-Provides:   zlibrary-ui = %{version}-%{release}
+Provides:   zlibrary-ui = %{version}
 
 %description -n zlibrary-ui-qt
 This package provides a Qt4-based UI for ZLibrary.
@@ -128,49 +135,54 @@
 make %{?_smp_mflags} -C fbreader TARGET_ARCH=desktop LIBDIR=%{_libdir} 
UI_TYPE=dummy
 
 %install
-make -C zlibrary/core do_install do_install_dev DESTDIR=$RPM_BUILD_ROOT 
TARGET_ARCH=desktop LIBDIR=%{_libdir} UI_TYPE=dummy
-make -C zlibrary/text do_install do_install_dev DESTDIR=$RPM_BUILD_ROOT 
TARGET_ARCH=desktop LIBDIR=%{_libdir} UI_TYPE=dummy
-make -C zlibrary/ui do_install DESTDIR=$RPM_BUILD_ROOT TARGET_ARCH=desktop 
LIBDIR=%{_libdir} UI_TYPE=gtk
-make -C zlibrary/ui do_install DESTDIR=$RPM_BUILD_ROOT TARGET_ARCH=desktop 
LIBDIR=%{_libdir} UI_TYPE=qt4
-make -C fbreader do_install DESTDIR=$RPM_BUILD_ROOT TARGET_ARCH=desktop 
UI_TYPE=dummy
+make -C zlibrary/core do_install do_install_dev DESTDIR=%{buildroot} 
TARGET_ARCH=desktop LIBDIR=%{_libdir} UI_TYPE=dummy
+make -C zlibrary/text do_install do_install_dev DESTDIR=%{buildroot} 
TARGET_ARCH=desktop LIBDIR=%{_libdir} UI_TYPE=dummy
+make -C zlibrary/ui do_install DESTDIR=%{buildroot} TARGET_ARCH=desktop 
LIBDIR=%{_libdir} UI_TYPE=gtk
+make -C zlibrary/ui do_install DESTDIR=%{buildroot} TARGET_ARCH=desktop 
LIBDIR=%{_libdir} UI_TYPE=qt4
+make -C fbreader do_install DESTDIR=%{buildroot} TARGET_ARCH=desktop 
UI_TYPE=dummy
+touch %{buildroot}%{_libdir}/zlibrary/ui/zlui-activ

commit fbreader for openSUSE:Factory

2011-08-24 Thread h_root

Hello community,

here is the log from the commit of package fbreader for openSUSE:Factory
checked in at Wed Aug 24 16:14:41 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /mounts/work_src_done/STABLE/fbreader/fbreader.changes  2011-08-24 
00:25:03.0 +0200
@@ -0,0 +1,236 @@
+---
+Tue Aug 23 21:51:51 UTC 2011 - kirill.kiril...@gmail.com
+
+- split zlibrary and zlibrary-ui packages (based on Fedora spec)
+- use alternatives to select user interface (based of Fedora spec) 
+
+---
+Fri Dec 31 20:07:03 UTC 2010 - kirill.kiril...@gmail.com
+
+- added mime support (fbreader.xml)
+
+---
+Tue Aug 17 22:35:57 UTC 2010 - kirill.kiril...@gmail.com
+
+- added fbreader-0.12.10-c++.patch to fix compilation (from archlinux)
+
+---
+Tue Aug 17 07:29:22 UTC 2010 - kirill.kiril...@gmail.com
+
+- Update to 0.12.10
+  + Processing of external hyperlinks in ePub files has been changed. 
+
+- Changes for 0.12.9
+  + Processing of epub local hyperlinks of form ../dir/file.html has been 
fixed.
+  + Code is now compilable with gcc 4.4.* (missing include directives have 
been added).
+
+- Changes for 0.12.8
+  + Smashwords library support has been improved: purchase links have been 
added.
+  + LitRes library support has been updated: since this version FBReader uses 
an OPDS proxy located at http://data.fbreader.org/ for most operations with the 
LitRes catalog.
+  + Processing of the xhtml hyperlinks in html encoded form (like 
/files/This%20is%20a%20link) has been fixed.
+  + A seg.fault during scanning several archives has been fixed.
+  + Lithuanian localization has been updated.
+  + Vietnamese language/encoding detection patterns have been added.
+
+- Changes for 0.12.7
+  + Vietnamese interface taranslation by Phạm Văn Hùng_Firestork has been 
added.
+  + LitRes integration broken in the previous version has been fixed.
+
+- Changes for 0.12.6
+  + The viewing of ePub files from fictionwise.com has been fixed. A set of 
files from this site are compressed with some errors. However other readers 
(like Adobe Digital Editions) allows to read these books. FBReader 0.12.6 
supports such books too.
+
+---
+Sat Jan 16 21:43:37 UTC 2010 - Kirill Kirillov 
+
+- Update to 0.12.1
+  + Integration with LitRes.ru has been improved. A link for signing up has 
been added. A browsing by authors and by genres has been added.
+  + Scrolling preferences have been simplified. Tap scrolling has been fixed.
+  + Lithuanian localization has been added (thanks to Stanislovas Zacharovas).
+  + Open file dialog behaviour has been fixed (in Gtk+ version).
+  + A crach on some mobipocket files has been fixed.
+
+---
+Thu Dec 10 21:33:48 UTC 2009 - Kirill Kirillov 
+
+- Update to 0.12.0
+  + New presentation of library.
+  + Better integration with network libraries: FeedBooks, LitRes,
+Shucang and SmashWords. This version allows to browse catalogs,
+to search and download the books. For LitRes (Russian e-library)
+it is also possible to purchase books.
+  + Added Chinese localization (by Shucang).
+  + Image scaling has been implemented.
+  + Better encoding/language detection. Arabic and Indonesian patterns are 
back.
+  + Mobipocket, eReader and chm support have been improved.
+
+---
+Sun Apr  5 21:44:21 MSD 2009 - kirill.kiril...@gmail.com
+
+- Update to 0.10.7
+  + A conflict between hyperlink clicks and touch scrolling has been fixed
+  
+- Changes for 0.10.2
+  + A bug with images/css links in epub has been fixed
+
+---
+Sat Mar 21 15:27:58 MSK 2009 - kirill.kiril...@gmail.com
+
+- Update to 0.10.5
+  + An FBReader freeze has been fixed
+  + Several text selection related issues have been fixed
+
+---
+Fri Mar 20 00:00:15 MSK 2009 - kirill.kiril...@gmail.com
+
+- Update to 0.10.4
+  + Multiple fixes in the epub format support
+
+---
+Wed Mar  4 03:31:49 MSK 2009 - kirill.kiril...@gmail.com
+
+- Update to 0.10.3
+  + Some issues related to multi-file tar, tar.gz and tar.bz2
+archives have been fixed.
+  + Greek hyphenation patterns were regenerated from another
+TeX source.
+  + New version has no license issues from the Debian point of view
+
+- Changes for 0.10.2
+  + Images order in mobipocket files has been corrected.
+  + Indonesian localization files have been updated.
+
+- Changes for 0.10.1
+  + Fixed an infinite loop in librar