Install bash completion
- Ship LICENSE.txt as %license where available
This commit is contained in:
parent
fdbeb48302
commit
25a2de78a9
@ -15,9 +15,14 @@
|
|||||||
%endif
|
%endif
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
|
%global bashcompdir %(b=$(pkg-config --variable=completionsdir bash-completion 2>/dev/null); echo ${b:-%{_sysconfdir}/bash_completion.d})
|
||||||
|
%if "%{bashcompdir}" != "%{_sysconfdir}/bash_completion.d"
|
||||||
|
%global bashcomp2 1
|
||||||
|
%endif
|
||||||
|
|
||||||
Name: python-%{srcname}
|
Name: python-%{srcname}
|
||||||
Version: 7.0.3
|
Version: 7.0.3
|
||||||
Release: 2%{?dist}
|
Release: 3%{?dist}
|
||||||
Summary: A tool for installing and managing Python packages
|
Summary: A tool for installing and managing Python packages
|
||||||
|
|
||||||
Group: Development/Libraries
|
Group: Development/Libraries
|
||||||
@ -67,6 +72,7 @@ Group: Development/Libraries
|
|||||||
|
|
||||||
BuildRequires: python3-devel
|
BuildRequires: python3-devel
|
||||||
BuildRequires: python3-setuptools
|
BuildRequires: python3-setuptools
|
||||||
|
BuildRequires: bash-completion
|
||||||
%if 0%{?with_tests}
|
%if 0%{?with_tests}
|
||||||
BuildRequires: python3-mock
|
BuildRequires: python3-mock
|
||||||
BuildRequires: python3-pytest
|
BuildRequires: python3-pytest
|
||||||
@ -142,6 +148,44 @@ pip2 install -I dist/%{python2_wheelname} --root %{buildroot} --strip-file-prefi
|
|||||||
%{__python} setup.py install -O1 --skip-build --root %{buildroot}
|
%{__python} setup.py install -O1 --skip-build --root %{buildroot}
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
|
mkdir -p %{buildroot}%{bashcompdir}
|
||||||
|
PYTHONPATH=%{buildroot}%{python_sitelib} \
|
||||||
|
%{buildroot}%{_bindir}/pip completion --bash \
|
||||||
|
> %{buildroot}%{bashcompdir}/pip
|
||||||
|
%if 0%{?with_python3}
|
||||||
|
PYTHONPATH=%{buildroot}%{python3_sitelib} \
|
||||||
|
%{buildroot}%{_bindir}/pip3 completion --bash \
|
||||||
|
> %{buildroot}%{bashcompdir}/pip3
|
||||||
|
%endif
|
||||||
|
pips2=pip
|
||||||
|
pips3=pip3
|
||||||
|
for pip in %{buildroot}%{_bindir}/pip*; do
|
||||||
|
pip=$(basename $pip)
|
||||||
|
case $pip in
|
||||||
|
pip2*)
|
||||||
|
pips2="$pips2 $pip"
|
||||||
|
%if 0%{?bashcomp2}
|
||||||
|
ln -s pip %{buildroot}%{bashcompdir}/$pip
|
||||||
|
%endif
|
||||||
|
;;
|
||||||
|
%if 0%{?with_python3}
|
||||||
|
pip3?*)
|
||||||
|
pips3="$pips3 $pip"
|
||||||
|
%if 0%{?bashcomp2}
|
||||||
|
ln -s pip3 %{buildroot}%{bashcompdir}/$pip
|
||||||
|
%endif
|
||||||
|
;;
|
||||||
|
%endif
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
%if 0%{?with_python3}
|
||||||
|
sed -i -e "s/^\\(complete.*\\) pip\$/\\1 $pips3/" \
|
||||||
|
-e s/_pip_completion/_pip3_completion/ \
|
||||||
|
%{buildroot}%{bashcompdir}/pip3
|
||||||
|
%endif
|
||||||
|
sed -i -e "s/^\\(complete.*\\) pip\$/\\1 $pips2/" \
|
||||||
|
%{buildroot}%{bashcompdir}/pip
|
||||||
|
|
||||||
%if 0%{?with_tests}
|
%if 0%{?with_tests}
|
||||||
%check
|
%check
|
||||||
py.test -m 'not network'
|
py.test -m 'not network'
|
||||||
@ -159,20 +203,39 @@ popd
|
|||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
%doc LICENSE.txt README.rst docs
|
%{!?_licensedir:%global license %%doc}
|
||||||
|
%license LICENSE.txt
|
||||||
|
%doc README.rst docs
|
||||||
%attr(755,root,root) %{_bindir}/pip
|
%attr(755,root,root) %{_bindir}/pip
|
||||||
%attr(755,root,root) %{_bindir}/pip2*
|
%attr(755,root,root) %{_bindir}/pip2*
|
||||||
%{python_sitelib}/pip*
|
%{python_sitelib}/pip*
|
||||||
|
%{bashcompdir}
|
||||||
|
%if 0%{?with_python3}
|
||||||
|
%exclude %{bashcompdir}/pip3*
|
||||||
|
%endif
|
||||||
|
%if 0%{?bashcomp2}
|
||||||
|
%dir %(dirname %{bashcompdir})
|
||||||
|
%endif
|
||||||
|
|
||||||
%if 0%{?with_python3}
|
%if 0%{?with_python3}
|
||||||
%files -n python3-pip
|
%files -n python3-pip
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
%doc LICENSE.txt README.rst docs
|
%license LICENSE.txt
|
||||||
|
%doc README.rst docs
|
||||||
%attr(755,root,root) %{_bindir}/pip3*
|
%attr(755,root,root) %{_bindir}/pip3*
|
||||||
%{python3_sitelib}/pip*
|
%{python3_sitelib}/pip*
|
||||||
|
%dir %{bashcompdir}
|
||||||
|
%{bashcompdir}/pip3*
|
||||||
|
%if 0%{?bashcomp2}
|
||||||
|
%dir %(dirname %{bashcompdir})
|
||||||
|
%endif
|
||||||
%endif # with_python3
|
%endif # with_python3
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Jun 30 2015 Ville Skyttä <ville.skytta@iki.fi> - 7.0.3-3
|
||||||
|
- Install bash completion
|
||||||
|
- Ship LICENSE.txt as %%license where available
|
||||||
|
|
||||||
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7.0.3-2
|
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7.0.3-2
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user