Fix package naming in specfile.

This commit is contained in:
David Lehman 2016-03-29 14:30:29 -04:00
parent 2cb871a1b6
commit 4cde568971

View File

@ -1,11 +1,11 @@
Summary: A python module for system storage configuration
Name: python3-blivet
Name: python-blivet
Url: http://fedoraproject.org/wiki/blivet
Version: 2.0.1
#%%define prerelease .b1
# prerelease, if defined, should be something like .a1, .b1, .b2.dev1, or .c2
Release: 1%{?prerelease}%{?dist}
Release: 2%{?prerelease}%{?dist}
Epoch: 1
License: LGPLv2+
Group: System Environment/Libraries
@ -48,7 +48,7 @@ Requires: python3-gobject-base
Requires: %{realname}-data = %{epoch}:%{version}-%{release}
%description
The python3-blivet package is a python module for examining and modifying
The python-blivet package is a python module for examining and modifying
storage configuration.
%package -n %{realname}-data
@ -58,6 +58,12 @@ Summary: Data for the %{realname} python module.
The %{realname}-data package provides data files required by the %{realname}
python module.
%package -n python3-%{realname}
Summary: A python3 package for examining and modifying storage configuration.
%description -n python3-%{realname}
The python3-%{realname} is a python3 package for examining and modifying storage
configuration.
%prep
%setup -q -n %{realname}-%{realversion}
@ -80,6 +86,9 @@ make PYTHON=%{__python3} DESTDIR=%{buildroot} install
%{python3_sitelib}/*
%changelog
* Tue Mar 29 2016 David Lehman <dlehman@redhat.com> - 2.0.1-2
- Fix package naming in specfile.
* Tue Mar 29 2016 David Lehman <dlehman@redhat.com> - 2.0.1-1
- Make sure EddMatcher.root is a string. (dlehman)
- Move per-thread change accounting to a function. (dlehman)