File python3-veusz.spec of Package python3-veusz

#
# spec file for package python3-veusz
#
# Copyright (c) 2016 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
%define         X_display         ":98"
%{?_sip_api:Requires: sip-api(%{_sip_api_major}) >= %{_sip_api}}
Name:           python3-veusz
Version:        1.24
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:  python3-devel
BuildRequires:  python3-h5py
BuildRequires:  python3-numpy-devel
BuildRequires:  python3-qt4-devel
BuildRequires:  python3-setuptools
BuildRequires:  python3-sip
BuildRequires:  update-desktop-files
BuildRequires:  xorg-x11-server
Requires:       python3-h5py
Requires:       python3-numpy
Requires:       python3-qt4
Requires(post): desktop-file-utils
Requires(post): shared-mime-info
Requires(postun): desktop-file-utils
Requires(postun): shared-mime-info
Recommends:     %{appname}
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
Obsoletes:      veusz3 <= 1.24
Provides:       veusz3 = %{version}

%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}"
python3 setup.py build

%install
python3 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}%{python3_sitearch}/veusz/icons/*.png \
        %{buildroot}%{_datadir}/pixmaps/%{appname}
mv %{buildroot}%{python3_sitearch}/veusz/icons/*.svg \
        %{buildroot}%{_datadir}/pixmaps/%{appname}
for i in `ls %{buildroot}%{_datadir}/pixmaps/%{appname}/`
do
  ln -s  %{_datadir}/pixmaps/%{appname}/$i \
          %{buildroot}%{python3_sitearch}/veusz/icons/$i ;
done
# hardlink main veusz icon also into hicolor-icon-theme dir (for desktop file)
install -m 0644 %{SOURCE3} %{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 %{buildroot}%{_datadir}/pixmaps/%{appname}/veusz_${size}.png ${odir}/%{appname}.png
done
odir=%{buildroot}%{_datadir}/icons/hicolor/scalable/apps
mkdir -p $odir
ln %{buildroot}%{_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}%{python3_sitearch}/veusz/veusz_main.py
chmod +x %{buildroot}%{python3_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}%{python3_sitearch}/veusz/

%fdupes -s %{buildroot}%{python3_sitearch}
%fdupes %{buildroot}%{_datadir}/pixmaps/%{appname}/

%check
export DISPLAY=%{X_display}
Xvfb %{X_display} >& Xvfb.log &
sleep 5
PYTHONPATH=%{buildroot}%{python3_sitearch} \
           python3 tests/runselftest.py

# CLEAN-UP __pycache__ DIRS CONTAINING OBJECT FILES LEFT BY %%check WITHOUT THE CORRESPONDING SOURCES
rm -fr %{buildroot}%{python3_sitearch}/veusz/*/__pycache__
rm -fr %{buildroot}%{python3_sitearch}/veusz/__pycache__

%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/
%{python3_sitearch}/veusz-%{version}-py*.egg-info
%{python3_sitearch}/veusz/

%files -n %{appname}
%defattr(-,root,root)
%{_bindir}/%{appname}
%{_bindir}/%{appname}_listen
%{_datadir}/applications/%{appname}.desktop
%{_mandir}/man1/*
%{_datadir}/pixmaps/%{appname}/
%dir %{_datadir}/appdata
%{_datadir}/appdata/%{appname}.appdata.xml
%{_datadir}/icons/hicolor/*/apps/%{appname}.*
%{_datadir}/mime/packages/%{appname}.xml

%changelog
openSUSE Build Service is sponsored by