- as recommended by rpmlint: switch RPM group of the devel package

to Development/Libraries/C and C++

OBS-URL: https://build.opensuse.org/package/show/Education/bibletime?expand=0&rev=35
This commit is contained in:
Lars Vogdt
2013-06-04 15:57:26 +00:00
committed by Git OBS Bridge
parent 99cb2b216c
commit a336e678ea
5 changed files with 16 additions and 35 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:308a86d4a1f63203e01438e75be8306377927498b5d0ae8769a4df3c828013b5
size 5968979

3
bibletime-2.9.2.tar.bz2 Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:393c77419b0514645cf2417f52d37bdbd604f8eeb37e76355e14c38d896093c8
size 5474540

View File

@@ -1,3 +1,15 @@
-------------------------------------------------------------------
Tue Jun 4 15:55:48 UTC 2013 - lars@linux-schulserver.de
- update to 2.9.2:
+ Fixed settings dialog tab contents not being translated
+ Fix crash when closing window with tab
+ Fix bug 14 - Headers displayed as plain text in some modules
+ Fix problem with text not displaying when using QtWebKit 2.3
+ added changes needed for Qt5
+ Fix multi-arch path issue in FindCLucene.cmake
- removed fix-movetoanchor-for-qt5.patch (upstream)
-------------------------------------------------------------------
Fri May 3 23:34:36 UTC 2013 - hrvoje.senjan@gmail.com

View File

@@ -18,7 +18,7 @@
Name: bibletime
Version: 2.9.1
Version: 2.9.2
Release: 0
Summary: An easy to use Bible study tool
License: GPL-2.0+
@@ -27,8 +27,6 @@ Url: http://www.bibletime.info/
Source0: %name-%version.tar.bz2
Source1: %{name}.xpm
Source2: bibletime-rpmlintrc
# PATCH-FIX-UPSTREAM fix-movetoanchor-for-qt5.patch -- fixes no text visible in bibletime's main window when used with libQtWebkit 2.3
Patch0: fix-movetoanchor-for-qt5.patch
BuildRequires: boost-devel
BuildRequires: cmake
BuildRequires: curl-devel
@@ -91,7 +89,6 @@ write own notes, save, print etc.).
%prep
%setup -q
%patch0 -p1
%build
mkdir build

View File

@@ -1,28 +0,0 @@
From fa3625f7b85f6ab5510914ab97e8ea231c252175 Mon Sep 17 00:00:00 2001
From: Gary Holmlund <gary@holmlundg.(none)>
Date: Sun, 16 Dec 2012 18:30:14 -0800
Subject: [PATCH 091/133] Fix moveToAnchor for Qt5
---
src/frontend/display/bthtmlreaddisplay.cpp | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/src/frontend/display/bthtmlreaddisplay.cpp b/src/frontend/display/bthtmlreaddisplay.cpp
index 5cb69fb..433cec4 100644
--- a/src/frontend/display/bthtmlreaddisplay.cpp
+++ b/src/frontend/display/bthtmlreaddisplay.cpp
@@ -247,7 +247,11 @@ void BtHtmlReadDisplay::selectAll() {
// Scroll QWebView to the correct location as specified by the anchor
void BtHtmlReadDisplay::moveToAnchor( const QString& anchor ) {
+#if QT_VERSION >= 0x040700
+ mainFrame()->scrollToAnchor(anchor);
+#else
slotGoToAnchor(anchor);
+#endif
}
// Scroll the QWebView to the correct location specified by anchor
--
1.8.1.4