2
0
mirror of https://github.com/xcat2/confluent.git synced 2024-11-21 17:11:58 +00:00
confluent/confluent_client/confluent_client.spec.tmpl

53 lines
1.4 KiB
Cheetah
Raw Normal View History

%define name confluent_client
%define version #VERSION#
%define fversion %{lua:
sv, _ = string.gsub("#VERSION#", "[~+]", "-")
print(sv)
}
%define release 1
Summary: Client libraries and utilities for confluent
Name: %{name}
Version: %{version}
Release: %{release}
Source0: %{name}-%{fversion}.tar.gz
License: Apache2
Group: Development/Libraries
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
Prefix: %{_prefix}
BuildArch: noarch
Vendor: Lenovo
Url: http://github.com/lenovo/confluent
Obsoletes: confluent_common
%description
This package enables python development and command line access to
a confluent server.
%prep
%setup -n %{name}-%{fversion}
%build
%if "%{dist}" == ".el7"
python2 setup.py build
2022-01-11 21:02:47 +00:00
%else
2022-06-15 19:00:19 +00:00
python3 setup.py build
2019-10-04 14:54:20 +00:00
%endif
%install
%if "%{dist}" == ".el7"
python2 setup.py install --single-version-externally-managed -O1 --root=$RPM_BUILD_ROOT --record=INSTALLED_FILES --install-scripts=/opt/confluent/bin --install-purelib=/opt/confluent/lib/python
2022-01-11 21:02:47 +00:00
%else
2022-06-15 19:00:19 +00:00
python3 setup.py install --single-version-externally-managed -O1 --root=$RPM_BUILD_ROOT --record=INSTALLED_FILES --install-scripts=/opt/confluent/bin --install-purelib=/opt/confluent/lib/python
2019-10-04 14:54:20 +00:00
%endif
2014-11-04 15:41:22 +00:00
%clean
rm -rf $RPM_BUILD_ROOT
%files -f INSTALLED_FILES
2022-04-25 21:02:35 +00:00
%license /opt/confluent/share/licenses/confluent_client/LICENSE
2022-09-30 15:02:55 +00:00
%license /opt/confluent/share/licenses/confluent_client/COPYRIGHT
%defattr(-,root,root)
/opt/confluent