about summary refs log tree commit diff
path: root/pkgs/development/python-modules/tabula-py/java-interpreter-path.patch
blob: fcd03628794ac50041af23a583b760efdc0e1657 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
diff -ru origsource/tabula/io.py source/tabula/io.py
--- origsource/tabula/io.py	2022-11-23 17:19:35.419837514 +0100
+++ source/tabula/io.py	2022-11-23 17:22:08.204194807 +0100
@@ -79,7 +79,7 @@
             )
         )
 
-    args = ["java"] + java_options + ["-jar", _jar_path()] + options.build_option_list()
+    args = ["@JAVA@"] + java_options + ["-jar", _jar_path()] + options.build_option_list()
     if path:
         args.append(path)
 
diff -ru origsource/tabula/util.py source/tabula/util.py
--- origsource/tabula/util.py	2022-11-23 17:19:35.422837521 +0100
+++ source/tabula/util.py	2022-11-23 17:21:41.514132392 +0100
@@ -26,7 +26,7 @@
 
     try:
         res = subprocess.check_output(
-            ["java", "-version"], stderr=subprocess.STDOUT
+            ["@JAVA@", "-version"], stderr=subprocess.STDOUT
         ).decode()
 
     except FileNotFoundError:
diff -ru origsource/tests/test_read_pdf_table.py source/tests/test_read_pdf_table.py
--- origsource/tests/test_read_pdf_table.py	2022-11-23 17:19:35.422837521 +0100
+++ source/tests/test_read_pdf_table.py	2022-11-23 17:21:22.008086776 +0100
@@ -281,7 +281,7 @@
 
         tabula.read_pdf(self.pdf_path, encoding="utf-8")
 
-        target_args = ["java"]
+        target_args = ["@JAVA@"]
         if platform.system() == "Darwin":
             target_args += ["-Djava.awt.headless=true"]
         target_args += [
@@ -355,7 +355,7 @@
 
         tabula.read_pdf(self.pdf_path, encoding="utf-8", silent=False)
 
-        target_args = ["java"]
+        target_args = ["@JAVA@"]
         if platform.system() == "Darwin":
             target_args += ["-Djava.awt.headless=true"]
         target_args += [
@@ -382,7 +382,7 @@
 
         tabula.read_pdf(self.pdf_path, encoding="utf-8", silent=True)
 
-        target_args = ["java"]
+        target_args = ["@JAVA@"]
         if platform.system() == "Darwin":
             target_args += ["-Djava.awt.headless=true"]
         target_args += [