Compare commits
5 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| c33f399e61 | |||
| 5246f10eb4 | |||
| b04a7ea7a2 | |||
| 57179e86d0 | |||
| f7a73af9a8 |
21
e98b6ad533360500528b48043e20c79f5cb67b07.patch
Normal file
21
e98b6ad533360500528b48043e20c79f5cb67b07.patch
Normal file
@@ -0,0 +1,21 @@
|
||||
commit e98b6ad533360500528b48043e20c79f5cb67b07
|
||||
Author: Juergen Spitzmueller <spitz@lyx.org>
|
||||
Date: Wed Oct 15 12:26:49 2025 +0200
|
||||
|
||||
Fix compilation with Qt 6.10
|
||||
|
||||
See https://doc.qt.io/qt-6/qstring.html#arg-3
|
||||
|
||||
diff --git a/src/frontends/qt/GuiSymbols.cpp b/src/frontends/qt/GuiSymbols.cpp
|
||||
index 01cf73c03e..a62fe1a828 100644
|
||||
--- a/src/frontends/qt/GuiSymbols.cpp
|
||||
+++ b/src/frontends/qt/GuiSymbols.cpp
|
||||
@@ -249,7 +249,7 @@ public:
|
||||
"style=\"font-size: xx-large;\">%1"
|
||||
"</span><br>U+%2</p>%3")
|
||||
.arg(toqstr(c))
|
||||
- .arg(QString("%1").arg(c, 0, 16).toUpper())
|
||||
+ .arg(QString("%1").arg(int(c), 0, 16).toUpper())
|
||||
.arg(latex));
|
||||
}
|
||||
case Qt::SizeHintRole:
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:fa6761f598a5915af50a423dd2a607048bdbc540a6d572385fe422df581eebf6
|
||||
size 17843424
|
||||
Binary file not shown.
3
lyx-2.4.4.tar.xz
Normal file
3
lyx-2.4.4.tar.xz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ffacd37480f320f3f3f8f30445fe40897e9df44c94ee87ba0413e364086f4b90
|
||||
size 18360996
|
||||
BIN
lyx-2.4.4.tar.xz.sig
Normal file
BIN
lyx-2.4.4.tar.xz.sig
Normal file
Binary file not shown.
20
lyx.changes
20
lyx.changes
@@ -1,3 +1,22 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Nov 18 22:09:37 UTC 2025 - Cor Blom <cornelis@solcon.nl>
|
||||
|
||||
- Add upstream e98b6ad533360500528b48043e20c79f5cb67b07.patch to
|
||||
fix build fix Qt 6.10 (contributed by aggplanta)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jun 6 08:31:12 UTC 2025 - Cor Blom <cornelis@solcon.nl>
|
||||
|
||||
- Update to 2.4.4:
|
||||
This is a maintenance release. For details see included
|
||||
ANNOUNCE or https://www.lyx.org/announce/2_4_4.txt
|
||||
Highlights:
|
||||
* A number of updates to LyX's interface with computer algebra
|
||||
systems
|
||||
* Added functions and menu-entries for debugging a document
|
||||
* Fix some issues with the genaration of previews
|
||||
- Removed no longer needed qt69-fix.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 11 14:27:27 UTC 2025 - Cor Blom <cornelis@solcon.nl>
|
||||
|
||||
@@ -1268,7 +1287,6 @@ Mon May 12 08:47:40 MEST 1997 - fehr@suse.de
|
||||
- New version 0.10.7
|
||||
|
||||
----------------------------------------------------------------------
|
||||
|
||||
Sun Nov 3 18:06:26 CET 1996 - fehr@suse.de
|
||||
|
||||
- Added lpr as spool command to system.lyxrc
|
||||
|
||||
7
lyx.spec
7
lyx.spec
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package lyx
|
||||
#
|
||||
# Copyright (c) 2025 SUSE LLC
|
||||
# Copyright (c) 2025 SUSE LLC and contributors
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -21,7 +21,7 @@
|
||||
%endif
|
||||
|
||||
Name: lyx
|
||||
Version: 2.4.3
|
||||
Version: 2.4.4
|
||||
Release: 0
|
||||
Summary: WYSIWYM (What You See Is What You Mean) document processor
|
||||
License: GPL-2.0-or-later
|
||||
@@ -32,7 +32,8 @@ Source1: lyxrc.dist
|
||||
Source2: lyx.keyring
|
||||
Source3: http://ftp.lyx.org/pub/lyx/stable/2.4.x/lyx-%{version}.tar.xz.sig
|
||||
Source4: README.SUSE
|
||||
Patch0: qt69-fix.patch
|
||||
# PATCH-QSTRING
|
||||
Patch0: e98b6ad533360500528b48043e20c79f5cb67b07.patch
|
||||
BuildRequires: autoconf
|
||||
BuildRequires: automake
|
||||
BuildRequires: bc
|
||||
|
||||
@@ -1,28 +0,0 @@
|
||||
diff -ur a/src/Compare.cpp d/src/Compare.cpp
|
||||
--- a/src/Compare.cpp 2025-03-20 10:34:23.906992061 +0100
|
||||
+++ d/src/Compare.cpp 2025-04-11 14:36:14.185865549 +0200
|
||||
@@ -885,7 +885,6 @@
|
||||
mergeParagraph(dest_buf_->params(), *dest_pars_, pit);
|
||||
}
|
||||
|
||||
+} // namespace lyx
|
||||
|
||||
#include "moc_Compare.cpp"
|
||||
-
|
||||
-} // namespace lyx
|
||||
diff -ur a/src/support/Systemcall.cpp d/src/support/Systemcall.cpp
|
||||
--- a/src/support/Systemcall.cpp 2025-03-20 10:34:23.951991736 +0100
|
||||
+++ d/src/support/Systemcall.cpp 2025-04-11 14:37:08.125468477 +0200
|
||||
@@ -702,10 +702,8 @@
|
||||
}
|
||||
}
|
||||
|
||||
-
|
||||
+} // namespace support
|
||||
+} // namespace lyx
|
||||
|
||||
#include "moc_SystemcallPrivate.cpp"
|
||||
#endif
|
||||
-
|
||||
-} // namespace support
|
||||
-} // namespace lyx
|
||||
Reference in New Issue
Block a user