Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package fityk for openSUSE:Factory checked in at 2021-02-15 23:19:29 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/fityk (Old) and /work/SRC/openSUSE:Factory/.fityk.new.28504 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "fityk" Mon Feb 15 23:19:29 2021 rev:9 rq:872149 version:1.3.1 Changes: -------- --- /work/SRC/openSUSE:Factory/fityk/fityk.changes 2020-02-05 19:44:13.835339946 +0100 +++ /work/SRC/openSUSE:Factory/.fityk.new.28504/fityk.changes 2021-02-15 23:21:28.675859797 +0100 @@ -1,0 +2,8 @@ +Sat Feb 13 18:52:54 UTC 2021 - Atri Bhattacharya <[email protected]> + +- Add fityk-support-lua-5.4.patch: Support lua up to version 5.4; + patch taken from upstream git commit and rebased for current + version. Add BuildRequires: libtool and run autoreconf before + configure since patch modifies configure.ac. + +------------------------------------------------------------------- New: ---- fityk-support-lua-5.4.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ fityk.spec ++++++ --- /var/tmp/diff_new_pack.DFKP0f/_old 2021-02-15 23:21:29.279860699 +0100 +++ /var/tmp/diff_new_pack.DFKP0f/_new 2021-02-15 23:21:29.283860705 +0100 @@ -1,7 +1,7 @@ # # spec file for package fityk # -# Copyright (c) 2020 SUSE LLC +# Copyright (c) 2021 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -25,10 +25,13 @@ Group: Productivity/Scientific/Math URL: https://fityk.nieto.pl/ Source: https://github.com/wojdyr/fityk/releases/download/v%{version}/fityk-%{version}.tar.bz2 +# PATCH-FIX-UPSTREAM fityk-support-lua-5.4.patch [email protected] -- Support lua up to version 5.4; patch taken from upstream git commit +Patch0: fityk-support-lua-5.4.patch BuildRequires: desktop-file-utils BuildRequires: fdupes BuildRequires: gcc-c++ BuildRequires: gnuplot +BuildRequires: libtool BuildRequires: lua-devel >= 5.1 BuildRequires: ncurses-devel BuildRequires: nlopt-devel @@ -95,10 +98,11 @@ This package contains python bindings to Fityk library. %prep -%setup -q +%autosetup -p1 %build export PYTHON=%{_bindir}/python3 +autoreconf -fvi %configure \ --enable-nlopt \ --enable-python ++++++ fityk-support-lua-5.4.patch ++++++ >From d3bd13417e3b00fc5894ff498004d08a76d97cb4 Mon Sep 17 00:00:00 2001 From: Marcin Wojdyr <[email protected]> Date: Sun, 20 Sep 2020 21:45:49 +0200 Subject: [PATCH] change max Lua version to 5.4 Fedora Rawhide compiles fityk with Lua 5.4, so it should be fine --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: fityk-1.3.1/configure.ac =================================================================== --- fityk-1.3.1.orig/configure.ac +++ fityk-1.3.1/configure.ac @@ -111,7 +111,7 @@ AC_COMPILE_IFELSE( [], [AC_MSG_ERROR([xylib >= 1.0 is not installed])]) AS_IF([test x"$LUA52_FROM_SOURCE" != xyes], [ - AX_PROG_LUA(5.1, 5.4) + AX_PROG_LUA(5.1, 5.5) AX_LUA_HEADERS AX_LUA_LIBS ])
