forked from pool/catfish
- As long as a new Python version does not ship a broken
python3-distutils, like python311 did in its early days, there is
no need to deal with or skip a specific python version at all.
Disable all %%{python_module ...} and skip_python... stuff again.
- Don't use %%{python_module ...} as we only build for the default
Python interpreter. python312 still needs to be skipped due to
python3-distutils!
OBS-URL: https://build.opensuse.org/request/show/1144622
OBS-URL: https://build.opensuse.org/package/show/X11:xfce/catfish?expand=0&rev=39
116 lines
3.5 KiB
RPMSpec
116 lines
3.5 KiB
RPMSpec
#
|
|
# spec file for package catfish
|
|
#
|
|
# Copyright (c) 2024 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/
|
|
#
|
|
|
|
|
|
%bcond_with git
|
|
%define series 4.18
|
|
Name: catfish
|
|
Version: 4.18.0
|
|
Release: 0
|
|
Summary: Versatile File Searching Tool
|
|
License: GPL-2.0-or-later
|
|
Group: Productivity/File utilities
|
|
URL: https://docs.xfce.org/apps/catfish/start
|
|
Source: https://archive.xfce.org/src/apps/%{name}/%{series}/%{name}-%{version}.tar.bz2
|
|
# PATCH-FIX-OPENSUSE: Force-disable Zeitgeist
|
|
Patch0: 0001-Force-disable-Zeitgeist-support.patch
|
|
BuildRequires: appstream-glib
|
|
BuildRequires: fdupes
|
|
BuildRequires: hicolor-icon-theme
|
|
BuildRequires: intltool
|
|
%if 0%{?suse_version} >= 01550 || 0%{?sle_version} >= 150200 && 0%{?is_opensuse}
|
|
BuildRequires: rsvg-convert
|
|
%else
|
|
BuildRequires: rsvg-view
|
|
%endif
|
|
BuildRequires: update-desktop-files
|
|
# Needed for typelib() - Requires.
|
|
BuildRequires: gobject-introspection
|
|
# Checking module dependencies...
|
|
BuildRequires: gtk3-devel >= 3.22
|
|
BuildRequires: python3-distutils-extra
|
|
BuildRequires: python3-gobject
|
|
BuildRequires: python3-gobject-Gdk
|
|
BuildRequires: python3-pexpect
|
|
BuildRequires: python3-xml
|
|
# ...OK
|
|
Requires: findutils-locate
|
|
Requires: gdk-pixbuf-loader-rsvg
|
|
Requires: gsettings-backend-dconf
|
|
Requires: python3-cairo
|
|
Requires: python3-gobject
|
|
Requires: python3-gobject-Gdk
|
|
Requires: python3-gobject-cairo
|
|
Requires: python3-pexpect
|
|
Requires: python3-xml
|
|
Requires: sudo
|
|
Recommends: %{name}-lang
|
|
BuildArch: noarch
|
|
|
|
%description
|
|
Catfish is a GTK+ search utility written in python. Its search is powered by
|
|
/usr/bin/find and /usr/bin/locate, with search suggestions provided by
|
|
zeitgeist.
|
|
|
|
%lang_package
|
|
|
|
%prep
|
|
%autosetup -p1
|
|
|
|
%build
|
|
python3 ./setup.py build -g
|
|
|
|
%install
|
|
python3 ./setup.py install -O1 \
|
|
--prefix="%{_prefix}" \
|
|
--root="%{buildroot}"
|
|
rm -rf %{buildroot}%{_datadir}/doc/%{name}
|
|
# Fix: non-executable-script
|
|
pushd %{buildroot}
|
|
for _file in $(grep -rl '^\#\!\/'); do
|
|
find -name ${_file##*/} -type f -not -perm /111 -exec sed '/^\#\!\//d' -i {} \+
|
|
find -name ${_file##*/} -type f -perm /111 -exec sed '/^\#\!\/.\+py/s/env\ \+//' -i {} \+
|
|
done
|
|
%py3_compile -O .%{python3_sitelib}
|
|
popd
|
|
sed -i "s/\(Exec=\).*/\1%{name}/" %{buildroot}%{_datadir}/applications/org.xfce.Catfish.desktop
|
|
|
|
%suse_update_desktop_file -r org.xfce.Catfish GNOME Utility Filesystem
|
|
|
|
%fdupes %{buildroot}%{python3_sitelib}
|
|
|
|
appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/*.xml
|
|
|
|
%find_lang %{name}
|
|
|
|
%files
|
|
%license COPYING
|
|
%doc AUTHORS README.md
|
|
%{_bindir}/%{name}
|
|
%{_datadir}/%{name}/
|
|
%{_datadir}/metainfo/%{name}.appdata.xml
|
|
%{_datadir}/applications/org.xfce.Catfish.desktop
|
|
%{_datadir}/icons/hicolor/*/apps/org.xfce.catfish.*
|
|
%{python3_sitelib}/%{name}
|
|
%{python3_sitelib}/%{name}_lib
|
|
%{python3_sitelib}/%{name}-%{version}-py%{py3_ver}.egg-info
|
|
%{_mandir}/man?/%{name}.?%{ext_man}
|
|
|
|
%files lang -f %{name}.lang
|
|
|
|
%changelog
|