From 3b0ac0f32c6616b5b15e84ee312abc185d18ab68 Mon Sep 17 00:00:00 2001 From: Andrew Heath Date: Fri, 30 Aug 2024 12:33:47 -0400 Subject: Inital commit for python3-infoblox-client --- infoblox-client-0.6.0-1.fc40.src.rpm | Bin 0 -> 239469 bytes infoblox-client.spec | 59 +++++++++++++++++++++++++++++++++++ 2 files changed, 59 insertions(+) create mode 100644 infoblox-client-0.6.0-1.fc40.src.rpm create mode 100644 infoblox-client.spec diff --git a/infoblox-client-0.6.0-1.fc40.src.rpm b/infoblox-client-0.6.0-1.fc40.src.rpm new file mode 100644 index 0000000..5774499 Binary files /dev/null and b/infoblox-client-0.6.0-1.fc40.src.rpm differ diff --git a/infoblox-client.spec b/infoblox-client.spec new file mode 100644 index 0000000..350531f --- /dev/null +++ b/infoblox-client.spec @@ -0,0 +1,59 @@ +Name: infoblox-client +Version: 0.6.0 +Release: 1%{?dist} +Summary: Client for interacting with Infoblox NIOS over WAPI + +License: Apache-2.0 +URL: https://github.com/infobloxopen/infoblox-client +Source: %{pypi_source %name} + +BuildArch: noarch +BuildRequires: python3-devel + +%global _description %{expand: +Client for interacting with Infoblox NIOS over WAPI.} + +%description %_description + +%package -n python3-%{name} +Summary: %{summary} + +%description -n python3-%{name} %_description + + + +%prep +%autosetup -p1 -n %{name}-%{version} + + +%generate_buildrequires +%pyproject_buildrequires -t + + +%build +%pyproject_wheel + + +%install +%pyproject_install + +# Here, "pello" is the name of the importable module. +%pyproject_save_files -l infoblox_client + + +%check +%tox + + +# Note that there is no %%files section for +# the unversioned python module, python-pello. + +# For python3-pello, %%{pyproject_files} handles code files and %%license, +# but executables and documentation must be listed in the spec file: + +%files -n python3-%{name} -f %{pyproject_files} +%doc README.rst + + +%changelog +%autochangelog -- cgit