- Update to 2.2.3:
* Bugfix release * For details see http://www.lyx.org/announce/2_2_3.txt (also included as ANNOUNCE file) - Dropped Qt58.patch OBS-URL: https://build.opensuse.org/package/show/Publishing/lyx?expand=0&rev=133
This commit is contained in:
parent
4d9ee6e533
commit
38093a478f
19
Qt58.patch
19
Qt58.patch
@ -1,19 +0,0 @@
|
|||||||
Index: src/frontends/qt4/GuiViewSource.cpp
|
|
||||||
===================================================================
|
|
||||||
--- src/frontends/qt4/GuiViewSource.cpp (revision adb00dbcf803298651609c0afac02bc4cb3db003)
|
|
||||||
+++ src/frontends/qt4/GuiViewSource.cpp (revision 9f2fcf20a51af2b63161a3290cf5fb02474b42b9)
|
|
||||||
@@ -224,12 +224,7 @@
|
|
||||||
// position-to-row is unavailable
|
|
||||||
// we jump to the first modification
|
|
||||||
- const QChar * oc = old.constData();
|
|
||||||
- const QChar * nc = qcontent.constData();
|
|
||||||
+ int length = min(old.length(), qcontent.length());
|
|
||||||
int pos = 0;
|
|
||||||
- while (*oc != '\0' && *nc != '\0' && *oc == *nc) {
|
|
||||||
- ++oc;
|
|
||||||
- ++nc;
|
|
||||||
- ++pos;
|
|
||||||
- }
|
|
||||||
+ for (; pos < length && old.at(pos) == qcontent.at(pos); ++pos) {}
|
|
||||||
QTextCursor c = QTextCursor(viewSourceTV->document());
|
|
||||||
//get some space below the cursor
|
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:a85c3d7412c4069f8a1f5af4eb172948ae9a50394602f6318ab5c8e990aa5568
|
|
||||||
size 15490148
|
|
Binary file not shown.
3
lyx-2.2.3.tar.xz
Normal file
3
lyx-2.2.3.tar.xz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:5ee203afda7c1b1750f4a73513cda7b4b5425856dec339c31b6cba74c70f87c0
|
||||||
|
size 15494912
|
BIN
lyx-2.2.3.tar.xz.sig
Normal file
BIN
lyx-2.2.3.tar.xz.sig
Normal file
Binary file not shown.
@ -1,3 +1,12 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun May 7 19:54:11 UTC 2017 - cornelis@solcon.nl
|
||||||
|
|
||||||
|
- Update to 2.2.3:
|
||||||
|
* Bugfix release
|
||||||
|
* For details see http://www.lyx.org/announce/2_2_3.txt (also
|
||||||
|
included as ANNOUNCE file)
|
||||||
|
- Dropped Qt58.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 1 22:22:17 UTC 2017 - cornelis@solcon.nl
|
Wed Mar 1 22:22:17 UTC 2017 - cornelis@solcon.nl
|
||||||
|
|
||||||
|
4
lyx.spec
4
lyx.spec
@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: lyx
|
Name: lyx
|
||||||
Version: 2.2.2
|
Version: 2.2.3
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: WYSIWYM (What You See Is What You Mean) document processor
|
Summary: WYSIWYM (What You See Is What You Mean) document processor
|
||||||
License: GPL-2.0+
|
License: GPL-2.0+
|
||||||
@ -27,8 +27,6 @@ Source: ftp://ftp.lyx.org/pub/lyx/stable/2.2.x/lyx-%{version}.tar.xz
|
|||||||
Source1: lyxrc.dist
|
Source1: lyxrc.dist
|
||||||
Source2: lyx.keyring
|
Source2: lyx.keyring
|
||||||
Source3: ftp://ftp.lyx.org/pub/lyx/stable/2.2.x/lyx-%{version}.tar.xz.sig
|
Source3: ftp://ftp.lyx.org/pub/lyx/stable/2.2.x/lyx-%{version}.tar.xz.sig
|
||||||
# PATCH-FIX-UPSTREAM: fix for build with Qt 5.8
|
|
||||||
Patch0: Qt58.patch
|
|
||||||
#!BuildIgnore: lyx
|
#!BuildIgnore: lyx
|
||||||
BuildRequires: autoconf
|
BuildRequires: autoconf
|
||||||
BuildRequires: automake
|
BuildRequires: automake
|
||||||
|
Loading…
Reference in New Issue
Block a user