summaryrefslogtreecommitdiff
path: root/dev-lang/julia/files
diff options
context:
space:
mode:
authorMatthias Maier <tamiko@gentoo.org>2016-01-16 12:26:39 +0100
committerMatthias Maier <tamiko@gentoo.org>2016-01-16 12:33:13 +0100
commitb98522085a371374df2b878fda7494bec8140591 (patch)
tree93750d65a5d035c0ebb0dfe4c9b8ca6abdd74971 /dev-lang/julia/files
parent9f85644c4b07c3b4340594082da6e3d317e9bea9 (diff)
downloadgentoo-b98522085a371374df2b878fda7494bec8140591.tar.gz
gentoo-b98522085a371374df2b878fda7494bec8140591.tar.bz2
gentoo-b98522085a371374df2b878fda7494bec8140591.zip
dev-lang/julia: drop old 0.2* versions
Package-Manager: portage-2.2.26
Diffstat (limited to 'dev-lang/julia/files')
-rw-r--r--dev-lang/julia/files/julia-0.2.1-patchelf.patch16
-rw-r--r--dev-lang/julia/files/julia-0.2.1-readline63.patch17
2 files changed, 0 insertions, 33 deletions
diff --git a/dev-lang/julia/files/julia-0.2.1-patchelf.patch b/dev-lang/julia/files/julia-0.2.1-patchelf.patch
deleted file mode 100644
index 663cf04b77db..000000000000
--- a/dev-lang/julia/files/julia-0.2.1-patchelf.patch
+++ /dev/null
@@ -1,16 +0,0 @@
---- deps/Makefile 2014-06-25 15:57:04.618463213 +0800
-+++ deps/Makefile.new 2014-06-25 16:06:36.342318418 +0800
-@@ -42,14 +42,7 @@
- endif
- endif
-
--ifeq ($(OS), Linux)
--ifneq ($(shell patchelf --version 2>/dev/null), patchelf 0.6)
--STAGE1_DEPS += patchelf
--PATCHELF=$(BUILD)/bin/patchelf
--else
- PATCHELF=patchelf
--endif
--endif
-
- ## USE_SYSTEM_LIBS options
diff --git a/dev-lang/julia/files/julia-0.2.1-readline63.patch b/dev-lang/julia/files/julia-0.2.1-readline63.patch
deleted file mode 100644
index cc9ede53f392..000000000000
--- a/dev-lang/julia/files/julia-0.2.1-readline63.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-Description: Fix FTBFS against readline 6.3
-Origin: backport, https://github.com/JuliaLang/julia/commit/d2552e0f03d1dc23d6bb0c89c39da3d73c7aa4e5
-Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=741824
-Last-Update: 2014-03-16
----
-This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
---- a/ui/repl-readline.c
-+++ b/ui/repl-readline.c
-@@ -831,7 +831,7 @@ void jl_init_repl(int history)
- rl_instream = fopen("/dev/null","r");
- prompt_length = 7; // == strlen("julia> ")
- init_history();
-- rl_startup_hook = (Function*)init_rl;
-+ rl_startup_hook = (rl_hook_func_t*)init_rl;
- }
-
- static char *prompt_string=NULL;