forked from pool/pyenv
161 lines
4.4 KiB
RPMSpec
161 lines
4.4 KiB
RPMSpec
![]() |
#
|
||
|
# spec file for package pyenv
|
||
|
#
|
||
|
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
||
|
#
|
||
|
# 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 http://bugs.opensuse.org/
|
||
|
#
|
||
|
|
||
|
|
||
|
%define pyenv_dir %{_libexecdir}/pyenv
|
||
|
#
|
||
|
Name: pyenv
|
||
|
Version: 1.2.7
|
||
|
Release: 0
|
||
|
Summary: Simple Python Version Management
|
||
|
License: MIT
|
||
|
Group: Development/Languages/Python
|
||
|
Url: https://github.com/yyuu/pyenv
|
||
|
Source0: https://github.com/pyenv/pyenv/archive/v%{version}.tar.gz
|
||
|
Source1: %{name}-rpmlintrc
|
||
|
Source2: %{name}.rst
|
||
|
BuildRequires: fdupes
|
||
|
BuildRequires: gcc
|
||
|
BuildRequires: make
|
||
|
BuildRequires: python3-Sphinx
|
||
|
BuildRequires: zsh
|
||
|
# BuildArch: noarch
|
||
|
|
||
|
%description
|
||
|
pyenv lets you easily switch between multiple versions of Python.
|
||
|
It is simple, unobtrusive, and follows the UNIX tradition of single-purpose
|
||
|
tools that do one thing well.
|
||
|
|
||
|
This project was forked from rbenv and ruby-build, and modified for Python.
|
||
|
|
||
|
%package bash-completion
|
||
|
Summary: Bash Completion for %{name}
|
||
|
Group: System/Management
|
||
|
Requires: %{name} = %{version}
|
||
|
Supplements: packageand(pyenv:bash-completion)
|
||
|
BuildArch: noarch
|
||
|
|
||
|
%description bash-completion
|
||
|
Bash command line completion support for %{name}.
|
||
|
|
||
|
%package zsh-completion
|
||
|
Summary: Zsh Completion for %{name}
|
||
|
Group: System/Management
|
||
|
Requires: %{name} = %{version}
|
||
|
Supplements: packageand(pyenv:zsh)
|
||
|
BuildArch: noarch
|
||
|
|
||
|
%description zsh-completion
|
||
|
Zsh command line completion support for %{name}.
|
||
|
|
||
|
%prep
|
||
|
%setup -q
|
||
|
install -D %{SOURCE2} docs/%{name}.rst
|
||
|
|
||
|
%build
|
||
|
##
|
||
|
pushd src
|
||
|
%configure
|
||
|
make %{?_smp_mflags}
|
||
|
popd
|
||
|
|
||
|
##
|
||
|
cat << EOF > docs/conf.py
|
||
|
# The master toctree document.
|
||
|
master_doc = '%{name}'
|
||
|
|
||
|
project = '%{name}'
|
||
|
copyright = '2017, Yuu Yamashita'
|
||
|
author = 'Yuu Yamashita'
|
||
|
# The short X.Y version.
|
||
|
version = '%{version}'
|
||
|
# The full version, including alpha/beta/rc tags.
|
||
|
release = version
|
||
|
|
||
|
# Usually you set "language" from the command line for these cases.
|
||
|
language = 'en'
|
||
|
|
||
|
man_pages = [
|
||
|
(master_doc, 'pyenv', 'Simple Python Version Management',
|
||
|
[author], 1)
|
||
|
]
|
||
|
man_show_urls=True
|
||
|
EOF
|
||
|
|
||
|
sphinx-build -b man -v docs man/
|
||
|
|
||
|
%install
|
||
|
mkdir -p %{buildroot}%{pyenv_dir} \
|
||
|
%{buildroot}%{pyenv_dir}/plugins \
|
||
|
%{buildroot}%{pyenv_dir}/shims/ \
|
||
|
%{buildroot}%{pyenv_dir}/share/python-build/ \
|
||
|
%{buildroot}%{_sysconfdir}/pyenv.d/ \
|
||
|
%{buildroot}%{_bindir}
|
||
|
|
||
|
cp -R libexec %{buildroot}%{pyenv_dir}
|
||
|
cp -R bin %{buildroot}%{pyenv_dir}
|
||
|
cp -a pyenv.d %{buildroot}%{_sysconfdir}/
|
||
|
|
||
|
## Install shell completions:
|
||
|
install -D -m0644 completions/pyenv.bash %{buildroot}%{_sysconfdir}/bash_completion.d/pyenv
|
||
|
install -D -m0644 completions/pyenv.zsh %{buildroot}%{_sysconfdir}/zsh_completion.d/pyenv
|
||
|
|
||
|
## Install manpage
|
||
|
install -D -m0644 man/%{name}.1 %{buildroot}%{_mandir}/man1/%{name}.1
|
||
|
pushd %{buildroot}%{_mandir}/man1/
|
||
|
ln -s %{name}.1 python-build.1
|
||
|
popd
|
||
|
|
||
|
ln -s %{pyenv_dir}/bin/pyenv %{buildroot}%{_bindir}/pyenv
|
||
|
|
||
|
## python-build
|
||
|
pushd plugins/python-build
|
||
|
install -m755 bin/* %{buildroot}%{pyenv_dir}/libexec
|
||
|
cp -a share/python-build %{buildroot}%{pyenv_dir}/share/
|
||
|
popd
|
||
|
|
||
|
%fdupes %{buildroot}%{pyenv_dir}
|
||
|
|
||
|
%files
|
||
|
%doc CHANGELOG.md COMMANDS.md README.md
|
||
|
%license LICENSE
|
||
|
%exclude %{_sysconfdir}/pyenv.d/rehash/*/.gitignore
|
||
|
|
||
|
%config %{_sysconfdir}/pyenv.d/rehash/*.d/default.list
|
||
|
%config %{_sysconfdir}/pyenv.d/exec/pip-rehash.bash
|
||
|
%config %{_sysconfdir}/pyenv.d/rehash/*.bash
|
||
|
|
||
|
%{pyenv_dir}
|
||
|
%dir %{_sysconfdir}/pyenv.d
|
||
|
%dir %{_sysconfdir}/pyenv.d/exec/
|
||
|
%dir %{_sysconfdir}/pyenv.d/rehash/
|
||
|
%dir %{_sysconfdir}/pyenv.d/rehash/*.d/
|
||
|
|
||
|
%{_sysconfdir}/pyenv.d/exec/pip-rehash
|
||
|
%{_bindir}/pyenv
|
||
|
#
|
||
|
%{_mandir}/man1/%{name}.1%{ext_man}
|
||
|
%{_mandir}/man1/python-build.1%{ext_man}
|
||
|
|
||
|
%files bash-completion
|
||
|
%config %{_sysconfdir}/bash_completion.d/pyenv
|
||
|
|
||
|
%files zsh-completion
|
||
|
%config %{_sysconfdir}/zsh_completion.d/pyenv
|
||
|
|
||
|
%changelog
|