From 4cde568971de095b12188d4e53e4e1ea064916d8 Mon Sep 17 00:00:00 2001 From: David Lehman Date: Tue, 29 Mar 2016 14:30:29 -0400 Subject: [PATCH] Fix package naming in specfile. --- python-blivet.spec | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/python-blivet.spec b/python-blivet.spec index c08eb01..a8aa9dc 100644 --- a/python-blivet.spec +++ b/python-blivet.spec @@ -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 - 2.0.1-2 +- Fix package naming in specfile. + * Tue Mar 29 2016 David Lehman - 2.0.1-1 - Make sure EddMatcher.root is a string. (dlehman) - Move per-thread change accounting to a function. (dlehman)