14
0

Accepting request 1194491 from home:ojkastl_buildservice:Branch_devel_languages_python

update to 2.1.0

OBS-URL: https://build.opensuse.org/request/show/1194491
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-proxmoxer?expand=0&rev=4
This commit is contained in:
2024-08-21 11:08:03 +00:00
committed by Git OBS Bridge
parent 9d576b7a36
commit 5d686b9485
7 changed files with 54 additions and 12 deletions

View File

@@ -1,16 +1,19 @@
<services>
<service name="tar_scm" mode="disabled">
<service name="obs_scm" mode="manual">
<param name="url">https://github.com/proxmoxer/proxmoxer</param>
<param name="scm">git</param>
<param name="exclude">.git</param>
<param name="revision">2.0.1</param>
<param name="revision">2.1.0</param>
<param name="versionformat">@PARENT_TAG@</param>
<param name="changesgenerate">enable</param>
</service>
<service name="set_version" mode="disabled">
<service name="set_version" mode="manual">
<param name="basename">proxmoxer</param>
</service>
<service name="recompress" mode="disabled">
<!-- services below are running at buildtime -->
<service name="tar" mode="buildtime">
</service>
<service name="recompress" mode="buildtime">
<param name="file">*.tar</param>
<param name="compression">gz</param>
</service>

View File

@@ -1,4 +1,4 @@
<servicedata>
<service name="tar_scm">
<param name="url">https://github.com/proxmoxer/proxmoxer</param>
<param name="changesrevision">cdcb40da0d3cd58e2f0588a6eb10278379f7dd34</param></service></servicedata>
<param name="changesrevision">3156b099475307f4062868cfe287d5e6248225a4</param></service></servicedata>

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c77eed2c57c841d571edb5e3a8836102d951081a06c8ecc6740f3315f18d3fe0
size 32102

3
proxmoxer-2.1.0.obscpio Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4ef4b5dd1f591ac835c8c74eb0eb05cf2d7f1595f278c2022c78c9b4ab4641a8
size 192011

4
proxmoxer.obsinfo Normal file
View File

@@ -0,0 +1,4 @@
name: proxmoxer
version: 2.1.0
mtime: 1723319993
commit: 3156b099475307f4062868cfe287d5e6248225a4

View File

@@ -1,3 +1,34 @@
-------------------------------------------------------------------
Sat Aug 17 14:33:26 UTC 2024 - opensuse_buildservice@ojkastl.de
- Update to version 2.1.0:
* Bump version 2.1.0 and changelog
* Remove unneeded section in test mock
* Fix improper spliting of non-exec QEMU commands
* Remove support for py3.7; Update pre-commit deps
* Add 3.12 to CI matrix
* Update devcontainer to modern unified schema
-------------------------------------------------------------------
Sat Aug 17 14:12:52 UTC 2024 - Johannes Kastl <opensuse_buildservice@ojkastl.de>
- update to 2.1.0:
* Improvement (docs): Update Readme with updated example (Rob
Wolinski)
* Addition (tools): Added Files tools (John Hollowell)
* Improvement (all): Add repr to some classes and add to tests
(John Hollowell)
* Bugfix (all): Correct metadata to match supported Python
versions (3.6+) (Alexei Znamensky)
* Bugfix (https): Fix BytesWarning when logging response
status/content (Walter Doekes)
* Improvement (meta): Update devcontainer to modern unified
schema (John Hollowell)
* Improvement (meta): Add 3.12 to CI matrix, remove 3.7 testing
(John Hollowell)
* Improvement (all): Fix improper spliting of non-exec QEMU
commands (John Hollowell)
-------------------------------------------------------------------
Wed Feb 22 12:55:53 UTC 2023 - Johannes Kastl <kastl@b1-systems.de>

View File

@@ -1,7 +1,7 @@
#
# spec file for package python-proxmoxer
#
# Copyright (c) 2023 SUSE LLC
# 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
@@ -15,17 +15,19 @@
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
Name: python-proxmoxer
Version: 2.0.1
Version: 2.1.0
Release: 0
Summary: Python Wrapper for the Proxmox 2x API (HTTP and SSH)
License: MIT
URL: https://github.com/proxmoxer/proxmoxer/
# the Pypi tarball does not contain the tests directory
Source: proxmoxer-%{version}.tar.gz
BuildRequires: python-rpm-macros
BuildRequires: %{python_module base >= 3.8}
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
# Tests
BuildRequires: %{python_module paramiko}
@@ -54,7 +56,9 @@ Python Wrapper for the Proxmox 2.x API (HTTP and SSH)
%check
# remove tests that need the ancient openssh-wrapper module
rm -f ./tests/test_openssh.py
%pytest -k 'not test_timeout' --cov ./tests/
IGNORED_CHECKS="test_timeout"
IGNORED_CHECKS="${IGNORED_CHECKS} or test_repr_openssh"
%pytest -k "not (${IGNORED_CHECKS})" --cov ./tests/
%files %{python_files}
%doc CHANGELOG.md README.rst