f7b454ae93
- Update to version 1.0.4: * The qute://gpl page now works correctly again. * Trying to bind an empty command now doesn't crash anymore. * Fixed crash when :config-write-py fails to write to the given path. * Fixed crash for some users when selecting a file with Qt 5.9.3 * Improved handling for various SQL errors * Fix crash when setting content.cache.size to a big value (> 2 GB) OBS-URL: https://build.opensuse.org/request/show/546189 OBS-URL: https://build.opensuse.org/package/show/network/qutebrowser?expand=0&rev=21
104 lines
3.2 KiB
RPMSpec
104 lines
3.2 KiB
RPMSpec
#
|
|
# spec file for package qutebrowser
|
|
#
|
|
# Copyright (c) 2017 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/
|
|
#
|
|
|
|
|
|
Name: qutebrowser
|
|
Version: 1.0.4
|
|
Release: 0
|
|
Summary: Keyboard-driven vim-like browser on Qt5
|
|
License: GPL-3.0+
|
|
Group: Productivity/Networking/Web/Browsers
|
|
Url: https://qutebrowser.org/
|
|
Source: https://github.com/The-Compiler/%{name}/releases/download/v%{version}/%{name}-%{version}.tar.gz
|
|
Source1: https://github.com/The-Compiler/%{name}/releases/download/v%{version}/%{name}-%{version}.tar.gz.asc
|
|
Source2: %{name}.keyring
|
|
BuildRequires: fdupes
|
|
BuildRequires: hicolor-icon-theme
|
|
BuildRequires: python3-Jinja2
|
|
BuildRequires: python3-MarkupSafe
|
|
BuildRequires: python3-PyYAML
|
|
BuildRequires: python3-Pygments
|
|
BuildRequires: python3-attrs
|
|
BuildRequires: python3-devel >= 3.6
|
|
BuildRequires: python3-pyPEG2
|
|
BuildRequires: python3-qt5 >= 5.2
|
|
BuildRequires: python3-sip
|
|
Requires: python3-Jinja2
|
|
Requires: python3-MarkupSafe
|
|
Requires: python3-PyYAML
|
|
Requires: python3-Pygments
|
|
Requires: python3-attrs
|
|
Requires: python3-opengl
|
|
Requires: python3-pyPEG2
|
|
Requires: python3-qt5 >= 5.2
|
|
Requires: python3-sip
|
|
Recommends: python3-cssutils
|
|
BuildArch: noarch
|
|
%if 0%{?suse_version} <= 1320
|
|
BuildRequires: update-desktop-files
|
|
%endif
|
|
|
|
%description
|
|
qutebrowser is a keyboard-focused browser with a minimal GUI.
|
|
It's based on Python, PyQt5 and QtWebKit and is free software.
|
|
|
|
%prep
|
|
%setup -q
|
|
sed -i '1d' %{name}/__main__.py
|
|
touch -r qutebrowser/browser/network/__init__.py \
|
|
qutebrowser/browser/webkit/network/__init__.py
|
|
|
|
%build
|
|
python3 setup.py build
|
|
|
|
%install
|
|
python3 setup.py install \
|
|
--root=%{buildroot} --prefix=%{_prefix}
|
|
|
|
install -Dpm 0644 misc/%{name}.desktop \
|
|
%{buildroot}%{_datadir}/applications/%{name}.desktop
|
|
|
|
for size in 16 24 32 48 64 128 256; do
|
|
install -Dpm 0644 "icons/%{name}-${size}x${size}.png" \
|
|
"%{buildroot}%{_datadir}/icons/hicolor/${size}x${size}/apps/%{name}.png"
|
|
done
|
|
install -Dpm 0644 icons/%{name}.svg \
|
|
%{buildroot}%{_datadir}/icons/hicolor/scalable/apps/%{name}.svg
|
|
|
|
rm %{buildroot}%{python3_sitelib}/%{name}/git-commit-id
|
|
%fdupes %{buildroot}%{python3_sitelib}/
|
|
|
|
%if 0%{?suse_version} <= 1320
|
|
%post
|
|
%desktop_database_post
|
|
%icon_theme_cache_post
|
|
|
|
%postun
|
|
%desktop_database_postun
|
|
%icon_theme_cache_postun
|
|
%endif
|
|
|
|
%files
|
|
%doc doc/changelog.asciidoc LICENSE README.asciidoc
|
|
%{_bindir}/%{name}
|
|
%{python3_sitelib}/%{name}/
|
|
%{python3_sitelib}/%{name}-*
|
|
%{_datadir}/applications/%{name}.desktop
|
|
%{_datadir}/icons/hicolor/*/apps/%{name}.*
|
|
|
|
%changelog
|