From 4f20c3720f9b6c246ea40fdb3bcc7feb1876e9b7 Mon Sep 17 00:00:00 2001 From: David Cantrell Date: Mon, 28 Jan 2019 10:35:17 -0500 Subject: [PATCH] New release: 3.19 (dcantrell) Run gen_commands_docs and gen_sections_docs with python3. (dcantrell) Use python3-sphinx in docs/Makefile (dcantrell) Nope, this way for make po-pull and make release. (dcantrell) Make sure 'make release' runs 'make po-pull' (dcantrell) RHEL8Handler: include ssl certificate options (lars) Add options for ssl certs on url and repo commands (lars) parser: use collections.abc to import Iterator (lars) test: Remove unused import (lars) tests: Fix ksflatten tests (lars) tests: Remove KickstartValueError test case (lars) tests: Remove test case that's actually valid (lars) Fix pylint warning W0102 dangerous-default-value (lars) docs/versionremoved: fix sphinx import path (lars) travis: don't override PYTHON with /usr/bin/python3 (lars) Refactor ksverdiff and add tests for it (atodorov) Patch ksverdiff so it works with argparse (atodorov) Add main() function to scripts to allow module to be imported (atodorov) Refactor tools/ksflatten.py and add tests for it (atodorov) Add more tests for load.py (atodorov) Issue DeprecationWarning for KickstartValueError and test it for completeness (atodorov) More test coverage for autopart (atodorov) Improve tests for updates (atodorov) Improved tests for timezone (atodorov) Improve tests for selinux (atodorov) Improve test for rootpw (atodorov) Refactoring for reboot.py and more tests (atodorov) Refactor monitor.py and add more tests (atodorov) Add more tests for logvol.py (atodorov) Refactoring for driverdisk.py (atodorov) Refactor and more tests for btrfs.py (atodorov) Add test to kill remaining mutant (atodorov) Refactor in dmraid.py (atodorov) More tests and refactoring for volgroup.py (atodorov) Improve displaymode tests (atodorov) Fix the kickstart section %packages (vponcova) Fix versions in parsers of kickstart sections (vponcova) Fix warnings for deprecated options of kickstart commands (vponcova) Fix pylint errors (vponcova) Update kickstart-docs.rst (jason.gerfen) Kickstart usage example link (jason.gerfen) Document module stream installation (mkolman) Mention all man pages in all "SEE ALSO" sections (tim) Fix typo in ksshell man page (tim) Normalize the mount point (vponcova) Clarify the --when= parameter error message. (dcantrell) --- .gitignore | 2 ++ pykickstart.spec | 56 +++++++++++++++++++++++++++++++++++++++++++++--- sources | 3 ++- 3 files changed, 57 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 571b1db..af22c3b 100644 --- a/.gitignore +++ b/.gitignore @@ -190,3 +190,5 @@ pykickstart-1.78.tar.gz /pykickstart-3.16.tar.gz /pykickstart-3.17.tar.gz /pykickstart-3.18.tar.gz +/pykickstart-3.19.tar.gz +/pykickstart-3.19.tar.gz.asc diff --git a/pykickstart.spec b/pykickstart.spec index 5936fee..03f3ebc 100644 --- a/pykickstart.spec +++ b/pykickstart.spec @@ -10,7 +10,7 @@ %bcond_with runtests Name: pykickstart -Version: 3.18 +Version: 3.19 Release: 1%{?dist} License: GPLv2 and MIT Group: System Environment/Libraries @@ -20,6 +20,7 @@ Url: http://fedoraproject.org/wiki/pykickstart # our distribution. Thus the source is only available from # within this srpm. Source0: %{name}-%{version}.tar.gz +Source1: %{name}-%{version}.tar.gz.asc BuildArch: noarch @@ -45,8 +46,8 @@ BuildRequires: python3-sphinx Requires: python3-kickstart = %{version}-%{release} %description -Python utilities for manipulating kickstart files. The Python 2 and 3 libraries -can be found in the packages python-kickstart and python3-kickstart +Python utilities for manipulating kickstart files. The Python 2 and 3 +libraries can be found in the packages python-kickstart and python3-kickstart respectively. %if %{with python2} @@ -139,6 +140,55 @@ make PYTHON=%{__python3} test %{python3_sitelib}/pykickstart*.egg-info %changelog +* Mon Jan 28 2019 David Cantrell - 3.19-1 +- New release: 3.19 (dcantrell) +- Run gen_commands_docs and gen_sections_docs with python3. (dcantrell) +- Use python3-sphinx in docs/Makefile (dcantrell) +- Nope, this way for make po-pull and make release. (dcantrell) +- Make sure 'make release' runs 'make po-pull' (dcantrell) +- RHEL8Handler: include ssl certificate options (lars) +- Add options for ssl certs on url and repo commands (lars) +- parser: use collections.abc to import Iterator (lars) +- test: Remove unused import (lars) +- tests: Fix ksflatten tests (lars) +- tests: Remove KickstartValueError test case (lars) +- tests: Remove test case that's actually valid (lars) +- Fix pylint warning W0102 dangerous-default-value (lars) +- docs/versionremoved: fix sphinx import path (lars) +- travis: don't override PYTHON with /usr/bin/python3 (lars) +- Refactor ksverdiff and add tests for it (atodorov) +- Patch ksverdiff so it works with argparse (atodorov) +- Add main() function to scripts to allow module to be imported (atodorov) +- Refactor tools/ksflatten.py and add tests for it (atodorov) +- Add more tests for load.py (atodorov) +- Issue DeprecationWarning for KickstartValueError and test it for + completeness (atodorov) +- More test coverage for autopart (atodorov) +- Improve tests for updates (atodorov) +- Improved tests for timezone (atodorov) +- Improve tests for selinux (atodorov) +- Improve test for rootpw (atodorov) +- Refactoring for reboot.py and more tests (atodorov) +- Refactor monitor.py and add more tests (atodorov) +- Add more tests for logvol.py (atodorov) +- Refactoring for driverdisk.py (atodorov) +- Refactor and more tests for btrfs.py (atodorov) +- Add test to kill remaining mutant (atodorov) +- Refactor in dmraid.py (atodorov) +- More tests and refactoring for volgroup.py (atodorov) +- Improve displaymode tests (atodorov) +- Fix the kickstart section %packages (vponcova) +- Fix versions in parsers of kickstart sections (vponcova) +- Fix warnings for deprecated options of kickstart commands (vponcova) +- Fix pylint errors (vponcova) +- Update kickstart-docs.rst (jason.gerfen) +- Kickstart usage example link (jason.gerfen) +- Document module stream installation (mkolman) +- Mention all man pages in all "SEE ALSO" sections (tim) +- Fix typo in ksshell man page (tim) +- Normalize the mount point (vponcova) +- Clarify the --when= parameter error message. (dcantrell) + * Wed Aug 29 2018 Chris Lumens - 3.18-1 - New release: 3.18 (clumens) - Use the RHEL8 handler to generate RHEL docs. (clumens) diff --git a/sources b/sources index 08115b2..461453f 100644 --- a/sources +++ b/sources @@ -1 +1,2 @@ -SHA512 (pykickstart-3.18.tar.gz) = d143e520cb943fb8f9289ba26ea05fea0f7531ee1b2d91add7f17ab17eb2e0ce4214c17eb93aede23e51b312755d7b243a0772bca9a530f68ad58eaa79ea882d +SHA512 (pykickstart-3.19.tar.gz) = 1698b68c2d77f482514af8101086d73cda3eac80a7d876902fab9d230dfc0a2cd7cf17fb8b226e2186a3ce1aed0f6e533c4dec7323c3b8ed9f59a7ce6814f1ea +SHA512 (pykickstart-3.19.tar.gz.asc) = 00d69bcfaff8a3cc243720bef591dad533b4cf02aa933f872533dcdaf0e2589bf534d4e309573d72e2984cac746dbc6777dd223c55642ec5612a9b275c2d0988