File python-veusz.spec of Package python-veusz
#
# spec file for package python-veusz
#
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
%define appname veusz
Name: python-veusz
Version: 1.23.1
Release: 0
Summary: Scientific plotting library for Python
License: GPL-2.0+ and Python-2.0
Group: Productivity/Scientific/Other
# The entire source code is GPL-2.0+ except helpers/src/_nc_cntr.c which is Python-2.0
Url: http://home.gna.org/veusz/
Source0: http://download.gna.org/veusz/veusz-%{version}.tar.gz
Source3: veusz_256.png
BuildRequires: desktop-file-utils
BuildRequires: fdupes
BuildRequires: hicolor-icon-theme
BuildRequires: libqt4-devel
BuildRequires: python-devel
BuildRequires: python-numpy-devel
BuildRequires: python-qt4-devel
BuildRequires: python-setuptools
BuildRequires: python-sip
BuildRequires: update-desktop-files
BuildRequires: xorg-x11-server
%define X_display ":98"
%{?_sip_api:Requires: sip-api(%{_sip_api_major}) >= %{_sip_api}}
Requires: python-numpy
Requires: python-qt4
Recommends: %{appname}
Requires(post): shared-mime-info
Requires(post): desktop-file-utils
Requires(postun): shared-mime-info
Requires(postun): desktop-file-utils
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
Veusz is a scientific plotting package, designed to create
publication-ready Postscript/PDF/SVG output. It features GUI,
command-line, and scripting interfaces. Graphs are constructed from
widgets, allowing complex layouts to be designed. Veusz supports
plotting functions, data with errors, keys, labels, stacked plots,
multiple plots, contours, shapes and fitting data.
%package -n %{appname}
Summary: GUI scientific plotting package
Group: Productivity/Scientific/Other
Requires: %{name} = %{version}
Requires(post): desktop-file-utils
Requires(postun): desktop-file-utils
%description -n %{appname}
Veusz is a scientific plotting package, designed to create
publication-ready Postscript/PDF/SVG output. It features GUI,
command-line, and scripting interfaces. Graphs are constructed from
widgets, allowing complex layouts to be designed. Veusz supports
plotting functions, data with errors, keys, labels, stacked plots,
multiple plots, contours, shapes and fitting data.
%prep
%setup -q -n veusz-%{version}
find -name \*~ | xargs rm -f
%build
CFLAGS="%{optflags}"
python setup.py build
%install
python setup.py install -O1 --skip-build --prefix="%{_prefix}" \
--root=%{buildroot}
# Install .desktop, mime and appdata files from upstream tarball
install -Dm0644 support/veusz.appdata.xml %{buildroot}%{_datadir}/appdata/%{appname}.appdata.xml
install -Dm0644 support/veusz.xml %{buildroot}/%{_datadir}/mime/packages/%{appname}.xml
desktop-file-install -m 0644 \
--dir=%{buildroot}/%{_datadir}/applications/ \
--add-category=2DGraphics \
support/%{appname}.desktop
# move icon files to /usr/share/pixmaps/veusz
mkdir -p %{buildroot}%{_datadir}/pixmaps/%{appname}
mv %{buildroot}%{python_sitearch}/veusz/icons/*.png \
%{buildroot}%{_datadir}/pixmaps/%{appname}
mv %{buildroot}%{python_sitearch}/veusz/icons/*.svg \
%{buildroot}%{_datadir}/pixmaps/%{appname}
for i in `ls %{buildroot}%{_datadir}/pixmaps/veusz/`; do
ln -s %{_datadir}/pixmaps/%{appname}/$i \
%{buildroot}%{python_sitearch}/veusz/icons/$i ;
done
# symlink main veusz icon also into hicolor-icon-theme dir (for desktop file)
install -m 0644 %{S:3} %{buildroot}%{_datadir}/pixmaps/%{appname}/veusz_256.png
for size in 16 32 48 64 128 256; do
odir=%{buildroot}%{_datadir}/icons/hicolor/${size}x${size}/apps
mkdir -p $odir
ln -s %{_datadir}/pixmaps/%{appname}/veusz_${size}.png ${odir}/%{appname}.png
done
odir=%{buildroot}%{_datadir}/icons/hicolor/scalable/apps
mkdir -p $odir
ln -s %{_datadir}/pixmaps/%{appname}/veusz.svg $odir/%{appname}.svg
# Mark some scripts as executable.
# This isn't really needed, but Veusz includes shebangs in scripts
# so that they can be run when not installed.
# Do this so that the scripts don't need modification.
chmod +x %{buildroot}%{python_sitearch}/veusz/veusz_main.py
chmod +x %{buildroot}%{python_sitearch}/veusz/veusz_listen.py
# install man pages
mkdir -p %{buildroot}%{_mandir}/man1
install -p Documents/%{appname}.1 Documents/%{appname}_listen.1 -m 0644 \
%{buildroot}%{_mandir}/man1
install -m0644 COPYING %{buildroot}%{python_sitearch}/veusz/
%fdupes -s %{buildroot}%{python_sitearch}
%fdupes %{buildroot}%{_datadir}/pixmaps/%{appname}/
%check
# Problems connectiong to xserver for openSUSE 12.2 and below
%if 0%{?suse_version} > 1220
export DISPLAY=%{X_display}
Xvfb %{X_display} >& Xvfb.log &
sleep 5
PYTHONPATH=%{buildroot}%{python_sitearch} \
python tests/runselftest.py
%endif
%post
update-mime-database %{_datadir}/mime > /dev/null 2>&1 || :
%icon_theme_cache_post
%postun
update-mime-database %{_datadir}/mime > /dev/null 2>&1 || :
%icon_theme_cache_postun
%post -n %{appname}
update-desktop-database %{_datadir}/applications
%postun -n %{appname}
update-desktop-database %{_datadir}/applications
%files
%defattr(-,root,root)
%doc README AUTHORS COPYING ChangeLog
%doc Documents/manual.html
%doc Documents/manimages/
%{_datadir}/pixmaps/%{appname}/
%dir %{_datadir}/appdata
%{_datadir}/appdata/%{appname}.appdata.xml
%{_datadir}/icons/hicolor/*/apps/%{appname}.*
%{_datadir}/mime/packages/%{appname}.xml
%{python_sitearch}/veusz-%{version}-py*.egg-info
%{python_sitearch}/veusz/
%files -n %{appname}
%defattr(-,root,root)
%{_bindir}/%{appname}
%{_bindir}/%{appname}_listen
%{_datadir}/applications/%{appname}.desktop
%{_mandir}/man1/*
%changelog