Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/adolc/files/
Date: Sat, 05 May 2018 01:26:27
Message-Id: 1525483353.19e67ab01f26f07f41c07d8cff03c080b1f05150.bman@gentoo
1 commit: 19e67ab01f26f07f41c07d8cff03c080b1f05150
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Sat Apr 28 07:52:28 2018 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Sat May 5 01:22:33 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19e67ab0
7
8 sci-libs/adolc: remove unused patch
9
10 Closes: https://github.com/gentoo/gentoo/pull/8181
11
12 sci-libs/adolc/files/adolc-2.5.2-dash.patch | 148 ----------------------------
13 1 file changed, 148 deletions(-)
14
15 diff --git a/sci-libs/adolc/files/adolc-2.5.2-dash.patch b/sci-libs/adolc/files/adolc-2.5.2-dash.patch
16 deleted file mode 100644
17 index 3aa5a3035a1..00000000000
18 --- a/sci-libs/adolc/files/adolc-2.5.2-dash.patch
19 +++ /dev/null
20 @@ -1,148 +0,0 @@
21 - configure.ac | 45 +++++++++++++++++----------------------------
22 - 1 file changed, 17 insertions(+), 28 deletions(-)
23 -
24 -diff --git a/configure.ac b/configure.ac
25 -index 926832c..1310025 100644
26 ---- a/configure.ac
27 -+++ b/configure.ac
28 -@@ -29,12 +29,12 @@ AM_SILENT_RULES([yes])
29 -
30 - adolclib=adolc
31 -
32 --if test "x$CFLAGS" == x ; then
33 -+if test "x$CFLAGS" = x ; then
34 - ac_shell_cflags="not_set"
35 - else
36 - ac_shell_cflags="$CFLAGS"
37 - fi
38 --if test "x$CXXFLAGS" == x ; then
39 -+if test "x$CXXFLAGS" = x ; then
40 - ac_shell_cxxflags="not_set"
41 - else
42 - ac_shell_cxxflags="$CXXFLAGS"
43 -@@ -225,12 +225,12 @@ AS_HELP_STRING([--enable-harddebug],[enable ADOL-C hard debug mode
44 - AC_MSG_RESULT(no)
45 - ])
46 -
47 --if test x$adolc_harddebug == xyes ; then
48 -+if test x$adolc_harddebug = xyes ; then
49 - adolc_debug=yes
50 - AC_DEFINE(ADOLC_HARDDEBUG,1,[ADOL-C hard debug mode])
51 - fi
52 -
53 --if test x$adolc_debug == xyes ; then
54 -+if test x$adolc_debug = xyes ; then
55 - AC_DEFINE(ADOLC_DEBUG,1,[ADOL-C debug mode])
56 - fi
57 -
58 -@@ -248,7 +248,7 @@ AS_HELP_STRING([--disable-stdczero],[adouble default constructor does not initia
59 - AC_MSG_RESULT(yes)
60 - ])
61 -
62 --if test x$adolc_stdczero == xyes; then
63 -+if test x$adolc_stdczero = xyes; then
64 - AC_DEFINE(ADOLC_ADOUBLE_STDCZERO,1,[ADOL-C adouble zeroing mode])
65 - fi
66 -
67 -@@ -265,7 +265,7 @@ AS_HELP_STRING([--enable-lateinit],[adouble constructors need to be called. With
68 - AC_MSG_RESULT(no)
69 - ])
70 -
71 --if test x$adolc_late_init == xyes; then
72 -+if test x$adolc_late_init = xyes; then
73 - AC_DEFINE(ADOLC_ADOUBLE_LATEINIT,1,[ADOL-C adouble late initialization mode])
74 - fi
75 -
76 -@@ -282,7 +282,7 @@ AS_HELP_STRING([--enable-tserrno],[use errno as thread number cache [default=no]
77 - AC_MSG_RESULT(no)
78 - ])
79 -
80 --if test x$adolc_tserrno == xyes ; then
81 -+if test x$adolc_tserrno = xyes ; then
82 - AC_DEFINE(ADOLC_THREADSAVE_ERRNO,1,[ADOL-C thread save errno mode])
83 - fi
84 -
85 -@@ -351,8 +351,8 @@ AC_ARG_WITH(cflags,
86 - [AS_HELP_STRING([--with-cflags=FLAGS],
87 - [use CFLAGS=FLAGS (default: -O2)])],
88 - [ac_adolc_cflags="$withval"
89 -- if test x${adolc_debug} == xyes ||
90 -- test x${adolc_harddebug} == xyes ; then
91 -+ if test "x${adolc_debug}" = xyes ||
92 -+ test "x${adolc_harddebug}" = xyes ; then
93 - ac_adolc_cflags="$ac_adolc_cflags -g -O0"
94 - fi
95 - ac_adolc_cflags="$ac_adolc_cflags $ac_adolc_openmpflag"
96 -@@ -360,8 +360,8 @@ AC_ARG_WITH(cflags,
97 - AC_MSG_RESULT($ac_adolc_cflags)],
98 - [if test "$ac_shell_cflags" = "not_set"; then
99 - ac_adolc_cflags="-O2"
100 -- if test x${adolc_debug} == xyes ||
101 -- test x${adolc_harddebug} == xyes ; then
102 -+ if test "x${adolc_debug}" = xyes ||
103 -+ test "x${adolc_harddebug}" = xyes ; then
104 - ac_adolc_cflags="-g -O0 -Wall -ansi"
105 - fi
106 - else
107 -@@ -377,8 +377,8 @@ AC_ARG_WITH(cxxflags,
108 - [AS_HELP_STRING([--with-cxxflags=FLAGS],
109 - [use CXXFLAGS=FLAGS (default: -O2)])],
110 - [ac_adolc_cxxflags="$withval"
111 -- if test x${adolc_debug} == xyes ||
112 -- test x${adolc_harddebug} == xyes ; then
113 -+ if test x${adolc_debug} = xyes ||
114 -+ test x${adolc_harddebug} = xyes ; then
115 - ac_adolc_cxxflags="$ac_adolc_cxxflags -g -O0"
116 - fi
117 - ac_adolc_cxxflags="$ac_adolc_cxxflags $ac_adolc_openmpflag"
118 -@@ -386,8 +386,8 @@ AC_ARG_WITH(cxxflags,
119 - AC_MSG_RESULT($ac_adolc_cxxflags)],
120 - [if test "$ac_shell_cxxflags" = "not_set"; then
121 - ac_adolc_cxxflags="-O2"
122 -- if test x${adolc_debug} == xyes ||
123 -- test x${adolc_harddebug} == xyes ; then
124 -+ if test x${adolc_debug} = xyes ||
125 -+ test x${adolc_harddebug} = xyes ; then
126 - ac_adolc_cxxflags="-g -O0 -Wall"
127 - fi
128 - else
129 -@@ -420,7 +420,7 @@ AC_ARG_ENABLE(tapedoc_values,
130 - ])
131 - AC_MSG_RESULT($tapedoc_values)
132 -
133 --if test x$tapedoc_values == xyes; then
134 -+if test x$tapedoc_values = xyes; then
135 - AC_DEFINE(ADOLC_TAPE_DOC_VALUES,1,[ADOL-C tape_doc routine computes values])
136 - fi
137 -
138 -@@ -583,7 +583,7 @@ while test "x${pdir}" != "x/" ; do
139 - break
140 - fi
141 - done
142 --if test "x${pdir}" == "x/" ; then
143 -+if test "x${pdir}" = "x/" ; then
144 - writable=false
145 - fi
146 - if ! ${writable} ; then
147 -@@ -595,15 +595,6 @@ if ! ${writable} ; then
148 - warn=true
149 - fi
150 -
151 --case ${prefix} in
152 -- ${HOME}|${HOME}/*)
153 --if $warn ; then
154 -- for (( i=5; i>0; i-- )); do
155 -- echo -ne "\rPlease read the above messages carefully, continuing in ${i} seconds"
156 -- sleep 1
157 -- done
158 -- echo -e "\rPlease read the above messages carefully "
159 --fi
160 - echo \
161 - "
162 - *****************************************************************************
163 -@@ -629,5 +620,3 @@ echo \
164 -
165 - *****************************************************************************
166 - "
167 --;;
168 --esac