From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Thompson Subject: [PATCHES] Propagate inputs for libxml2 and libxslt Date: Sat, 28 Feb 2015 10:28:35 -0500 Message-ID: <87zj7y6onw.fsf@fsf.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:35083) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YRjJm-0000Rl-Jk for guix-devel@gnu.org; Sat, 28 Feb 2015 10:28:39 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YRjJl-0002s9-E2 for guix-devel@gnu.org; Sat, 28 Feb 2015 10:28:38 -0500 Received: from mail.fsf.org ([208.118.235.13]:55695) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YRjJl-0002s2-8r for guix-devel@gnu.org; Sat, 28 Feb 2015 10:28:37 -0500 Received: from 209-6-40-86.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com ([209.6.40.86]:52558 helo=izanagi) by mail.fsf.org with esmtpsa (TLS-1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.69) (envelope-from ) id 1YRjJk-0002oi-1a for guix-devel@gnu.org; Sat, 28 Feb 2015 10:28:37 -0500 List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org --=-=-= Content-Type: text/plain Two small patches below for propagating the necessary inputs for libxml2 and libxslt. These should probably be applied to core-updates, right? Notably, these patches triggers a rebuild of subversion. Once these patches are applied, would it be a good idea to go through the packages that depend on libxml2 and libxslt and remove the now propagated inputs? --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=0001-gnu-libxml2-Propagate-zlib.patch >From a86da0014e02aa73b1e7554edc9c0cd580608c9d Mon Sep 17 00:00:00 2001 From: David Thompson Date: Fri, 27 Feb 2015 16:59:37 -0500 Subject: [PATCH 1/2] gnu: libxml2: Propagate zlib. * gnu/packages/xml.scm (libxml2): Propagate zlib input. --- gnu/packages/xml.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm index f2b3baa..ae2227f 100644 --- a/gnu/packages/xml.scm +++ b/gnu/packages/xml.scm @@ -65,7 +65,8 @@ things the parser might find in the XML document (like start tags).") (build-system gnu-build-system) (home-page "http://www.xmlsoft.org/") (synopsis "C parser for XML") - (inputs `(("zlib" ,zlib))) + (propagated-inputs + `(("zlib" ,zlib))) ;; -lz is in the .pc file (native-inputs `(("perl" ,perl) ("python" ,python-2))) ; incompatible with Python 3 (print syntax) -- 2.1.4 --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=0002-gnu-libxslt-Propagate-libxml2.patch >From 44675222f65f3e539dd66ff604ab97f0ef3c55de Mon Sep 17 00:00:00 2001 From: David Thompson Date: Fri, 27 Feb 2015 21:12:20 -0500 Subject: [PATCH 2/2] gnu: libxslt: Propagate libxml2. * gnu/packages/xml.scm (libxslt): Propagate libxml2. --- gnu/packages/xml.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm index ae2227f..675a3ff 100644 --- a/gnu/packages/xml.scm +++ b/gnu/packages/xml.scm @@ -118,9 +118,9 @@ things the parser might find in the XML document (like start tags).") (home-page "http://xmlsoft.org/XSLT/index.html") (synopsis "C library for applying XSLT stylesheets to XML documents") (inputs `(("libgcrypt" ,libgcrypt) - ("libxml2" ,libxml2) - ("python" ,python-wrapper) - ("zlib" ,zlib))) + ("python" ,python-wrapper))) + (propagated-inputs + `(("libxml2" ,libxml2))) ;; -lxml2 is in the .pc file (description "Libxslt is an XSLT C library developed for the GNOME project. It is based on libxml for XML parsing, tree manipulation and XPath support.") -- 2.1.4 --=-=-= Content-Type: text/plain -- David Thompson Web Developer - Free Software Foundation - http://fsf.org GPG Key: 0FF1D807 Support the FSF: https://fsf.org/donate --=-=-=--