python3-devel missing autogenerated pkgconfig() provides (#746751)

In short, use
/usr/lib/rpm/redhat/find-provides
intead of
/usr/lib/rpm/find-provides
This commit is contained in:
Rex Dieter 2011-10-17 13:48:14 -05:00
parent e2a3db4ded
commit 8c9e381740
2 changed files with 6 additions and 3 deletions

View File

@ -1,6 +1,6 @@
#!/bin/bash
# The standard /usr/lib/rpm/find-provides script
# The standard find-provides script
# adds provides lines for all SONAME directives in all shared libraries,
# even if those libraries are not in the LD_LIBRARY_PATH
@ -10,6 +10,6 @@
# So we strip out all /usr/lib/python lines first, before running them through
# the standard script:
grep -v "/usr/lib/python" | grep -v "/usr/lib64/python" | \
/usr/lib/rpm/find-provides
/usr/lib/rpm/redhat/find-provides
exit 0

View File

@ -122,7 +122,7 @@
Summary: Version 3 of the Python programming language aka Python 3000
Name: python3
Version: %{pybasever}.2
Release: 8%{?dist}
Release: 9%{?dist}
License: Python
Group: Development/Languages
@ -1391,6 +1391,9 @@ rm -fr %{buildroot}
# ======================================================
%changelog
* Mon Oct 17 2011 Rex Dieter <rdieter@fedoraproject.org> - 3.2.2-9
- python3-devel missing autogenerated pkgconfig() provides (#746751)
* Mon Oct 10 2011 David Malcolm <dmalcolm@redhat.com> - 3.2.2-8
- cherrypick fix for distutils not using __pycache__ when byte-compiling
files (rhbz#722578)