automatic version update by autodist [release 24.02.1-1mamba;Sun Mar 24 2024]
This commit is contained in:
parent
83cd1dedab
commit
1448813f35
15
README.md
15
README.md
@ -2,19 +2,4 @@
|
|||||||
|
|
||||||
KmPlot is a program to draw graphs, their integrals or derivatives.
|
KmPlot is a program to draw graphs, their integrals or derivatives.
|
||||||
It supports different systems of coordinates like the Cartesian or the polar coordinate system.
|
It supports different systems of coordinates like the Cartesian or the polar coordinate system.
|
||||||
The graphs can be colorized and the view is scalable, so that you are able to zoom to the level you need.
|
|
||||||
Features:
|
|
||||||
* powerful mathematical parser;
|
|
||||||
* precise metric printing;
|
|
||||||
* different plot types: cartesian, parametric, polar, implicit, differential;
|
|
||||||
* highly configurable visual settings (plot line, axes, grid);
|
|
||||||
* export to bitmap format (BMP and PNG) and scalable vector graphics (SVG);
|
|
||||||
* save/load complete session in readable xml format;
|
|
||||||
* trace mode: cross hair following plot, coordinates shown in the status bar;
|
|
||||||
* support zooming;
|
|
||||||
* ability to draw the 1st and 2nd derivative and the integral of a plot function;
|
|
||||||
* support user defined constants and parameter values;
|
|
||||||
* various tools for plot functions:
|
|
||||||
* find minimum/maximum point;
|
|
||||||
* get y-value and draw the area between the function and the y-axis.
|
|
||||||
|
|
||||||
|
61
kmplot.spec
61
kmplot.spec
@ -1,5 +1,5 @@
|
|||||||
Name: kmplot
|
Name: kmplot
|
||||||
Version: 23.08.5
|
Version: 24.02.1
|
||||||
Release: 1mamba
|
Release: 1mamba
|
||||||
Summary: Mathematical Function Plotter
|
Summary: Mathematical Function Plotter
|
||||||
Group: Graphical Desktop/Applications/Educational
|
Group: Graphical Desktop/Applications/Educational
|
||||||
@ -7,7 +7,7 @@ Vendor: openmamba
|
|||||||
Distribution: openmamba
|
Distribution: openmamba
|
||||||
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
URL: https://apps.kde.org/education/kmplot/
|
URL: https://apps.kde.org/education/kmplot/
|
||||||
Source: http://download.kde.org/stable/release-service/%{version}/src/kmplot-%{version}.tar.xz
|
Source: https://download.kde.org/%{stable_kde6}/release-service/%{version}/src/kmplot-%{version}.tar.xz
|
||||||
License: GPL
|
License: GPL
|
||||||
## AUTOBUILDREQ-BEGIN
|
## AUTOBUILDREQ-BEGIN
|
||||||
BuildRequires: glibc-devel
|
BuildRequires: glibc-devel
|
||||||
@ -43,21 +43,6 @@ Obsoletes: kmplot4 < 21.08.0
|
|||||||
%description
|
%description
|
||||||
KmPlot is a program to draw graphs, their integrals or derivatives.
|
KmPlot is a program to draw graphs, their integrals or derivatives.
|
||||||
It supports different systems of coordinates like the Cartesian or the polar coordinate system.
|
It supports different systems of coordinates like the Cartesian or the polar coordinate system.
|
||||||
The graphs can be colorized and the view is scalable, so that you are able to zoom to the level you need.
|
|
||||||
Features:
|
|
||||||
* powerful mathematical parser;
|
|
||||||
* precise metric printing;
|
|
||||||
* different plot types: cartesian, parametric, polar, implicit, differential;
|
|
||||||
* highly configurable visual settings (plot line, axes, grid);
|
|
||||||
* export to bitmap format (BMP and PNG) and scalable vector graphics (SVG);
|
|
||||||
* save/load complete session in readable xml format;
|
|
||||||
* trace mode: cross hair following plot, coordinates shown in the status bar;
|
|
||||||
* support zooming;
|
|
||||||
* ability to draw the 1st and 2nd derivative and the integral of a plot function;
|
|
||||||
* support user defined constants and parameter values;
|
|
||||||
* various tools for plot functions:
|
|
||||||
* find minimum/maximum point;
|
|
||||||
* get y-value and draw the area between the function and the y-axis.
|
|
||||||
|
|
||||||
%debug_package
|
%debug_package
|
||||||
|
|
||||||
@ -65,53 +50,55 @@ Features:
|
|||||||
%setup -q
|
%setup -q
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%cmake_kde5 -d build
|
%cmake_kf6
|
||||||
%make
|
%cmake_build
|
||||||
|
|
||||||
%install
|
%install
|
||||||
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||||
%makeinstall -C build
|
%cmake_install
|
||||||
|
|
||||||
%find_lang %{name}5_qt --with-qt --with-man --with-html --all-name || touch %{name}5_qt.lang
|
%find_lang %{name} --with-qt --with-man --with-html --all-name || touch %{name}.lang
|
||||||
|
|
||||||
%clean
|
%clean
|
||||||
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||||
|
|
||||||
%post
|
%post
|
||||||
touch --no-create %{_kde5_icondir}/hicolor &>/dev/null
|
touch --no-create %{_kf6_icondir}/hicolor &>/dev/null
|
||||||
exit 0
|
exit 0
|
||||||
|
|
||||||
%posttrans
|
%posttrans
|
||||||
update-desktop-database -q &>/dev/null
|
update-desktop-database -q &>/dev/null
|
||||||
gtk-update-icon-cache %{_kde5_icondir}/hicolor &>/dev/null
|
gtk-update-icon-cache %{_kf6_icondir}/hicolor &>/dev/null
|
||||||
exit 0
|
exit 0
|
||||||
|
|
||||||
%postun
|
%postun
|
||||||
if [ $1 -eq 0 ]; then
|
if [ $1 -eq 0 ]; then
|
||||||
update-desktop-database -q &>/dev/null
|
update-desktop-database -q &>/dev/null
|
||||||
touch --no-create %{_kde5_icondir}/hicolor &>/dev/null
|
touch --no-create %{_kf6_icondir}/hicolor &>/dev/null
|
||||||
gtk-update-icon-cache %{_kde5_icondir}/hicolor &>/dev/null
|
gtk-update-icon-cache %{_kf6_icondir}/hicolor &>/dev/null
|
||||||
fi
|
fi
|
||||||
exit 0
|
exit 0
|
||||||
|
|
||||||
%files -f %{name}5_qt.lang
|
%files -f %{name}.lang
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%{_kde5_bindir}/%{name}
|
%{_kf6_bindir}/%{name}
|
||||||
%{_libdir}/qt5/plugins/kf5/parts/kmplotpart.so
|
%{_kf6_plugindir}/parts/kmplotpart.so
|
||||||
%{_datadir}/applications/org.kde.kmplot.desktop
|
%{_datadir}/dbus-1/interfaces/org.kde.kmplot.*.xml
|
||||||
%{_datadir}/kservices5/kmplot_part.desktop
|
|
||||||
%dir %{_datadir}/kxmlgui5/kmplot
|
|
||||||
%{_datadir}/kxmlgui5/kmplot/*.rc
|
|
||||||
%doc %lang(en) %{_kde5_htmldir}/en/%{name}
|
|
||||||
%{_kde5_icondir}/hicolor/*/apps/%{name}.png
|
|
||||||
%{_kde5_icondir}/hicolor/scalable/apps/%{name}.svgz
|
|
||||||
%{_kde5_kcfgdir}/%{name}.kcfg
|
|
||||||
%{_datadir}/metainfo/org.kde.kmplot.appdata.xml
|
%{_datadir}/metainfo/org.kde.kmplot.appdata.xml
|
||||||
%{_kde5_dbusinterfacesdir}/org.kde.%{name}.*.xml
|
%{_datadir}/applications/org.kde.kmplot.desktop
|
||||||
|
%{_kf6_kcfgdir}/%{name}.kcfg
|
||||||
|
%{_kf6_icondir}/hicolor/*/apps/%{name}.png
|
||||||
|
%{_kf6_icondir}/hicolor/scalable/apps/%{name}.svgz
|
||||||
%{_mandir}/man1/%{name}.*
|
%{_mandir}/man1/%{name}.*
|
||||||
%doc LICENSES
|
%doc LICENSES
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Sun Mar 24 2024 Automatic Build System <autodist@openmamba.org> 24.02.1-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Fri Mar 01 2024 Automatic Build System <autodist@openmamba.org> 24.02.0-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
* Fri Feb 16 2024 Automatic Build System <autodist@openmamba.org> 23.08.5-1mamba
|
* Fri Feb 16 2024 Automatic Build System <autodist@openmamba.org> 23.08.5-1mamba
|
||||||
- automatic version update by autodist
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user