ranger/ranger.spec
Scott Bradnick 4dbf1a1d0c Accepting request 1079808 from home:sbradnick
- Update to version 1.9.3+git20230416.478d5b6:
  * img_display, popen23: Appease lints
  * Move path to suffix=, add prefix="ranger"
  * GHActions: Update checkout and setup-python version
  * GHActions: Change CI to run conditionally without remaining pending
  * Fix the logic for determining the preview scale
  * Clean up the SIXEL documentation
  * Fix standard library misuse
  * Tidy up Magick executable detection logic
  * Move the ABC compat wrapper to a separate file
  * Tweaked human_readable
  * directory: Fix max call in mtimelevel
  * Added a default argument to the human_readable function
  * Reduce unnecessary string concatination
  * Reformat script
  * scope: Reformat sqlite preview for width
  * scope: Add missing parens in SQL OFFSET calculation
  * Show ellipsis `...` when reaching row limits
  * Reduce unnecessary variable assignment
  * Show row limits
  * Pretty format SQL query
  * get_executables: Use platform instead of reading /proc
  * Encourage ImageMagick to use OpenCL for processing
  * Implement the SIXEL image previewer
  * Support Expansion Of Environment Variables in cd command
  * shutil_generatorized: Float exists condition outwards
  * Disable the pylint checks for this workaround
  * Fix the ABC checks on Python 3
  * Set COLOR_PAIRS only in the cases it's relevant
  * color: Catch Color number is greater than COLORS-1

OBS-URL: https://build.opensuse.org/request/show/1079808
OBS-URL: https://build.opensuse.org/package/show/utilities/ranger?expand=0&rev=34
2023-04-16 23:36:31 +00:00

91 lines
2.6 KiB
RPMSpec

#
# spec file for package ranger
#
# 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 short_version 1.9.3
Name: ranger
Version: 1.9.3+git20230416.478d5b6
Release: 0
Summary: Console File Manager
License: GPL-3.0-or-later
Group: Productivity/File utilities
URL: https://github.com/ranger/ranger
Source: %{name}-%{version}.tar.gz
Source99: ranger-rpmlintrc
# PATCH-FIX-UPSTREAM ranger.desktop.patch -- Add missing GenericName
Patch0: ranger.desktop.diff
BuildRequires: python3-devel
BuildRequires: python3-setuptools
BuildRequires: update-desktop-files
Requires: file
Requires: python3-curses
Recommends: atool
Recommends: highlight
Recommends: mediainfo
Recommends: w3m
Recommends: python3-Pillow
BuildArch: noarch
%description
Ranger is a console file manager that gives you greater flexibility and a
good overview of your files without having to leave your text console. It
visualizes the directory tree in two dimensions: the directory hierarchy on
one, lists of files on the other, with a preview to the right.
The default keys are similar to those of Vim, Emacs and Midnight Commander,
though ranger is easily controllable with just the arrow keys or the mouse.
%prep
%setup -q
%patch0 -p1
sed -e 's|#!/usr/bin/env python|#!%{_bindir}/python3|' -i doc/tools/*.py
sed -e 's|#!/usr/bin/env bash|#!/bin/bash|' -i ranger/data/scope.sh
%build
python3 ./setup.py build
%install
python3 ./setup.py install \
--prefix="%{_prefix}" \
--root=%{buildroot}
rm -rf "%{buildroot}%{_datadir}/doc/ranger"
%if 0%{?suse_version} < 1500
%post
%desktop_database_post
%postun
%desktop_database_postun
%endif
%files
%license LICENSE
%doc AUTHORS CHANGELOG.md README.md HACKING.md
%doc doc/colorschemes.md
%doc doc/tools
%doc examples
%{_bindir}/ranger
%{_bindir}/rifle
%{python3_sitelib}/ranger_fm-%{short_version}-*.egg-info
%{python3_sitelib}/ranger
%{_mandir}/man1/ranger.1%{ext_man}
%{_mandir}/man1/rifle.1%{ext_man}
%{_datadir}/applications/%{name}.desktop
%changelog