diff options
author | Justin Lecher <jlec@gentoo.org> | 2015-09-25 09:07:04 +0200 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2015-09-25 09:11:24 +0200 |
commit | 12c3cf9ba7535b27e9a7d79f4600312c72db6bb3 (patch) | |
tree | bd9ded397b6105205d74dab072e5446875dcd080 /dev-libs/libxslt/files | |
parent | dev-python/cssselect: Add pypy support (diff) | |
download | gentoo-12c3cf9ba7535b27e9a7d79f4600312c72db6bb3.tar.gz gentoo-12c3cf9ba7535b27e9a7d79f4600312c72db6bb3.tar.bz2 gentoo-12c3cf9ba7535b27e9a7d79f4600312c72db6bb3.zip |
dev-libs/libxslt: Drop old
Package-Manager: portage-2.2.21
Signed-off-by: Justin Lecher <jlec@gentoo.org>
Diffstat (limited to 'dev-libs/libxslt/files')
3 files changed, 0 insertions, 92 deletions
diff --git a/dev-libs/libxslt/files/libxslt-1.1.27-python-config.patch b/dev-libs/libxslt/files/libxslt-1.1.27-python-config.patch deleted file mode 100644 index 352a75352092..000000000000 --- a/dev-libs/libxslt/files/libxslt-1.1.27-python-config.patch +++ /dev/null @@ -1,26 +0,0 @@ -From 4514fed897ab0911097e54715e7936048bf43dd9 Mon Sep 17 00:00:00 2001 -From: Alexandre Rostovtsev <tetromino@gentoo.org> -Date: Sat, 22 Sep 2012 16:37:36 -0400 -Subject: [PATCH] Gentoo uses /usr/bin/python-config with automatic version - detection - ---- - configure.in | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/configure.in b/configure.in -index 0d7ba86..3c8a5ad 100644 ---- a/configure.in -+++ b/configure.in -@@ -353,7 +353,7 @@ except: print 0"` - PYTHON_SITE_PACKAGES=`$PYTHON -c "from distutils import sysconfig; print sysconfig.get_python_lib()"` - fi - fi -- PYTHON_LIBS=`python$PYTHON_VERSION-config --libs` -+ PYTHON_LIBS=`python-config --libs` - fi - if test "$with_python" != "" - then --- -1.7.12 - diff --git a/dev-libs/libxslt/files/libxslt-1.1.28-libgcrypt-config.patch b/dev-libs/libxslt/files/libxslt-1.1.28-libgcrypt-config.patch deleted file mode 100644 index 74ee935e4d8d..000000000000 --- a/dev-libs/libxslt/files/libxslt-1.1.28-libgcrypt-config.patch +++ /dev/null @@ -1,30 +0,0 @@ -From 4eeed7de3fa90e27658c48cb06f034da43b4f057 Mon Sep 17 00:00:00 2001 -From: Alexandre Rostovtsev <tetromino@gentoo.org> -Date: Tue, 4 Mar 2014 00:10:37 -0500 -Subject: [PATCH] configure: use AC_PATH_TOOL to find libgcrypt-config - -Since libgcrypt-config is used to find host system libraries, we should -be using AC_PATH_TOOL, not AC_PATH_PROG, for proper cross-compiling and -multilib support. - -https://bugzilla.gnome.org/show_bug.cgi?id=725635 ---- - configure.in | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/configure.in b/configure.in -index a861e90..8328625 100644 ---- a/configure.in -+++ b/configure.in -@@ -393,7 +393,7 @@ case $host in - CRYPTO_TESTDIR=crypto - ;; - *) -- AC_PATH_PROG(LIBGCRYPT_CONFIG, libgcrypt-config, no) -+ AC_PATH_TOOL(LIBGCRYPT_CONFIG, libgcrypt-config, no) - if test "$LIBGCRYPT_CONFIG" != "no" ; then - LIBGCRYPT_VERSION=`$LIBGCRYPT_CONFIG --version` - if test VERSION_TO_NUMBER(echo $LIBGCRYPT_VERSION) -lt VERSION_TO_NUMBER(echo "1.1.42") --- -1.9.0 - diff --git a/dev-libs/libxslt/files/libxslt-1.1.28-manual-python.patch b/dev-libs/libxslt/files/libxslt-1.1.28-manual-python.patch deleted file mode 100644 index 019f3253d876..000000000000 --- a/dev-libs/libxslt/files/libxslt-1.1.28-manual-python.patch +++ /dev/null @@ -1,36 +0,0 @@ -From 1671e1004e18fa9bbce410050d1365374ececb6a Mon Sep 17 00:00:00 2001 -From: Alexandre Rostovtsev <tetromino@gentoo.org> -Date: Tue, 18 Dec 2012 02:22:47 -0500 -Subject: [PATCH] build/test/install python bindings manually - -To support building for multiple python ABIs, we want to skip checks for -python in configure, and build/test/install python bindings manually. ---- - configure.in | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/configure.in b/configure.in -index fc8d5a8..6312c37 100644 ---- a/configure.in -+++ b/configure.in -@@ -296,7 +296,7 @@ PYTHON_INCLUDES= - PYTHON_SITE_PACKAGES= - pythondir= - AC_ARG_WITH(python, [ --with-python[=DIR] Build Python bindings if found]) --if test "$with_python" != "no" ; then -+if false ; then - if test -x "$with_python/bin/python" - then - echo Found python in $with_python/bin/python -@@ -365,7 +365,7 @@ except: print 0"` - pythondir='$(libdir)/python$(PYTHON_VERSION)/site-packages' - fi - fi --AM_CONDITIONAL(WITH_PYTHON, test "$PYTHON_INCLUDES" != "") -+AM_CONDITIONAL(WITH_PYTHON, test "$with_python" != "no") - if test "$PYTHON_INCLUDES" != "" - then - PYTHON_SUBDIR=python --- -1.8.0.2 - |