- update to 0.13.2:
* ensured compatibility with Pillow 10.0
* fixed crash when toggling the 'skip' or 'overview' PageProps
* made Raspberry Pi platform detection code more robust
* re-added pseudo-binary version to source release, but with
proper sourcecode instead of the rather problematic
bytecode we had in 0.13.0
* remove Tcl/Tk from the Win32 build (it was never used anyway)
OBS-URL: https://build.opensuse.org/request/show/1128806
OBS-URL: https://build.opensuse.org/package/show/Office/impressive?expand=0&rev=20
61 lines
1.7 KiB
RPMSpec
61 lines
1.7 KiB
RPMSpec
#
|
|
# spec file for package impressive
|
|
#
|
|
# Copyright (c) 2023 SUSE LLC
|
|
#
|
|
# 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 https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%define dist_name Impressive
|
|
Name: impressive
|
|
Version: 0.13.2
|
|
Release: 0
|
|
Summary: PDF and image viewer optimized for presentations
|
|
License: GPL-2.0-only
|
|
Group: Productivity/Office/Other
|
|
URL: http://impressive.sourceforge.net/
|
|
Source0: http://downloads.sourceforge.net/project/%{name}/%{dist_name}/%{version}/%{dist_name}-%{version}.tar.gz
|
|
Requires: ghostscript
|
|
Requires: python3-imaging
|
|
Requires: python3-opengl
|
|
Requires: python3-pygame
|
|
Recommends: mupdf
|
|
BuildArch: noarch
|
|
|
|
%description
|
|
Impressive is a program that displays presentation slides.
|
|
Features:
|
|
- Page transitions
|
|
- Overview screen
|
|
- Highlight boxes
|
|
- Spotlight effect
|
|
|
|
%prep
|
|
%autosetup -p1 -n %{dist_name}-%{version}
|
|
|
|
sed -i 's/env python$/python3/' impressive.py
|
|
|
|
%build
|
|
|
|
%install
|
|
install -Dm 0755 %{name}.py %{buildroot}%{_bindir}/%{name}
|
|
install -Dm 0644 %{name}.1 %{buildroot}%{_mandir}/man1/%{name}.1
|
|
|
|
%files
|
|
%license license.txt
|
|
%doc changelog.txt demo.pdf
|
|
%{_bindir}/%{name}
|
|
%{_mandir}/man1/%{name}.1%{?ext_man}
|
|
|
|
%changelog
|