15
0
Files
python-cloudflare/python-cloudflare.spec
Dirk Mueller cb9ab4a50a - update to 2.19.4:
* HTTPError can show up when you plan with the URL value
  * #186 - explain how to maps arguments
  * #188 - url now uses strings - as it should!
  * #190 - remove Python 3.5 support because of f-string
  * Add version 3.0 code and pinning info to README
  * more api endpoints
  * now that AI methods are in library - no need for
    CLOUDFLARE_API_EXTRAS code more api endpoints
  * remove f-string for Python <3.6 compatibility
  * added documentation urls, etc for pypi
  * finally removed the VOID calls, added /ai/run endpoints
  * still testing docs
  * start of longstanding need for documentation, update of
    copyright string
  * moved all requests
    code/exceptions into network where it belongs, import
    cleanup, exception handling cleanup
  * handle python < 3.10 to get utc time correctly
  * document cli4 having --header flag
  * cli4 has --header flag, plus http_headers needed some
    more syntax checking
  * added Python 3.5 note
  * remove excessive import
  * improved date/time rfc/iso
    code, lint fixes

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-cloudflare?expand=0&rev=36
2024-05-03 07:33:47 +00:00

81 lines
2.4 KiB
RPMSpec

#
# spec file for package python-cloudflare
#
# Copyright (c) 2024 SUSE LLC
#
# 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 https://bugs.opensuse.org/
#
%{?sle15_python_module_pythons}
Name: python-cloudflare
Version: 2.19.4
Release: 0
Summary: Python wrapper for the Cloudflare v4 API
License: MIT
URL: https://github.com/cloudflare/python-cloudflare
Source: https://files.pythonhosted.org/packages/source/c/cloudflare/cloudflare-%{version}.tar.gz
BuildRequires: %{python_module PyYAML}
BuildRequires: %{python_module beautifulsoup4}
BuildRequires: %{python_module jsonlines}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module requests >= 2.4.2}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-PyYAML
Requires: python-beautifulsoup4
Requires: python-jsonlines
Requires: python-requests >= 2.4.2
Requires(post): update-alternatives
Requires(postun): update-alternatives
BuildArch: noarch
%python_subpackages
%description
Python wrapper for the Cloudflare Client API v4.
%prep
%setup -q -n cloudflare-%{version}
%build
%pyproject_wheel
%install
%pyproject_install
%python_clone -a %{buildroot}%{_bindir}/cli4
%python_clone -a %{buildroot}%{_mandir}/man1/cli4.1
# remove examples from sitelib
%python_expand rm -rf %{buildroot}%{$python_sitelib}/examples
%python_expand %fdupes %{buildroot}%{$python_sitelib}
#%%check
# there is one test, but even upstream does not launch it
%post
%python_install_alternative cli4 cli4.1
%postun
%python_uninstall_alternative cli4 cli4.1
%files %{python_files}
%doc README.md
%license LICENSE
%python_alternative %{_bindir}/cli4
%python_alternative %{_mandir}/man1/cli4.1
%{python_sitelib}/CloudFlare
%{python_sitelib}/cli4
%{python_sitelib}/cloudflare-%{version}.dist-info
%changelog