Accepting request 635594 from KDE:Distro:Factory
OBS-URL: https://build.opensuse.org/request/show/635594 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/qalculate?expand=0&rev=22
This commit is contained in:
parent
2d68bfcba0
commit
9ffa276462
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:ed4c467ef8b87611f8c15794b16aef15628ba8f45aaa428619f2d58ed4248609
|
|
||||||
size 1912971
|
|
3
libqalculate-2.6.2.tar.gz
Normal file
3
libqalculate-2.6.2.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:bb52944426646a369a3b113d79f19bb92c7569bb3801f65f4fd416bed67e98d7
|
||||||
|
size 1917848
|
@ -1,3 +1,25 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Sep 13 17:41:50 UTC 2018 - Jan Engelhardt <jengelh@inai.de>
|
||||||
|
|
||||||
|
- Re-ensure neutrality of descriptions.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Sep 12 22:21:07 UTC 2018 - Stefan Brüns <stefan.bruens@rwth-aachen.de>
|
||||||
|
|
||||||
|
- Update to 2.6.2:
|
||||||
|
* Polar and exponential complex forms (changed with mode or with "to" operator/command)
|
||||||
|
* Fix f(x)+a=a (e.g. x+1=1, which returned false/zero).
|
||||||
|
* Fix ln(-i).
|
||||||
|
* Fix automatic unit conversion in RPN mode
|
||||||
|
* Allow conversion of the current result using standalone "to" expression (e.g. type "to m" to convert current result to meter) in GUI.
|
||||||
|
* Option to disable automatic conversion to local currency (when optimal conversion activated)
|
||||||
|
* Minor bug fixes.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Sep 7 18:34:28 UTC 2018 - stefan.bruens@rwth-aachen.de
|
||||||
|
|
||||||
|
- Split data files from application package, fix boo#1106954
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jul 20 06:32:50 UTC 2018 - christophe@krop.fr
|
Fri Jul 20 06:32:50 UTC 2018 - christophe@krop.fr
|
||||||
|
|
||||||
|
@ -16,10 +16,10 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
%define major 18
|
%define major 19
|
||||||
%define libname libqalculate
|
%define libname libqalculate
|
||||||
Name: qalculate
|
Name: qalculate
|
||||||
Version: 2.6.1
|
Version: 2.6.2
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Multi-purpose desktop calulator application
|
Summary: Multi-purpose desktop calulator application
|
||||||
License: GPL-2.0-or-later
|
License: GPL-2.0-or-later
|
||||||
@ -36,6 +36,7 @@ BuildRequires: pkgconfig
|
|||||||
BuildRequires: readline-devel
|
BuildRequires: readline-devel
|
||||||
BuildRequires: pkgconfig(icu-uc)
|
BuildRequires: pkgconfig(icu-uc)
|
||||||
BuildRequires: pkgconfig(libcurl)
|
BuildRequires: pkgconfig(libcurl)
|
||||||
|
Requires: %{name}-data >= %{version}
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Qalculate is a multi-purpose desktop calculator. Features include
|
Qalculate is a multi-purpose desktop calculator. Features include
|
||||||
@ -45,9 +46,9 @@ entry (although it supports optional traditional buttons).
|
|||||||
This is the commandline interface, named qalc.
|
This is the commandline interface, named qalc.
|
||||||
|
|
||||||
%package -n %{libname}%{major}
|
%package -n %{libname}%{major}
|
||||||
Summary: Powerful Calulator Library
|
Summary: Calulator Library
|
||||||
Group: System/Libraries
|
Group: System/Libraries
|
||||||
Suggests: %{name}
|
Recommends: %{name}-data >= %{version}
|
||||||
Provides: %{libname} = %{version}
|
Provides: %{libname} = %{version}
|
||||||
|
|
||||||
%description -n %{libname}%{major}
|
%description -n %{libname}%{major}
|
||||||
@ -57,6 +58,21 @@ graphical interface that uses a one-line fault-tolerant expression
|
|||||||
entry.
|
entry.
|
||||||
This is the shared library package.
|
This is the shared library package.
|
||||||
|
|
||||||
|
%package data
|
||||||
|
Summary: Additional data for the qalculator calulator library
|
||||||
|
Group: Productivity/Scientific/Math
|
||||||
|
Requires: %{libname} = %{version}
|
||||||
|
Provides: %{name}:%{_datadir}/%{name}/units.xml
|
||||||
|
BuildArch: noarch
|
||||||
|
|
||||||
|
%description data
|
||||||
|
Qalculate is a multi-purpose desktop calculator. Features include
|
||||||
|
customizable functions, units, arbitrary precision, plotting, and a
|
||||||
|
graphical interface that uses a one-line fault-tolerant expression
|
||||||
|
entry.
|
||||||
|
This provides definitions of additional units, functions, etc. on top
|
||||||
|
of the built-in ones.
|
||||||
|
|
||||||
%package -n %{libname}-devel
|
%package -n %{libname}-devel
|
||||||
Summary: Header files, libraries and development documentation for %{libname}
|
Summary: Header files, libraries and development documentation for %{libname}
|
||||||
Group: Development/Libraries/C and C++
|
Group: Development/Libraries/C and C++
|
||||||
@ -89,9 +105,11 @@ rm -f "%{buildroot}/%{_libdir}"/*.la
|
|||||||
%license COPYING
|
%license COPYING
|
||||||
%doc README ChangeLog INSTALL AUTHORS TODO
|
%doc README ChangeLog INSTALL AUTHORS TODO
|
||||||
%{_bindir}/qalc
|
%{_bindir}/qalc
|
||||||
%{_datadir}/%{name}
|
|
||||||
%{_datadir}/doc/%{libname}
|
%{_datadir}/doc/%{libname}
|
||||||
|
|
||||||
|
%files -n %{name}-data
|
||||||
|
%{_datadir}/%{name}
|
||||||
|
|
||||||
%files -n %{libname}%{major}
|
%files -n %{libname}%{major}
|
||||||
%license COPYING
|
%license COPYING
|
||||||
%{_libdir}/%{libname}.so.%{major}
|
%{_libdir}/%{libname}.so.%{major}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user