summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastien Fabbro <bicatali@gentoo.org>2010-05-04 21:56:10 +0000
committerSebastien Fabbro <bicatali@gentoo.org>2010-05-04 21:56:10 +0000
commit092496bcb6678d48aa8f2d44e516fb09806a78f5 (patch)
tree0175bb011dd1a2be68e74208f353d58abb307302 /sci-mathematics/pari/files
parentremove unused use flag (diff)
downloadgentoo-2-092496bcb6678d48aa8f2d44e516fb09806a78f5.tar.gz
gentoo-2-092496bcb6678d48aa8f2d44e516fb09806a78f5.tar.bz2
gentoo-2-092496bcb6678d48aa8f2d44e516fb09806a78f5.zip
Version bump. Added -fno-strict-aliasing to compiler flags, per bug #316139. Change use flag static to static-libs
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'sci-mathematics/pari/files')
-rw-r--r--sci-mathematics/pari/files/docs.patch30
-rw-r--r--sci-mathematics/pari/files/pari-non-exec-stack-x86-gentoo.patch11
-rw-r--r--sci-mathematics/pari/files/wrong_functype-r1.patch35
-rw-r--r--sci-mathematics/pari/files/wrong_functype.patch48
4 files changed, 0 insertions, 124 deletions
diff --git a/sci-mathematics/pari/files/docs.patch b/sci-mathematics/pari/files/docs.patch
deleted file mode 100644
index 1a5b251b41d7..000000000000
--- a/sci-mathematics/pari/files/docs.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-*** doc/refcard.tex Mon Nov 6 19:59:00 2000
---- doc/refcard.tex.new Tue Jun 24 03:07:15 2003
-***************
-*** 17,23 ****
---- 17,29 ----
- %% which I modified from his GNU emacs reference card
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- \def\TITLE{Pari-GP reference card}
-+ % ignore parimacro.tex's \magnification setting
-+ \let\oldmagnification\magnification
-+ \catcode`@=11
-+ \def\magnification{\afterassignment\relax\count@}%
-+ \catcode`@=12
- \input parimacro.tex
-+ \let\magnification\oldmagnification
- \ifPDF
- \input pdfmacs.tex
- \pdfpagewidth=11.69in
-*** doc/users.tex Mon Nov 6 19:59:01 2000
---- doc/users.tex.new Tue Jun 24 03:07:15 2003
-***************
-*** 63,69 ****
- \ifPDF \writesecnumbers \fi
- \expandafter\end % stop here the first time (don't process index)
- \fi
-- \newpage
-
- \ifPDF
- % Add a bookmark entry for the index. CHB
---- 63,68 ----
diff --git a/sci-mathematics/pari/files/pari-non-exec-stack-x86-gentoo.patch b/sci-mathematics/pari/files/pari-non-exec-stack-x86-gentoo.patch
deleted file mode 100644
index a3ee992b8859..000000000000
--- a/sci-mathematics/pari/files/pari-non-exec-stack-x86-gentoo.patch
+++ /dev/null
@@ -1,11 +0,0 @@
-diff -Naur pari-2.1.7-old/src/kernel/ix86/l0asm.c pari-2.1.7/src/kernel/ix86/l0asm.c
---- pari-2.1.7-old/src/kernel/ix86/l0asm.c 2002-04-06 12:14:02.000000000 +0000
-+++ pari-2.1.7/src/kernel/ix86/l0asm.c 2006-01-19 19:22:49.000000000 +0000
-@@ -206,3 +206,7 @@
- FUNEND()
-
- ALIGN
-+
-+#ifdef __ELF__
-+ .section .note.GNU-stack,"",@progbits
-+#endif
diff --git a/sci-mathematics/pari/files/wrong_functype-r1.patch b/sci-mathematics/pari/files/wrong_functype-r1.patch
deleted file mode 100644
index 5eb95e622c7a..000000000000
--- a/sci-mathematics/pari/files/wrong_functype-r1.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-diff -ru src/gp/gp_rl.c src.new/gp/gp_rl.c
---- src/gp/gp_rl.c 2001-04-27 15:55:38.000000000 +0200
-+++ src.new/gp/gp_rl.c 2005-01-06 11:04:45.198086689 +0100
-@@ -79,11 +79,13 @@
- #endif
-
- #ifdef HAS_RL_COMPLETION_MATCHES
--# define COMPLETION_MATCHES ((CF)rl_completion_matches)
-+# define COMPLETION_MATCHES(a,b) \
-+ (completion_matches((char *)(a),(b)))
- # define FILE_COMPLETION ((GF)rl_filename_completion_function)
- # define USER_COMPLETION ((GF)rl_username_completion_function)
- #else
--# define COMPLETION_MATCHES ((CF)completion_matches)
-+# define COMPLETION_MATCHES(a,b) \
-+ (completion_matches((char *)(a),(b)))
- # define FILE_COMPLETION ((GF)filename_completion_function)
- # define USER_COMPLETION ((GF)username_completion_function)
- #endif
-diff -ru src.old/gp/gp_rl.c src/gp/gp_rl.c
---- src.old/gp/gp_rl.c 2005-01-06 11:07:18.000000000 +0100
-+++ src/gp/gp_rl.c 2005-01-06 11:15:10.509112328 +0100
-@@ -625,10 +625,8 @@
- /* we always want the whole list of completions under emacs */
- if (under_emacs) rl_completion_query_items = 0x8fff;
-
--#define Bind(a,b,c) (((void(*)(int,Function*,Keymap)) rl_bind_key_in_map)\
-- ((a), (Function*)(b), (c)))
--#define Defun(a,b,c) (((void(*)(const char*,Function*,int)) rl_add_defun)\
-- ((a), (Function*)(b), (c)))
-+#define Bind(a,b,c) (rl_bind_key_in_map((a), (Function*)(b), (c)))
-+#define Defun(a,b,c) (rl_add_defun((char*)(a), (Function*)(b), (c)))
-
- Defun("short-help", rl_short_help, -1);
- Defun("long-help", rl_long_help, -1);
diff --git a/sci-mathematics/pari/files/wrong_functype.patch b/sci-mathematics/pari/files/wrong_functype.patch
deleted file mode 100644
index a1dd4c98fe0a..000000000000
--- a/sci-mathematics/pari/files/wrong_functype.patch
+++ /dev/null
@@ -1,48 +0,0 @@
-diff -ru src/gp/gp_rl.c src.new/gp/gp_rl.c
---- src/gp/gp_rl.c 2001-04-27 15:55:38.000000000 +0200
-+++ src.new/gp/gp_rl.c 2005-01-06 11:04:45.198086689 +0100
-@@ -79,11 +79,13 @@
- #endif
-
- #ifdef HAS_RL_COMPLETION_MATCHES
--# define COMPLETION_MATCHES ((CF)rl_completion_matches)
-+# define COMPLETION_MATCHES(a,b) \
-+ (completion_matches((char *)(a),(b)))
- # define FILE_COMPLETION ((GF)rl_filename_completion_function)
- # define USER_COMPLETION ((GF)rl_username_completion_function)
- #else
--# define COMPLETION_MATCHES ((CF)completion_matches)
-+# define COMPLETION_MATCHES(a,b) \
-+ (completion_matches((char *)(a),(b)))
- # define FILE_COMPLETION ((GF)filename_completion_function)
- # define USER_COMPLETION ((GF)username_completion_function)
- #endif
-diff -ru src.old/gp/gp_rl.c src/gp/gp_rl.c
---- src.old/gp/gp_rl.c 2005-01-06 11:07:18.000000000 +0100
-+++ src/gp/gp_rl.c 2005-01-06 11:15:10.509112328 +0100
-@@ -625,10 +625,8 @@
- /* we always want the whole list of completions under emacs */
- if (under_emacs) rl_completion_query_items = 0x8fff;
-
--#define Bind(a,b,c) (((void(*)(int,Function*,Keymap)) rl_bind_key_in_map)\
-- ((a), (Function*)(b), (c)))
--#define Defun(a,b,c) (((void(*)(const char*,Function*,int)) rl_add_defun)\
-- ((a), (Function*)(b), (c)))
-+#define Bind(a,b,c) (rl_bind_key_in_map((a), (Function*)(b), (c)))
-+#define Defun(a,b,c) (rl_add_defun((char*)(a), (Function*)(b), (c)))
-
- Defun("short-help", rl_short_help, -1);
- Defun("long-help", rl_long_help, -1);
-diff -ru src-old/basemath/buch2.c src/basemath/buch2.c
---- src-old/basemath/buch2.c 2001-11-04 15:09:54.000000000 +0100
-+++ src/basemath/buch2.c 2005-01-07 10:08:25.442785391 +0100
-@@ -2922,7 +2922,8 @@
-
- /* random relations */
- if (cglob == KCCO) /* enough relations, initialize nevertheless */
-- ((void(*)(long))random_relation)(-1);
-+ random_relation(-1,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
-+
- else
- {
- GEN maarch;