summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2017-03-16 20:32:23 +0100
committerMichał Górny <mgorny@gentoo.org>2017-03-18 08:33:29 +0100
commit0f3e9cea7260add9bdb7c4cd326d6e6f5f890f90 (patch)
tree10b9ff11c1af9111a5ad51a2df6d2e5b3dbb25b1 /dev-libs/tre/files
parentdev-libs/tre: Copy stable keywords over to 0.8.0-r1, #597484 (diff)
downloadgentoo-0f3e9cea7260add9bdb7c4cd326d6e6f5f890f90.tar.gz
gentoo-0f3e9cea7260add9bdb7c4cd326d6e6f5f890f90.tar.bz2
gentoo-0f3e9cea7260add9bdb7c4cd326d6e6f5f890f90.zip
dev-libs/tre: Drop old (distutils.eclass)
Diffstat (limited to 'dev-libs/tre/files')
-rw-r--r--dev-libs/tre/files/0.8.0-python.patch39
1 files changed, 0 insertions, 39 deletions
diff --git a/dev-libs/tre/files/0.8.0-python.patch b/dev-libs/tre/files/0.8.0-python.patch
deleted file mode 100644
index f290e0bf5783..000000000000
--- a/dev-libs/tre/files/0.8.0-python.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-diff --git a/python/setup.py b/python/setup.py
-index b420a4c..b1bca6b 100644
---- a/python/setup.py
-+++ b/python/setup.py
-@@ -10,7 +10,8 @@ import shutil
-
- version = "0.8.0"
- data_files = []
--include_dirs = ["../lib"]
-+include_dirs = ["lib"]
-+library_dirs = ["lib/.libs"]
- libraries = ["tre"]
-
- if sys.platform == "win32":
-@@ -28,9 +29,10 @@ setup(name = "tre",
- url = "http://laurikari.net/tre/",
- data_files = data_files,
- ext_modules = [Extension("tre",
-- sources = ["tre-python.c"],
-+ sources = ["python/tre-python.c"],
- define_macros = [("HAVE_CONFIG_H", None)],
- include_dirs = include_dirs,
-+ library_dirs = library_dirs,
- libraries = libraries
- ),
- ],
-diff --git a/python/tre-python.c b/python/tre-python.c
-index bbb24ed..2e35e3a 100644
---- a/python/tre-python.c
-+++ b/python/tre-python.c
-@@ -13,7 +13,7 @@
- #include "Python.h"
- #include "structmember.h"
-
--#include <tre/tre.h>
-+#include <tre.h>
-
- #define TRE_MODULE "tre"
-