- Both library packages need to require python-six of some variety (#1195715). (clumens)

- Fix the python-six requirement for python3-kickstart (#1195719). (clumens)
This commit is contained in:
Chris Lumens 2015-02-26 16:09:36 -05:00
parent 2c7022d05b
commit 7f9716dc3d
3 changed files with 11 additions and 4 deletions

1
.gitignore vendored
View File

@ -139,3 +139,4 @@ pykickstart-1.78.tar.gz
/pykickstart-1.99.65.tar.gz
/pykickstart-1.99.66.tar.gz
/pykickstart-2.0.tar.gz
/pykickstart-2.1.tar.gz

View File

@ -1,7 +1,7 @@
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")}
Name: pykickstart
Version: 2.0
Version: 2.1
Release: 1%{?dist}
License: GPLv2 and MIT
Group: System Environment/Libraries
@ -38,6 +38,7 @@ respectively.
%package -n python-kickstart
Summary: Python 2 library for manipulating kickstart files.
Requires: python-six
Requires: python-requests
%description -n python-kickstart
Python 2 library for manipulating kickstart files. The binaries are found in
@ -46,7 +47,8 @@ the pykickstart package.
# Python 3 library
%package -n python3-kickstart
Summary: Python 3 library for manipulating kickstart files.
Requires: python-six
Requires: python3-six
Requires: python3-requests
%description -n python3-kickstart
Python 3 library for manipulating kickstart files. The binaries are found in
@ -111,7 +113,11 @@ popd
%{python3_sitelib}/pykickstart/handlers/*py*
%changelog
* Fri Feb 20 2015 Chris Lumens <clumens@redhat.com> - 1.99.67-1
* Thu Feb 26 2015 Chris Lumens <clumens@redhat.com> - 2.1-1
- Both library packages need to require python-six of some variety (#1195715). (clumens)
- Fix the python-six requirement for python3-kickstart (#1195719). (clumens)
* Fri Feb 20 2015 Chris Lumens <clumens@redhat.com> - 2.0-1
- Make sure pykickstart requires some version of the library. (clumens)
- Split into python2 and python3 specific packages. (clumens)
- Look for translations in their new location. (clumens)

View File

@ -1 +1 @@
cf8e4995a38df4dfcd71d61b76d96465 pykickstart-2.0.tar.gz
0f7f33dd124e1f23a5e38e4e9e377118 pykickstart-2.1.tar.gz