From 94a79cf98db6fdad6d1420ecdcb1b8fc85566a3f Mon Sep 17 00:00:00 2001 From: Toshio Kuratomi Date: Tue, 3 Nov 2015 23:18:17 -0800 Subject: [PATCH] Remove executable permissions from documentation. Complies with packaging guidelines and solves issue of libxml2-python3 package depending on python2 --- libxml2.spec | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/libxml2.spec b/libxml2.spec index fc3bc0b..dde3897 100644 --- a/libxml2.spec +++ b/libxml2.spec @@ -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 - 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 - 2.9.2-7 - Remove dependency on python2 from python3 subpackage, rhbz#1250940