Summary: bash-completion offers programmable completion for bash Summary(pl): Programowalne uzupełnianie nazw dla basha Name: bash-completion Version: 20050103 Release: 2 License: GPL Group: Applications/Shells Source0: http://www.caliban.org/files/bash/%{name}-%{version}.tar.bz2 # Source0-md5: 0ee7009b18ff862f8a63c2395e5fd100 Source1: %{name}.cron Patch0: %{name}-FHS.patch URL: http://www.caliban.org/bash/ Requires(post,preun): bash Requires(post): grep Requires(post): textutils Requires(postun): fileutils Requires(postun): sed BuildArch: noarch Requires: bash >= 2.05a-3 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n) %description bash-completion is a collection of shell functions that take advantage of the programmable completion feature of bash 2.04 and later. %description -l pl bash-completion jest kolekcją funkcji shella, które opierają się na wbudowanych rozszerzeniach basha 2.04 lub późniejszego umożliwiającego kompletowanie parametrów linii poleceń. %package rpm-cache Summary: Cache result of rpm -qa Summary(pl): Buforowanie wyniku rpm -qa Group: Applications/Shells %description rpm-cache This package contains cached version of rpm -qa, which is used for rpm completion for faster completion. %description rpm-cache -l pl Ten pakiet zawiera skrypt buforujący wynik rpm -qa w celu szybszego dopełniania linii poleceń programu rpm. %prep %setup -q -n bash_completion %patch0 -p1 %install rm -rf $RPM_BUILD_ROOT install -d $RPM_BUILD_ROOT{%{_sysconfdir}/bash_completion.d,/etc/cron.daily,/var/cache} install bash_completion $RPM_BUILD_ROOT%{_sysconfdir} install contrib/* $RPM_BUILD_ROOT%{_sysconfdir}/bash_completion.d install %{SOURCE1} $RPM_BUILD_ROOT/etc/cron.daily/rpmpkgs > $RPM_BUILD_ROOT/var/cache/rpmpkgs.txt # subversion comes with much better completion file rm $RPM_BUILD_ROOT%{_sysconfdir}/bash_completion.d/subversion %clean rm -rf $RPM_BUILD_ROOT %post if ! grep -q '\[ -f '%{_sysconfdir}'/bash_completion \]' \ %{_sysconfdir}/bashrc 2>/dev/null; then umask 022 cat <<'EOF' >> %{_sysconfdir}/bashrc # START bash completion -- do not remove this line bash=${BASH_VERSION%.*}; bmajor=${bash%.*}; bminor=${bash#*.} if [ "$bmajor" -eq 2 -a "$bminor" '>' 04 ] || [ "$bmajor" -gt 2 ]; then if [ "$PS1" ] && [ -f %{_sysconfdir}/bash_completion ]; then # interactive shell # Source completion code . %{_sysconfdir}/bash_completion fi fi unset bash bmajor bminor # END bash completion -- do not remove this line EOF fi %postun if [ "$1" -eq 0 ]; then umask 022 sed -e '/^# START bash completion/,/^# END bash completion/d' /etc/bashrc \ > /etc/bashrc.tmp mv -f /etc/bashrc.tmp /etc/bashrc fi %files %defattr(644,root,root,755) %doc README Changelog BUGS %{_sysconfdir}/bash_completion %{_sysconfdir}/bash_completion.d/ %files rpm-cache %attr(755,root,root) /etc/cron.daily/* %ghost /var/cache/rpmpkgs.txt