2015-07-24 02:23:18 +00:00
|
|
|
Summary: Friendly interactive shell
|
|
|
|
Name: fish
|
|
|
|
|
|
|
|
Version: @RPMVERSION@
|
|
|
|
Release: 0.%{?dist}
|
|
|
|
|
2023-05-25 14:16:17 +00:00
|
|
|
License: GPL-2.0-only AND GPL-2.0-or-later AND BSD-2-Clause AND PSF-2.0 AND ISC AND MIT
|
2015-07-24 02:23:18 +00:00
|
|
|
Group: System/Shells
|
2017-02-17 13:30:43 +00:00
|
|
|
URL: https://fishshell.com/
|
2015-07-24 02:23:18 +00:00
|
|
|
|
2020-02-14 14:41:13 +00:00
|
|
|
Source0: %{name}_@VERSION@.orig.tar.xz
|
2023-04-07 04:44:38 +00:00
|
|
|
BuildRequires: cargo ncurses-devel gettext gcc-c++ xz pcre2-devel
|
2023-04-07 04:22:34 +00:00
|
|
|
BuildRequires: rust >= 1.67
|
2015-07-24 02:23:18 +00:00
|
|
|
|
2019-01-05 12:27:06 +00:00
|
|
|
%if 0%{?rhel} && 0%{?rhel} < 8
|
2018-05-29 05:46:14 +00:00
|
|
|
BuildRequires: cmake3
|
|
|
|
%else
|
2022-07-10 02:43:13 +00:00
|
|
|
BuildRequires: cmake
|
2018-05-29 05:46:14 +00:00
|
|
|
%endif
|
|
|
|
|
2020-01-25 14:34:33 +00:00
|
|
|
%if 0%{?suse_version}
|
|
|
|
BuildRequires: update-desktop-files
|
|
|
|
%endif
|
|
|
|
|
2019-01-05 09:28:37 +00:00
|
|
|
# for tests
|
2020-02-06 05:15:49 +00:00
|
|
|
%if 0%{?fedora} || ( 0%{?rhel} && 0%{?rhel} > 7 )
|
2019-01-05 09:28:37 +00:00
|
|
|
# Need the en_US.utf-8 locale at a minimum
|
|
|
|
BuildRequires: glibc-langpack-en
|
|
|
|
%endif
|
2020-07-27 14:21:37 +00:00
|
|
|
BuildRequires: python3 procps
|
2019-01-05 09:28:37 +00:00
|
|
|
|
2020-02-13 15:18:23 +00:00
|
|
|
%if 0%{?rhel} && 0%{?rhel} < 8
|
2023-04-07 04:22:34 +00:00
|
|
|
Requires: python
|
2020-02-13 15:18:23 +00:00
|
|
|
%else
|
2023-04-07 04:22:34 +00:00
|
|
|
Requires: python3
|
2020-02-13 15:18:23 +00:00
|
|
|
%endif
|
2023-04-07 04:22:34 +00:00
|
|
|
Requires: man
|
2015-07-24 02:23:18 +00:00
|
|
|
|
2020-06-10 12:48:59 +00:00
|
|
|
# Although the build scripts mangle the version number to be RPM compatible
|
|
|
|
# for continuous builds (transforming the output of `git describe`), Fedora 32+
|
|
|
|
# also validates the version inside the pkgconfig file. There's no impetus for this
|
|
|
|
# with fish.
|
|
|
|
%define _wrong_version_format_terminate_build 0
|
|
|
|
|
2015-07-24 02:23:18 +00:00
|
|
|
%description
|
|
|
|
|
|
|
|
fish is a shell geared towards interactive use. Its features are
|
|
|
|
focused on user friendliness and discoverability. The language syntax
|
|
|
|
is simple but incompatible with other shell languages.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n %{name}-@VERSION@
|
|
|
|
|
|
|
|
%build
|
2019-01-02 13:36:55 +00:00
|
|
|
# CMake macros define the wrong sysconfdir arguments
|
|
|
|
EXTRA_CMAKE_FLAGS="$EXTRA_CMAKE_FLAGS -DCMAKE_INSTALL_SYSCONFDIR=%{_sysconfdir}"
|
2019-01-05 12:27:06 +00:00
|
|
|
%if 0%{?rhel} && 0%{?rhel} < 8
|
2019-01-02 13:36:55 +00:00
|
|
|
%cmake3 $EXTRA_CMAKE_FLAGS
|
2016-12-13 00:04:28 +00:00
|
|
|
%else
|
2019-01-02 13:36:55 +00:00
|
|
|
%cmake $EXTRA_CMAKE_FLAGS
|
2016-12-13 00:04:28 +00:00
|
|
|
%endif
|
2020-11-12 13:50:34 +00:00
|
|
|
%if 0%{?cmake_build:1}
|
2020-11-11 12:08:52 +00:00
|
|
|
%cmake_build
|
2018-05-29 05:46:14 +00:00
|
|
|
%else
|
2015-07-24 02:23:18 +00:00
|
|
|
make %{?_smp_mflags}
|
2018-05-29 05:46:14 +00:00
|
|
|
%endif
|
2015-07-24 02:23:18 +00:00
|
|
|
|
|
|
|
%install
|
2018-05-29 05:46:14 +00:00
|
|
|
%if 0%{?cmake_install:1}
|
|
|
|
%cmake_install
|
|
|
|
%else
|
|
|
|
%make_install
|
|
|
|
%endif
|
2015-07-24 02:23:18 +00:00
|
|
|
%find_lang %{name}
|
2020-01-25 14:34:33 +00:00
|
|
|
# OpenSUSE has strong opinions about categories which do not apply to other systems
|
|
|
|
%if 0%{?suse_version}
|
2020-01-26 13:36:00 +00:00
|
|
|
%suse_update_desktop_file fish "System;TerminalEmulator"
|
2020-01-25 14:34:33 +00:00
|
|
|
%endif
|
2020-06-17 03:31:41 +00:00
|
|
|
cp -a README.rst %{buildroot}%{_datadir}/doc/fish/
|
|
|
|
cp -a CONTRIBUTING.rst %{buildroot}%{_datadir}/doc/fish/
|
2015-07-24 02:23:18 +00:00
|
|
|
|
2019-01-05 09:28:37 +00:00
|
|
|
%check
|
|
|
|
# OpenSUSE does out-of-tree builds and defines __builddir
|
|
|
|
%if 0%{?__builddir:1}
|
|
|
|
cd %__builddir
|
|
|
|
%endif
|
2022-06-08 14:45:55 +00:00
|
|
|
# Fedora uses __cmake_builddir
|
|
|
|
%if 0%{?__cmake_builddir:1}
|
|
|
|
cd %__cmake_builddir
|
|
|
|
%endif
|
2022-06-08 10:37:35 +00:00
|
|
|
make fish_run_tests
|
2019-01-05 09:28:37 +00:00
|
|
|
|
2015-07-24 02:23:18 +00:00
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
%post
|
|
|
|
# Add fish to the list of allowed shells in /etc/shells
|
|
|
|
if ! grep %{_bindir}/fish %{_sysconfdir}/shells >/dev/null; then
|
2023-04-07 04:22:34 +00:00
|
|
|
echo %{_bindir}/fish >>%{_sysconfdir}/shells
|
2015-07-24 02:23:18 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
%postun
|
|
|
|
# Remove fish from the list of allowed shells in /etc/shells
|
|
|
|
if [ "$1" = 0 ]; then
|
2023-04-07 04:22:34 +00:00
|
|
|
grep -v %{_bindir}/fish %{_sysconfdir}/shells >%{_sysconfdir}/fish.tmp
|
|
|
|
mv %{_sysconfdir}/fish.tmp %{_sysconfdir}/shells
|
2015-07-24 02:23:18 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
%files -f %{name}.lang
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
|
|
|
|
# The documentation directory
|
2020-06-17 03:31:41 +00:00
|
|
|
%doc %{_datadir}/doc/fish/
|
2015-07-24 02:23:18 +00:00
|
|
|
|
|
|
|
# man files
|
|
|
|
%{_mandir}/man1/*
|
|
|
|
|
|
|
|
# The program binaries
|
|
|
|
%attr(0755,root,root) %{_bindir}/*
|
|
|
|
|
|
|
|
# Configuration files
|
|
|
|
%dir %{_sysconfdir}/fish/
|
|
|
|
%config(noreplace) %{_sysconfdir}/fish/config.fish
|
|
|
|
|
|
|
|
# Support files
|
|
|
|
%{_datadir}/fish/
|
|
|
|
|
|
|
|
# pkgconfig
|
|
|
|
%{_datadir}/pkgconfig/fish.pc
|
2020-01-25 10:04:14 +00:00
|
|
|
|
|
|
|
# FreeDesktop entry
|
|
|
|
%{_datadir}/applications/fish.desktop
|
|
|
|
%{_datadir}/pixmaps/fish.png
|