Merged update from upstream sources
This is an automated DistroBaker update from upstream sources. If you do not know what this is about or would like to opt out, contact the OSCI team. Source: https://src.fedoraproject.org/rpms/pykickstart.git#66e138ab8d745db78dc8cc8a9072d8103e94faa9
This commit is contained in:
parent
afaf978304
commit
9e2a5bc36f
2
.gitignore
vendored
2
.gitignore
vendored
@ -216,3 +216,5 @@ pykickstart-1.78.tar.gz
|
||||
/pykickstart-3.30.tar.gz.asc
|
||||
/pykickstart-3.31.tar.gz
|
||||
/pykickstart-3.31.tar.gz.asc
|
||||
/pykickstart-3.32.tar.gz
|
||||
/pykickstart-3.32.tar.gz.asc
|
||||
|
||||
@ -4,7 +4,7 @@
|
||||
%bcond_with runtests
|
||||
|
||||
Name: pykickstart
|
||||
Version: 3.31
|
||||
Version: 3.32
|
||||
Release: 1%{?dist}
|
||||
License: GPLv2 and MIT
|
||||
Summary: Python utilities for manipulating kickstart files.
|
||||
@ -18,14 +18,18 @@ Source1: %{name}-%{version}.tar.gz.asc
|
||||
BuildArch: noarch
|
||||
|
||||
BuildRequires: gettext
|
||||
BuildRequires: python3-coverage
|
||||
BuildRequires: python3-devel
|
||||
BuildRequires: python3-requests
|
||||
BuildRequires: python3-setuptools
|
||||
BuildRequires: python3-six
|
||||
BuildRequires: python3-sphinx
|
||||
BuildRequires: make
|
||||
|
||||
# Only required when building with runtests
|
||||
%if %{with runtests}
|
||||
BuildRequires: python3-coverage
|
||||
BuildRequires: python3-sphinx
|
||||
%endif
|
||||
|
||||
Requires: python3-kickstart = %{version}-%{release}
|
||||
|
||||
%description
|
||||
@ -75,6 +79,37 @@ make PYTHON=%{__python3} test
|
||||
%{python3_sitelib}/pykickstart*.egg-info
|
||||
|
||||
%changelog
|
||||
* Mon Jan 18 2021 Brian C. Lane <bcl@redhat.com> - 3.32-1
|
||||
- Conditionally BuildRequire coverage and sphinx for runtests (bcl)
|
||||
Resolves: rhbz#1916735
|
||||
- Change the lilo command removal to use RemovedCommand (vslavik)
|
||||
- Change the lilocheck command removal to use RemovedCommand (vslavik)
|
||||
- Fix test for the removed "interactive" command (vslavik)
|
||||
- Change the langsupport command removal to use RemovedCommand (vslavik)
|
||||
- Change the monitor command removal to use RemovedCommand (vslavik)
|
||||
- Change the mouse command removal to use RemovedCommand (vslavik)
|
||||
- Change the upgrade command removal to use RemovedCommand (vslavik)
|
||||
- Fix ksverdiff detection of removed commands (vslavik)
|
||||
- Check warnings of the deprecated kickstart commands (vponcova)
|
||||
- Remove the install command (vslavik)
|
||||
- Remove the deviceprobe command (vslavik)
|
||||
- Remove the device command (vslavik)
|
||||
- Remove the dmraid command (vslavik)
|
||||
- Remove the multipath command (vslavik)
|
||||
- Fix deprecation test for removed commands (vslavik)
|
||||
- Switch interactive removal to use RemovedCommand (bcl)
|
||||
- Add RemovedCommand for removing commands and documenting them (bcl)
|
||||
- Remove support for the updates command without an URL (vponcova)
|
||||
- Document how to deprecate commands and options (bcl)
|
||||
- Remove the ignoredisk --interactive option (vslavik)
|
||||
- Remove the partition --active option (vslavik)
|
||||
- Deprecate the %traceback section (vslavik)
|
||||
- Add missing .coveragerc file (bcl)
|
||||
- Switch to using GitHub Actions instead of Travis CI (bcl)
|
||||
- Add support for running via tox (bcl)
|
||||
- Deprecate the method command (vslavik)
|
||||
- Remove the bootloader option --upgrade (vslavik)
|
||||
|
||||
* Thu Nov 05 2020 Brian C. Lane <bcl@redhat.com> - 3.31-1
|
||||
- Add make to BuildRequires, buildroot is removing it.
|
||||
- Deprecate the autostep command (vslavik)
|
||||
|
||||
4
sources
4
sources
@ -1,2 +1,2 @@
|
||||
SHA512 (pykickstart-3.31.tar.gz) = 20d76090b938393d87a56260cc4a84304e34d8bb9c63008a2a7873892491dfdbc2d4a46463521a09061c76926a7a4ce2ba9478175cc8b9e94df120b07fa406f3
|
||||
SHA512 (pykickstart-3.31.tar.gz.asc) = 676e0a546b8487b286798894ff6194a4455badd76c4609506d8734f52a971b1a207e8f0cc39836cd65f744dd00b198bc0f82b2fadc08c9619234a98944b64843
|
||||
SHA512 (pykickstart-3.32.tar.gz) = 441781eaf570618f419807d2eba746a470770799149321149a1ca19ca297677e1990f0e5451f1a082fd911ec405896b99bf49780a92034c03113389b269af5df
|
||||
SHA512 (pykickstart-3.32.tar.gz.asc) = 2f74c00e5b84f5ba3055b1fe85c369f5b7664bdec6385d708f9cb5f511074cf767a98ab2529f68c3ac20ad707fcd92538592231e00c5cd55845f43e200269e00
|
||||
|
||||
@ -8,6 +8,8 @@
|
||||
|
||||
required_packages:
|
||||
- fedpkg
|
||||
- python3-sphinx
|
||||
- python3-coverage
|
||||
|
||||
tests:
|
||||
- simple:
|
||||
|
||||
Loading…
Reference in New Issue
Block a user