17
0

Compare commits

9 Commits

Author SHA256 Message Date
2d3f57a011 Accepting request 1284624 from devel:languages:python
- Switch to pyproject macros.

OBS-URL: https://build.opensuse.org/request/show/1284624
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-proxmoxer?expand=0&rev=5
2025-06-11 14:25:38 +00:00
83d3a71ca2 - Switch to pyproject macros.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-proxmoxer?expand=0&rev=11
2025-06-11 06:14:51 +00:00
3e90f070b2 Accepting request 1231263 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1231263
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-proxmoxer?expand=0&rev=4
2024-12-16 18:16:30 +00:00
e197157a00 Accepting request 1231198 from home:ojkastl_buildservice:Branch_devel_languages_python
update to 2.2.0

OBS-URL: https://build.opensuse.org/request/show/1231198
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-proxmoxer?expand=0&rev=9
2024-12-15 19:50:11 +00:00
8c48dc61e1 Accepting request 1202262 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1202262
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-proxmoxer?expand=0&rev=3
2024-09-22 09:06:08 +00:00
28d0faf6a9 Accepting request 1202176 from home:ojkastl_buildservice:Branch_devel_languages_python
add sle15_python_module_pythons

OBS-URL: https://build.opensuse.org/request/show/1202176
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-proxmoxer?expand=0&rev=7
2024-09-20 20:19:20 +00:00
fb3117fc51 Accepting request 1195067 from devel:languages:python
- 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

OBS-URL: https://build.opensuse.org/request/show/1195067
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-proxmoxer?expand=0&rev=2
2024-08-21 21:26:51 +00:00
c9ccf0a8c6 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-proxmoxer?expand=0&rev=5 2024-08-21 11:08:22 +00:00
5d686b9485 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
2024-08-21 11:08:03 +00:00
7 changed files with 66 additions and 15 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.2.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">336a0317123bdd8e1e4a43f789ed289487097f08</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.2.0.obscpio Normal file
View File

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

4
proxmoxer.obsinfo Normal file
View File

@@ -0,0 +1,4 @@
name: proxmoxer
version: 2.2.0
mtime: 1734228762
commit: 336a0317123bdd8e1e4a43f789ed289487097f08

View File

@@ -1,3 +1,40 @@
-------------------------------------------------------------------
Wed Jun 11 05:49:25 UTC 2025 - Steve Kowalik <steven.kowalik@suse.com>
- Switch to pyproject macros.
-------------------------------------------------------------------
Sun Dec 15 08:01:01 UTC 2024 - opensuse_buildservice@ojkastl.de
- Update to version 2.2.0:
* Bump version to 2.2.0 and add release to changelog
* Small meta/project changes
* fix: decode parameters if needed (#189)
* Don't error when Proxmox task ID is returned (#187)
* Fix commandline backends prefixing with host
* Add support to pass in an optional cert/tuple that is used in
the connection to proxmox. Usecase: proxmox is behind a service
like teleport where it proxies the connection using local
certificates after you login.
* update tests
* fix url for local requests
-------------------------------------------------------------------
Fri Sep 20 11:23:13 UTC 2024 - Johannes Kastl <opensuse_buildservice@ojkastl.de>
- add sle15_python_module_pythons
-------------------------------------------------------------------
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
-------------------------------------------------------------------
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) 2025 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,22 @@
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%{?sle15_python_module_pythons}
Name: python-proxmoxer
Version: 2.0.1
Version: 2.2.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 pip}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
# Tests
BuildRequires: %{python_module paramiko}
@@ -45,21 +50,23 @@ Python Wrapper for the Proxmox 2.x API (HTTP and SSH)
%setup -q -n proxmoxer-%{version}
%build
%python_build
%pyproject_wheel
%install
%python_install
%pyproject_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%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
%license LICENSE.txt
%{python_sitelib}/proxmoxer
%{python_sitelib}/proxmoxer-%{version}*-info
%{python_sitelib}/proxmoxer-%{version}.dist-info
%changelog