diff options
author | Yann E. MORIN <yann.morin.1998@free.fr> | 2014-10-05 15:23:22 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-10-05 17:47:46 +0200 |
commit | fe70cb0187d3e1e75e009b924392fee9cc4dc680 (patch) | |
tree | 2a78cd7f95c575891ee0fd95948daa5ab1577d93 /package/libplist/libplist-0003-cmake-swig-support-python2-and-python3-when-defining.patch | |
parent | e472306f752ed03be1bff727ee35eaeafd6aa520 (diff) | |
download | buildroot-fe70cb0187d3e1e75e009b924392fee9cc4dc680.tar.gz buildroot-fe70cb0187d3e1e75e009b924392fee9cc4dc680.zip |
package/libplist: bump version
libplist has switched to using autotools, so remove our cmake-related
patches.
Completely disable Python bindings:
- it requires cython, which we do not have packaged (so far)
- the only user of libplist is XBMC, which does not need the Python
bindings.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
Cc: Samuel Martin <s.martin49@gmail.com>
Tested-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/libplist/libplist-0003-cmake-swig-support-python2-and-python3-when-defining.patch')
-rw-r--r-- | package/libplist/libplist-0003-cmake-swig-support-python2-and-python3-when-defining.patch | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/package/libplist/libplist-0003-cmake-swig-support-python2-and-python3-when-defining.patch b/package/libplist/libplist-0003-cmake-swig-support-python2-and-python3-when-defining.patch deleted file mode 100644 index a5218e8180..0000000000 --- a/package/libplist/libplist-0003-cmake-swig-support-python2-and-python3-when-defining.patch +++ /dev/null @@ -1,27 +0,0 @@ -From 114d242a3b6b749b404cda80304e621556325d34 Mon Sep 17 00:00:00 2001 -From: Samuel Martin <s.martin49@gmail.com> -Date: Sun, 5 Oct 2014 10:13:06 +0200 -Subject: [PATCH] cmake: swig: support python2 and python3 when defining - DISTUTILS_PYTHON_ILIBRARY_PATH - -Signed-off-by: Samuel Martin <s.martin49@gmail.com> ---- - swig/CMakeLists.txt | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/swig/CMakeLists.txt b/swig/CMakeLists.txt -index 379cb95..ae6f0e7 100644 ---- a/swig/CMakeLists.txt -+++ b/swig/CMakeLists.txt -@@ -9,7 +9,7 @@ SWIG_ADD_MODULE( plist python plist.i ) - SWIG_LINK_LIBRARIES( plist plist plist++ ${PYTHON_LIBRARIES} ) - - EXEC_PROGRAM("${PYTHON_EXECUTABLE}" -- ARGS "-c 'try:\n import distutils.sysconfig; print distutils.sysconfig.get_python_lib(plat_specific=1)\nexcept: pass\n'" -+ ARGS "-c 'from __future__ import print_function\ntry:\n import distutils.sysconfig; print(distutils.sysconfig.get_python_lib(plat_specific=1))\nexcept: pass\n'" - OUTPUT_VARIABLE DISTUTILS_PYTHON_ILIBRARY_PATH - ) - --- -2.1.2 - |