
Story: 2007718 Task: 40272 Depends-On: https://review.opendev.org/739486 Change-Id: I6326fe94f79694c80dbf585df7311fdde46faf9e Signed-off-by: Cole Walker <cole.walker@windriver.com>
62 lines
1.3 KiB
RPMSpec
62 lines
1.3 KiB
RPMSpec
%global app_name vault
|
|
%global pypi_name k8sapp-vault
|
|
%global sname k8sapp_vault
|
|
|
|
Name: python-%{pypi_name}
|
|
Version: 20.06
|
|
Release: %{tis_patch_ver}%{?_tis_dist}
|
|
Summary: StarlingX sysinv extensions: Vault
|
|
|
|
License: Apache-2.0
|
|
Source0: %{name}-%{version}.tar.gz
|
|
|
|
BuildArch: noarch
|
|
|
|
BuildRequires: python-setuptools
|
|
BuildRequires: python-pbr
|
|
BuildRequires: python2-pip
|
|
BuildRequires: python2-wheel
|
|
|
|
%description
|
|
StarlingX sysinv extensions: Vault K8S app
|
|
|
|
%package -n python2-%{pypi_name}
|
|
Summary: StarlingX sysinv extensions: Vault K8S app
|
|
|
|
Requires: python-pbr >= 2.0.0
|
|
Requires: sysinv >= 1.0
|
|
|
|
%description -n python2-%{pypi_name}
|
|
StarlingX sysinv extensions: Vault K8S app
|
|
|
|
%prep
|
|
%setup
|
|
# Remove bundled egg-info
|
|
rm -rf %{pypi_name}.egg-info
|
|
|
|
%build
|
|
export PBR_VERSION=%{version}
|
|
%{__python2} setup.py build
|
|
|
|
%py2_build_wheel
|
|
|
|
%install
|
|
export PBR_VERSION=%{version}.%{tis_patch_ver}
|
|
export SKIP_PIP_INSTALL=1
|
|
%{__python2} setup.py install --skip-build --root %{buildroot}
|
|
mkdir -p ${RPM_BUILD_ROOT}/plugins/%{app_name}
|
|
install -m 644 dist/*.whl ${RPM_BUILD_ROOT}/plugins/%{app_name}/
|
|
|
|
%files
|
|
%{python2_sitelib}/%{sname}
|
|
%{python2_sitelib}/%{sname}-*.egg-info
|
|
|
|
%package wheels
|
|
Summary: %{name} wheels
|
|
|
|
%description wheels
|
|
Contains python wheels for %{name}
|
|
|
|
%files wheels
|
|
/plugins/*
|