public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-python/lxml/files: lxml-3.4.4-cross-compile.patch
@ 2015-05-16  7:42 Mike Frysinger (vapier)
  0 siblings, 0 replies; only message in thread
From: Mike Frysinger (vapier) @ 2015-05-16  7:42 UTC (permalink / raw
  To: gentoo-commits

vapier      15/05/16 07:42:09

  Added:                lxml-3.4.4-cross-compile.patch
  Log:
  Fix from Chromium OS for cross-compiling.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key D2E96200)

Revision  Changes    Path
1.1                  dev-python/lxml/files/lxml-3.4.4-cross-compile.patch

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/lxml/files/lxml-3.4.4-cross-compile.patch?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/lxml/files/lxml-3.4.4-cross-compile.patch?rev=1.1&content-type=text/plain

Index: lxml-3.4.4-cross-compile.patch
===================================================================
use pkg-config to find libxml2/libxslt details rather than xxx-config scripts

--- a/setupinfo.py
+++ b/setupinfo.py
@@ -87,19 +87,6 @@ def ext_modules(static_include_dirs, static_library_dirs,
         source_extension = ".c"
         print("Building without Cython.")
 
-    lib_versions = get_library_versions()
-    versions_ok = True
-    if lib_versions[0]:
-        print("Using build configuration of libxml2 %s and libxslt %s" %
-              lib_versions)
-        versions_ok = check_min_version(lib_versions[0], (2, 7, 0), 'libxml2')
-    else:
-        print("Using build configuration of libxslt %s" %
-              lib_versions[1])
-    versions_ok |= check_min_version(lib_versions[1], (1, 1, 23), 'libxslt')
-    if not versions_ok:
-        raise RuntimeError("Dependency missing")
-
     _include_dirs = include_dirs(static_include_dirs)
     _library_dirs = library_dirs(static_library_dirs)
     _cflags = cflags(static_cflags)
@@ -310,8 +297,9 @@ def get_library_versions():
 
 
 def flags(option):
-    xml2_flags = run_command(find_xml2_config(), "--%s" % option)
-    xslt_flags = run_command(find_xslt_config(), "--%s" % option)
+    pkg_config = os.environ.get('PKG_CONFIG', 'pkg-config')
+    xml2_flags = run_command(pkg_config, 'libxml-2.0', '--%s' % option)
+    xslt_flags = run_command(pkg_config, 'libxxlt', '--%s' % option)
 
     flag_list = xml2_flags.split()
     for flag in xslt_flags.split():





^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2015-05-16  7:42 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-05-16  7:42 [gentoo-commits] gentoo-x86 commit in dev-python/lxml/files: lxml-3.4.4-cross-compile.patch Mike Frysinger (vapier)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox