2020-07-27 15:44:26 +00:00
committed by Git OBS Bridge
5 changed files with 30 additions and 20 deletions
+22
View File
@@ -1,3 +1,25 @@
-------------------------------------------------------------------
Wed Jul 22 08:10:24 UTC 2020 - Atri Bhattacharya <badshah400@gmail.com>
- Update to version 20.07.0:
* A massive performance update.
* Better display of sqrt() cells.
* Better display of fractions.
* Nicer display of lists.
* Made sure we read in the whole .mac file when opening .mac
files.
* Allow building wxMaxima, if pandoc or po4translate are not
installed.
* As always many small additional bug fixes.
* Updated translations.
- Drop wxMaxima-string-type-conversion.patch: upstreamed.
-------------------------------------------------------------------
Sun Jul 19 17:26:18 UTC 2020 - Atri Bhattacharya <badshah400@gmail.com>
- Compile against the more recent toolkit wxGTK3 >= 3.1 for
openSUSE >= 1550 (mainly for better HiDPI support).
-------------------------------------------------------------------
Fri Jul 3 16:17:02 UTC 2020 - Atri Bhattacharya <badshah400@gmail.com>
+5 -4
View File
@@ -19,15 +19,13 @@
%define __builder ninja
%define tarname wxmaxima
Name: wxMaxima
Version: 20.06.6
Version: 20.07.0
Release: 0
Summary: Graphical User Interface for the maxima Computer Algebra System
License: GPL-2.0-or-later
Group: Productivity/Scientific/Math
URL: https://wxmaxima-developers.github.io/wxmaxima/
Source0: https://github.com/wxmaxima-developers/wxmaxima/archive/Version-%{version}.tar.gz#/%{name}-%{version}.tar.gz
# PATCH-FIX-UPSTREAM wxMaxima-string-type-conversion.patch gh#wxMaxima-developers/wxmaxima#1324 badshah400@gmail.com -- Fix an invalid wxString to wxChar* conversion
Patch0: wxMaxima-string-type-conversion.patch
BuildRequires: appstream-glib
BuildRequires: cmake
BuildRequires: doxygen
@@ -45,7 +43,11 @@ BuildRequires: rsvg-convert
BuildRequires: rsvg-view
%endif
BuildRequires: update-desktop-files
%if 0%{?suse_version} >= 1550
BuildRequires: wxGTK3-devel >= 3.1
%else
BuildRequires: wxWidgets-devel >= 3
%endif
# gnuplot is needed for plotting
Requires: gnuplot
Requires: maxima >= 5.30.0
@@ -60,7 +62,6 @@ based on wxWidgets.
%prep
%setup -q -n %{tarname}-Version-%{version}
%patch0 -p1
%build
%cmake
-3
View File
@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a6c5e105fe406bd8716bbd2d37c14d3dd0f5411e6a96a22a291937fa1387928a
size 15627532
+3
View File
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0ab31006eb00e978ba8ecc840097272b401c294c0dbf69919ec8d6c02558e6f0
size 15723971
-13
View File
@@ -1,13 +0,0 @@
Index: wxmaxima-Version-20.06.6/src/WXMformat.cpp
===================================================================
--- wxmaxima-Version-20.06.6.orig/src/WXMformat.cpp
+++ wxmaxima-Version-20.06.6/src/WXMformat.cpp
@@ -221,7 +221,7 @@ GroupCell *TreeFromWXM(const wxArrayStri
//! Consumes and concatenates lines until a closing tag is reached,
//! consumes the tag and returns the line.
- const auto getLinesUntil = [&wxmLine, end](const wxChar *tag) -> wxString
+ const auto getLinesUntil = [&wxmLine, end](const wxString &tag) -> wxString
{
wxString line;
while (wxmLine != end)