Remove executable permissions from documentation.

Complies with packaging guidelines and solves issue of libxml2-python3
package depending on python2
This commit is contained in:
Toshio Kuratomi 2015-11-03 23:18:17 -08:00
parent 75100bcfac
commit 94a79cf98d

View File

@ -3,7 +3,7 @@
Summary: Library providing XML and HTML support
Name: libxml2
Version: 2.9.2
Release: 7%{?dist}%{?extra_release}
Release: 8%{?dist}%{?extra_release}
License: MIT
Group: Development/Libraries
Source: ftp://xmlsoft.org/libxml2/libxml2-%{version}.tar.gz
@ -111,6 +111,8 @@ sed -i 's|#!/usr/bin/python |#!%{__python3} |' py3doc/*.py
%configure
make %{_smp_mflags}
find doc -type f -exec chmod 0644 \{\} \;
%install
rm -fr %{buildroot}
@ -212,6 +214,10 @@ rm -fr %{buildroot}
%changelog
* Tue Nov 3 2015 Toshio Kuratomi <toshio@fedoraproject.org> - 2.9.2-8
- Remove executable permissions from documentation. Complies with packaging
guidelines and solves issue of libxml2-python3 package depending on python2
* Thu Aug 27 2015 Miro Hrončok <mhroncok@redhat.com> - 2.9.2-7
- Remove dependency on python2 from python3 subpackage, rhbz#1250940