-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
15 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,13 +44,14 @@ Requires: %{name}%{?_isa} = %{version}-%{release} | |
This package contains header files and pkg-config files needed for development | ||
with the libbytesize library. | ||
|
||
%package -n python-%{realname} | ||
%package -n python2-%{realname} | ||
Summary: Python 2 bindings for libbytesize | ||
Provides: python2-%{realname} = %{version}-%{release} | ||
%{?python_provide:%python_provide python2-%{realname}} | ||
%{?python_provide:%python_provide python2-libbytesize} | ||
Requires: %{name}%{?_isa} = %{version}-%{release} | ||
Requires: python-six | ||
|
||
%description -n python-%{realname} | ||
%description -n python2-%{realname} | ||
This package contains Python 2 bindings for libbytesize making the use of | ||
the library from Python 2 easier and more convenient. | ||
|
||
|
@@ -97,7 +98,7 @@ find %{buildroot} -type f -name "*.la" | xargs %{__rm} | |
%{_datadir}/gtk-doc/html/libbytesize | ||
%endif | ||
|
||
%files -n python-%{realname} | ||
%files -n python2-%{realname} | ||
%dir %{python2_sitearch}/bytesize | ||
%{python2_sitearch}/bytesize/* | ||
|
||
|
@@ -115,6 +116,16 @@ find %{buildroot} -type f -name "*.la" | xargs %{__rm} | |
- Remove extra 'is' in two docstrings (vpodzime) | ||
- Properly support 64bit operands (vpodzime) | ||
|
||
* Sat Aug 19 2017 Zbigniew Jędrzejewski-Szmek <[email protected]> - 0.11-4 | ||
- Python 2 binary package renamed to python2-libbytesize | ||
See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3 | ||
|
||
* Thu Aug 03 2017 Fedora Release Engineering <[email protected]> - 0.11-3 | ||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild | ||
|
||
* Wed Jul 26 2017 Fedora Release Engineering <[email protected]> - 0.11-2 | ||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild | ||
|
||
* Wed Jun 14 2017 Vratislav Podzimek <[email protected]> - 0.11-1 | ||
- Fix README file name (vtrefny) | ||
- Add a build status image to the README.md (vpodzime) | ||
|