import CS pykickstart-3.32.14-1.el9

This commit is contained in:
eabdullin 2025-03-11 08:00:49 +00:00
parent fbcb196405
commit ced1fcc590
5 changed files with 32 additions and 20 deletions

2
.gitignore vendored
View File

@ -1 +1 @@
SOURCES/pykickstart-3.32.11.tar.gz
SOURCES/pykickstart-3.32.14.tar.gz

View File

@ -1 +1 @@
ce8269b1693305f43d1ad9758f015b7edfc139d1 SOURCES/pykickstart-3.32.11.tar.gz
eb866873c8e922203c5b96d4b1bdcbbbdcec8ef2 SOURCES/pykickstart-3.32.14.tar.gz

View File

@ -1,11 +0,0 @@
-----BEGIN PGP SIGNATURE-----
iQEzBAABCgAdFiEEtMa0UeT6i0IyyhkeEX6MFo7+On8FAmVvXckACgkQEX6MFo7+
On9S4gf+MMRlPLpcPYfxH0JAS0l1x0y+DYlcAYMlcQo75t0Yu57B+Is6SeVRYUVt
c5WNIk0fIKMhLJDTsDqm1UFYQcAqn0d5sZKH65+IMATEY/Z2+1crbfu9sB8h8hcQ
adzHxyjm05uadaHTBrHvk5oFVZCw7NE2GSXVuGMTgtIHDXH0vyHZq8dCNb2482cC
6X2HMce29RwCZcQa2rm2vUxWycnTIdwl6Qbv9F7g1p9qzrTivJlNoQQHDipQVhG8
omgd5bk922StJ0PNgKWycY9BIoRC9aOukos9o+Gkd1LU+OIcTXCUiqte2y+j90yG
DSOlqTUBdscJlHpukngzsCEzyk998g==
=/wKX
-----END PGP SIGNATURE-----

View File

@ -0,0 +1,11 @@
-----BEGIN PGP SIGNATURE-----
iQEzBAABCgAdFiEEtMa0UeT6i0IyyhkeEX6MFo7+On8FAmeby8EACgkQEX6MFo7+
On+LnAf+OwWJn4wnoCcxHpoXO/2isY/RSG5l0o29MjBFfsONW8VE3/7G/Ah9gy1M
Iobp08WwbCZ5Gu9np/9pmJjDJxKlGqwJ8msDEmImEL39R7DlDdH7vcyceoaSiDTq
6O2i/19slMbyWV51H7Zi3toQCBO9MfIyVLJV8BHFVTcDhKheIM3tMarT8OnCognI
201RUyTf8x5r3OhA2Pb0283Lf2XDelWhDdyoO2jcOIzmOOCVM5TRmr+Np+ABVHfD
YnTTD2wP/JSccPZ7ODkzaaFBH8M+UsCHRwtCr+c6kzSb9bXS2+WkEcxnidg79omF
/BQi71m/SpzmIRi5rbiL3CnvcmmR5A==
=+p0n
-----END PGP SIGNATURE-----

View File

@ -1,10 +1,9 @@
# Disable tests by default because they fail to run inside mock builds
# at the moment, but can run locally. To build and run tests, do:
# rpmbuild -ba --with runtests pykickstart.spec
%bcond_with runtests
# Enable tests by default. To disable them use:
# rpmbuild -ba --without runtests pykickstart.spec
%bcond_without runtests
Name: pykickstart
Version: 3.32.11
Version: 3.32.14
Release: 1%{?dist}
License: GPLv2 and MIT
Summary: Python utilities for manipulating kickstart files.
@ -26,7 +25,6 @@ BuildRequires: make
# Only required when building with runtests
%if %{with runtests}
BuildRequires: python3-coverage
BuildRequires: python3-sphinx
%endif
@ -55,7 +53,7 @@ make PYTHON=%{__python3} DESTDIR=%{buildroot} install
%check
%if %{with runtests}
make PYTHON=%{__python3} test
LC_ALL=C make PYTHON=%{__python3} test-no-coverage
%endif
%files
@ -79,6 +77,20 @@ make PYTHON=%{__python3} test
%{python3_sitelib}/pykickstart*.egg-info
%changelog
* Thu Jan 30 2025 Brian C. Lane <bcl@redhat.com> - 3.32.14-1
- Update %%certificate section documentation (rvykydal)
Related: RHEL-61432
- Make %%certificate section option --dir mandatory. (rvykydal)
Resolves: RHEL-76501
* Fri Jan 17 2025 Brian C. Lane <bcl@redhat.com> - 3.32.13-1
- Switch to using tmt based tests and running unit tests during build
Related: RHEL-61432
* Wed Jan 15 2025 Brian C. Lane <bcl@redhat.com> - 3.32.12-1
- Add support for inline certificates with `%certificate` section (k.koukiou)
Resolves: RHEL-61432
* Tue Dec 05 2023 Brian C. Lane <bcl@redhat.com> - 3.32.11-1
- tox: Only run unit tests for python 3.6 (bcl)
Related: RHEL-17662