Sync from SUSE:SLFO:Main python-instance-billing-flavor-check revision c87190a1d6353ec2a6b65e16b470a37a

This commit is contained in:
Adrian Schröter 2024-05-03 21:04:45 +02:00
commit a23ee0d362
4 changed files with 130 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

BIN
python-instance-billing-flavor-check-0.0.6.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -0,0 +1,52 @@
-------------------------------------------------------------------
Fri Jan 19 15:31:53 UTC 2024 - Robert Schweikert <rjschwei@suse.com>
- Version 0.0.6 (bsc#1218561)
Support proxy setup on the client to access the update infrastructure
API
-------------------------------------------------------------------
Thu Jan 18 17:28:42 UTC 2024 - Jesús Bermúdez Velázquez <jesus.bv@suse.com>
- Version 0.0.5
Add IPv6 support (bsc#1218739)
-------------------------------------------------------------------
Wed Nov 15 09:30:24 UTC 2023 - Jesús Bermúdez Velázquez <jesus.bv@suse.com>
- Version 0.0.4
Run the command as sudo only (bsc#1217696, bsc#1217695)
-------------------------------------------------------------------
Thu Jul 20 13:28:02 UTC 2023 - Jesús Bermúdez Velázquez <jesus.bv@suse.com>
- Version 0.0.3
Handle exception for Python 3.4
-------------------------------------------------------------------
Mon Jul 17 09:04:32 UTC 2023 - Jesús Bermúdez Velázquez <jesus.bv@suse.com>
- Add reference
Include PAYG checker package in SLE (jsc#PED-4791)
-------------------------------------------------------------------
Fri Jul 14 15:43:20 UTC 2023 - Jesús Bermúdez Velázquez <jesus.bv@suse.com>
- Version 0.0.2
Handle IPv6 enabled on /etc/hosts
-------------------------------------------------------------------
Fri Jun 9 16:49:23 UTC 2023 - Jesús Bermúdez Velázquez <jesus.bv@suse.com>
- Lincese in spdx format
-------------------------------------------------------------------
Fri Jun 9 16:25:04 UTC 2023 - Jesús Bermúdez Velázquez <jesus.bv@suse.com>
- Update license for initial build
-------------------------------------------------------------------
Fri Jun 9 14:48:16 UTC 2023 - Jesús Bermúdez Velázquez <jesus.bv@suse.com>
- Initial build
+ Version 0.0.1

View File

@ -0,0 +1,52 @@
#
# spec file for package instance-billing-type-check
#
# Copyright (c) 2023 SUSE LINUX GmbH, Nuernberg, Germany.
#
# 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 http://bugs.opensuse.org/
#
%define skip_python2 1
Summary: Cloud Billing Flavour Check
Name: python-instance-billing-flavor-check
Version: 0.0.6
Release: 0
License: GPL-3.0
Group: Productivity/Networking/Web/Utilities
URL: https://github.com/SUSE-Enceladus/instance-billing-flavor-check
Source0: %{name}-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
Requires: python3
Requires: python3-lxml
Requires: python3-requests
BuildRequires: python3-setuptools
BuildRequires: python-rpm-macros
%description
Check if instance is PAYG or BYOS
%prep
%setup -q
%build
python3 setup.py build
%install
python3 setup.py install --prefix=%{_prefix} --root=%{buildroot}
%files
%doc README.md
%license LICENSE
%{_bindir}/instance-flavor-check
%{python_sitelib}/instance_billing_flavor_check*
%changelog