google_hash 0.8.1 → 0.8.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/ChangeLog.txt +2 -0
- data/VERSION +1 -1
- data/ext/clean.bat +0 -0
- data/ext/clean.sh +4 -0
- data/ext/extconf.rb +4 -5
- data/ext/go.bat +0 -0
- data/ext/sparsehash-2.0.2/AUTHORS +2 -0
- data/ext/{sparsehash-1.8.1 → sparsehash-2.0.2}/COPYING +0 -0
- data/ext/{sparsehash-1.8.1 → sparsehash-2.0.2}/ChangeLog +60 -0
- data/ext/sparsehash-2.0.2/INSTALL +365 -0
- data/ext/sparsehash-2.0.2/Makefile +1336 -0
- data/ext/{sparsehash-1.8.1 → sparsehash-2.0.2}/Makefile.am +97 -40
- data/ext/{sparsehash-1.8.1 → sparsehash-2.0.2}/Makefile.in +538 -256
- data/ext/sparsehash-2.0.2/NEWS +188 -0
- data/ext/{sparsehash-1.8.1 → sparsehash-2.0.2}/README +4 -10
- data/ext/{sparsehash-1.8.1 → sparsehash-2.0.2}/README_windows.txt +3 -3
- data/ext/{sparsehash-1.8.1 → sparsehash-2.0.2}/TODO +0 -0
- data/ext/{sparsehash-1.8.1 → sparsehash-2.0.2}/aclocal.m4 +266 -166
- data/ext/sparsehash-2.0.2/allocator.patch +31 -0
- data/ext/{sparsehash-1.8.1 → sparsehash-2.0.2}/config.guess +235 -234
- data/ext/sparsehash-2.0.2/config.status +1238 -0
- data/ext/{sparsehash-1.8.1 → sparsehash-2.0.2}/config.sub +198 -64
- data/ext/{sparsehash-1.8.1 → sparsehash-2.0.2}/configure +1118 -1000
- data/ext/{sparsehash-1.8.1 → sparsehash-2.0.2}/configure.ac +4 -5
- data/ext/{sparsehash-1.8.1 → sparsehash-2.0.2}/depcomp +136 -36
- data/ext/{sparsehash-1.8.1 → sparsehash-2.0.2}/doc/dense_hash_map.html +182 -67
- data/ext/{sparsehash-1.8.1 → sparsehash-2.0.2}/doc/dense_hash_set.html +173 -74
- data/ext/{sparsehash-1.8.1 → sparsehash-2.0.2}/doc/designstyle.css +0 -6
- data/ext/{sparsehash-1.8.1 → sparsehash-2.0.2}/doc/implementation.html +0 -0
- data/ext/{sparsehash-1.8.1 → sparsehash-2.0.2}/doc/index.html +4 -5
- data/ext/{sparsehash-1.8.1 → sparsehash-2.0.2}/doc/performance.html +1 -1
- data/ext/{sparsehash-1.8.1 → sparsehash-2.0.2}/doc/sparse_hash_map.html +190 -58
- data/ext/{sparsehash-1.8.1 → sparsehash-2.0.2}/doc/sparse_hash_set.html +180 -65
- data/ext/{sparsehash-1.8.1 → sparsehash-2.0.2}/doc/sparsetable.html +1 -1
- data/ext/{sparsehash-1.8.1 → sparsehash-2.0.2}/experimental/Makefile +0 -0
- data/ext/{sparsehash-1.8.1 → sparsehash-2.0.2}/experimental/README +0 -0
- data/ext/{sparsehash-1.8.1 → sparsehash-2.0.2}/experimental/example.c +1 -0
- data/ext/{sparsehash-1.8.1 → sparsehash-2.0.2}/experimental/libchash.c +1 -0
- data/ext/{sparsehash-1.8.1 → sparsehash-2.0.2}/experimental/libchash.h +1 -0
- data/ext/sparsehash-2.0.2/install-sh +520 -0
- data/ext/{sparsehash-1.8.1 → sparsehash-2.0.2}/m4/acx_pthread.m4 +34 -0
- data/ext/{sparsehash-1.8.1 → sparsehash-2.0.2}/m4/google_namespace.m4 +0 -0
- data/ext/{sparsehash-1.8.1 → sparsehash-2.0.2}/m4/namespaces.m4 +0 -0
- data/ext/{sparsehash-1.8.1 → sparsehash-2.0.2}/m4/stl_hash.m4 +0 -0
- data/ext/{sparsehash-1.8.1 → sparsehash-2.0.2}/m4/stl_hash_fun.m4 +0 -0
- data/ext/{sparsehash-1.8.1 → sparsehash-2.0.2}/missing +60 -44
- data/ext/{sparsehash-1.8.1 → sparsehash-2.0.2}/packages/deb.sh +0 -0
- data/ext/{sparsehash-1.8.1 → sparsehash-2.0.2}/packages/deb/README +0 -0
- data/ext/{sparsehash-1.8.1 → sparsehash-2.0.2}/packages/deb/changelog +42 -0
- data/ext/{sparsehash-1.8.1 → sparsehash-2.0.2}/packages/deb/compat +0 -0
- data/ext/{sparsehash-1.8.1 → sparsehash-2.0.2}/packages/deb/control +1 -1
- data/ext/{sparsehash-1.8.1 → sparsehash-2.0.2}/packages/deb/copyright +5 -4
- data/ext/{sparsehash-1.8.1 → sparsehash-2.0.2}/packages/deb/docs +0 -0
- data/ext/{sparsehash-1.8.1 → sparsehash-2.0.2}/packages/deb/rules +0 -0
- data/ext/sparsehash-2.0.2/packages/deb/sparsehash.dirs +5 -0
- data/ext/sparsehash-2.0.2/packages/deb/sparsehash.install +6 -0
- data/ext/{sparsehash-1.8.1 → sparsehash-2.0.2}/packages/rpm.sh +1 -1
- data/ext/{sparsehash-1.8.1 → sparsehash-2.0.2}/packages/rpm/rpm.spec +5 -3
- data/ext/{sparsehash-1.8.1/google-sparsehash.sln → sparsehash-2.0.2/sparsehash.sln} +0 -0
- data/ext/sparsehash-2.0.2/src/config.h +132 -0
- data/ext/{sparsehash-1.8.1 → sparsehash-2.0.2}/src/config.h.in +0 -3
- data/ext/{sparsehash-1.8.1 → sparsehash-2.0.2}/src/config.h.include +0 -1
- data/ext/sparsehash-2.0.2/src/google/dense_hash_map +34 -0
- data/ext/sparsehash-2.0.2/src/google/dense_hash_set +34 -0
- data/ext/sparsehash-2.0.2/src/google/sparse_hash_map +34 -0
- data/ext/sparsehash-2.0.2/src/google/sparse_hash_set +34 -0
- data/ext/sparsehash-2.0.2/src/google/sparsehash/densehashtable.h +34 -0
- data/ext/sparsehash-2.0.2/src/google/sparsehash/hashtable-common.h +34 -0
- data/ext/sparsehash-2.0.2/src/google/sparsehash/libc_allocator_with_realloc.h +34 -0
- data/ext/sparsehash-2.0.2/src/google/sparsehash/sparsehashtable.h +34 -0
- data/ext/sparsehash-2.0.2/src/google/sparsetable +34 -0
- data/ext/sparsehash-2.0.2/src/google/template_util.h +34 -0
- data/ext/sparsehash-2.0.2/src/google/type_traits.h +34 -0
- data/ext/{sparsehash-1.8.1 → sparsehash-2.0.2}/src/hash_test_interface.h +64 -37
- data/ext/{sparsehash-1.8.1 → sparsehash-2.0.2}/src/hashtable_test.cc +415 -141
- data/ext/{sparsehash-1.8.1 → sparsehash-2.0.2}/src/libc_allocator_with_realloc_test.cc +16 -23
- data/ext/sparsehash-2.0.2/src/simple_compat_test.cc +106 -0
- data/ext/{sparsehash-1.8.1 → sparsehash-2.0.2}/src/simple_test.cc +8 -5
- data/ext/{sparsehash-1.8.1/src/google → sparsehash-2.0.2/src/sparsehash}/dense_hash_map +80 -37
- data/ext/{sparsehash-1.8.1/src/google → sparsehash-2.0.2/src/sparsehash}/dense_hash_set +64 -34
- data/ext/{sparsehash-1.8.1/src/google/sparsehash → sparsehash-2.0.2/src/sparsehash/internal}/densehashtable.h +247 -173
- data/ext/sparsehash-2.0.2/src/sparsehash/internal/hashtable-common.h +381 -0
- data/ext/{sparsehash-1.8.1/src/google/sparsehash → sparsehash-2.0.2/src/sparsehash/internal}/libc_allocator_with_realloc.h +5 -7
- data/ext/{sparsehash-1.8.1/src/google/sparsehash → sparsehash-2.0.2/src/sparsehash/internal}/sparsehashtable.h +154 -93
- data/ext/{sparsehash-1.8.1/src/google → sparsehash-2.0.2/src/sparsehash}/sparse_hash_map +96 -36
- data/ext/{sparsehash-1.8.1/src/google → sparsehash-2.0.2/src/sparsehash}/sparse_hash_set +85 -32
- data/ext/{sparsehash-1.8.1/src/google → sparsehash-2.0.2/src/sparsehash}/sparsetable +520 -258
- data/ext/sparsehash-2.0.2/src/sparsehash/template_util.h +134 -0
- data/ext/{sparsehash-1.8.1/src/google → sparsehash-2.0.2/src/sparsehash}/type_traits.h +153 -35
- data/ext/{sparsehash-1.8.1 → sparsehash-2.0.2}/src/sparsetable_unittest.cc +108 -22
- data/ext/sparsehash-2.0.2/src/stamp-h1 +1 -0
- data/ext/sparsehash-2.0.2/src/template_util_unittest.cc +134 -0
- data/ext/{sparsehash-1.8.1 → sparsehash-2.0.2}/src/testutil.h +16 -1
- data/ext/{sparsehash-1.8.1 → sparsehash-2.0.2}/src/time_hash_map.cc +259 -94
- data/ext/sparsehash-2.0.2/src/type_traits_unittest.cc +636 -0
- data/ext/{sparsehash-1.8.1 → sparsehash-2.0.2}/src/windows/config.h +4 -4
- data/ext/sparsehash-2.0.2/src/windows/google/sparsehash/sparseconfig.h +49 -0
- data/ext/{sparsehash-1.8.1 → sparsehash-2.0.2}/src/windows/port.cc +1 -0
- data/ext/{sparsehash-1.8.1 → sparsehash-2.0.2}/src/windows/port.h +4 -13
- data/ext/sparsehash-2.0.2/src/windows/sparsehash/internal/sparseconfig.h +49 -0
- data/ext/{sparsehash-1.8.1 → sparsehash-2.0.2}/vsprojects/hashtable_test/hashtable_test.vcproj +11 -11
- data/ext/sparsehash-2.0.2/vsprojects/libc_allocator_with_realloc_test/libc_allocator_with_realloc_test.vcproj +161 -0
- data/ext/{sparsehash-1.8.1 → sparsehash-2.0.2}/vsprojects/simple_test/simple_test.vcproj +10 -10
- data/ext/{sparsehash-1.8.1 → sparsehash-2.0.2}/vsprojects/sparsetable_unittest/sparsetable_unittest.vcproj +4 -4
- data/ext/{sparsehash-1.8.1 → sparsehash-2.0.2}/vsprojects/time_hash_map/time_hash_map.vcproj +10 -10
- data/ext/{sparsehash-1.8.1 → sparsehash-2.0.2}/vsprojects/type_traits_unittest/type_traits_unittest.vcproj +3 -3
- data/ext/spec.bat +0 -0
- data/ext/template/google_hash.cpp.erb +6 -5
- metadata +106 -86
- data/ext/sparsehash-1.8.1/AUTHORS +0 -2
- data/ext/sparsehash-1.8.1/INSTALL +0 -236
- data/ext/sparsehash-1.8.1/NEWS +0 -71
- data/ext/sparsehash-1.8.1/compile +0 -99
- data/ext/sparsehash-1.8.1/install-sh +0 -323
- data/ext/sparsehash-1.8.1/m4/stl_namespace.m4 +0 -25
- data/ext/sparsehash-1.8.1/mkinstalldirs +0 -158
- data/ext/sparsehash-1.8.1/packages/deb/sparsehash.dirs +0 -2
- data/ext/sparsehash-1.8.1/packages/deb/sparsehash.install +0 -2
- data/ext/sparsehash-1.8.1/src/google/sparsehash/hashtable-common.h +0 -178
- data/ext/sparsehash-1.8.1/src/type_traits_unittest.cc +0 -502
- data/ext/sparsehash-1.8.1/src/windows/google/sparsehash/sparseconfig.h +0 -32
|
@@ -340,6 +340,40 @@ if test "x$acx_pthread_ok" = xyes; then
|
|
|
340
340
|
acx_pthread_ok=no
|
|
341
341
|
fi
|
|
342
342
|
|
|
343
|
+
AC_MSG_CHECKING([whether what we have so far is sufficient with -nostdlib])
|
|
344
|
+
CFLAGS="-nostdlib $CFLAGS"
|
|
345
|
+
# we need c with nostdlib
|
|
346
|
+
LIBS="$LIBS -lc"
|
|
347
|
+
AC_TRY_LINK([#include <pthread.h>],
|
|
348
|
+
[pthread_t th; pthread_join(th, 0);
|
|
349
|
+
pthread_attr_init(0); pthread_cleanup_push(0, 0);
|
|
350
|
+
pthread_create(0,0,0,0); pthread_cleanup_pop(0); ],
|
|
351
|
+
[done=yes],[done=no])
|
|
352
|
+
|
|
353
|
+
if test "x$done" = xyes; then
|
|
354
|
+
AC_MSG_RESULT([yes])
|
|
355
|
+
else
|
|
356
|
+
AC_MSG_RESULT([no])
|
|
357
|
+
fi
|
|
358
|
+
|
|
359
|
+
if test x"$done" = xno; then
|
|
360
|
+
AC_MSG_CHECKING([whether -lpthread saves the day])
|
|
361
|
+
LIBS="-lpthread $LIBS"
|
|
362
|
+
AC_TRY_LINK([#include <pthread.h>],
|
|
363
|
+
[pthread_t th; pthread_join(th, 0);
|
|
364
|
+
pthread_attr_init(0); pthread_cleanup_push(0, 0);
|
|
365
|
+
pthread_create(0,0,0,0); pthread_cleanup_pop(0); ],
|
|
366
|
+
[done=yes],[done=no])
|
|
367
|
+
|
|
368
|
+
if test "x$done" = xyes; then
|
|
369
|
+
AC_MSG_RESULT([yes])
|
|
370
|
+
PTHREAD_LIBS="$PTHREAD_LIBS -lpthread"
|
|
371
|
+
else
|
|
372
|
+
AC_MSG_RESULT([no])
|
|
373
|
+
AC_MSG_WARN([Impossible to determine how to use pthreads with shared libraries and -nostdlib])
|
|
374
|
+
fi
|
|
375
|
+
fi
|
|
376
|
+
|
|
343
377
|
CFLAGS="$save_CFLAGS"
|
|
344
378
|
LIBS="$save_LIBS"
|
|
345
379
|
CC="$save_CC"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
#! /bin/sh
|
|
2
2
|
# Common stub for a few missing GNU programs while installing.
|
|
3
3
|
|
|
4
|
-
scriptversion=
|
|
4
|
+
scriptversion=2009-04-28.21; # UTC
|
|
5
5
|
|
|
6
|
-
# Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005
|
|
7
|
-
#
|
|
6
|
+
# Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006,
|
|
7
|
+
# 2008, 2009 Free Software Foundation, Inc.
|
|
8
8
|
# Originally by Fran,cois Pinard <pinard@iro.umontreal.ca>, 1996.
|
|
9
9
|
|
|
10
10
|
# This program is free software; you can redistribute it and/or modify
|
|
@@ -18,9 +18,7 @@ scriptversion=2005-06-08.21
|
|
|
18
18
|
# GNU General Public License for more details.
|
|
19
19
|
|
|
20
20
|
# You should have received a copy of the GNU General Public License
|
|
21
|
-
# along with this program
|
|
22
|
-
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
23
|
-
# 02110-1301, USA.
|
|
21
|
+
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
24
22
|
|
|
25
23
|
# As a special exception to the GNU General Public License, if you
|
|
26
24
|
# distribute this file as part of a program that contains a
|
|
@@ -33,6 +31,8 @@ if test $# -eq 0; then
|
|
|
33
31
|
fi
|
|
34
32
|
|
|
35
33
|
run=:
|
|
34
|
+
sed_output='s/.* --output[ =]\([^ ]*\).*/\1/p'
|
|
35
|
+
sed_minuso='s/.* -o \([^ ]*\).*/\1/p'
|
|
36
36
|
|
|
37
37
|
# In the cases where this matters, `missing' is being run in the
|
|
38
38
|
# srcdir already.
|
|
@@ -44,7 +44,7 @@ fi
|
|
|
44
44
|
|
|
45
45
|
msg="missing on your system"
|
|
46
46
|
|
|
47
|
-
case
|
|
47
|
+
case $1 in
|
|
48
48
|
--run)
|
|
49
49
|
# Try to run requested program, and just exit if it succeeds.
|
|
50
50
|
run=
|
|
@@ -77,6 +77,7 @@ Supported PROGRAM values:
|
|
|
77
77
|
aclocal touch file \`aclocal.m4'
|
|
78
78
|
autoconf touch file \`configure'
|
|
79
79
|
autoheader touch file \`config.h.in'
|
|
80
|
+
autom4te touch the output file, or create a stub one
|
|
80
81
|
automake touch all \`Makefile.in' files
|
|
81
82
|
bison create \`y.tab.[ch]', if possible, from existing .[ch]
|
|
82
83
|
flex create \`lex.yy.c', if possible, from existing .c
|
|
@@ -86,6 +87,9 @@ Supported PROGRAM values:
|
|
|
86
87
|
tar try tar, gnutar, gtar, then tar without non-portable flags
|
|
87
88
|
yacc create \`y.tab.[ch]', if possible, from existing .[ch]
|
|
88
89
|
|
|
90
|
+
Version suffixes to PROGRAM as well as the prefixes \`gnu-', \`gnu', and
|
|
91
|
+
\`g' are ignored when checking the name.
|
|
92
|
+
|
|
89
93
|
Send bug reports to <bug-automake@gnu.org>."
|
|
90
94
|
exit $?
|
|
91
95
|
;;
|
|
@@ -103,15 +107,22 @@ Send bug reports to <bug-automake@gnu.org>."
|
|
|
103
107
|
|
|
104
108
|
esac
|
|
105
109
|
|
|
110
|
+
# normalize program name to check for.
|
|
111
|
+
program=`echo "$1" | sed '
|
|
112
|
+
s/^gnu-//; t
|
|
113
|
+
s/^gnu//; t
|
|
114
|
+
s/^g//; t'`
|
|
115
|
+
|
|
106
116
|
# Now exit if we have it, but it failed. Also exit now if we
|
|
107
117
|
# don't have it and --version was passed (most likely to detect
|
|
108
|
-
# the program).
|
|
109
|
-
|
|
110
|
-
|
|
118
|
+
# the program). This is about non-GNU programs, so use $1 not
|
|
119
|
+
# $program.
|
|
120
|
+
case $1 in
|
|
121
|
+
lex*|yacc*)
|
|
111
122
|
# Not GNU programs, they don't have --version.
|
|
112
123
|
;;
|
|
113
124
|
|
|
114
|
-
tar)
|
|
125
|
+
tar*)
|
|
115
126
|
if test -n "$run"; then
|
|
116
127
|
echo 1>&2 "ERROR: \`tar' requires --run"
|
|
117
128
|
exit 1
|
|
@@ -135,7 +146,7 @@ esac
|
|
|
135
146
|
|
|
136
147
|
# If it does not exist, or fails to run (possibly an outdated version),
|
|
137
148
|
# try to emulate it.
|
|
138
|
-
case
|
|
149
|
+
case $program in
|
|
139
150
|
aclocal*)
|
|
140
151
|
echo 1>&2 "\
|
|
141
152
|
WARNING: \`$1' is $msg. You should only need it if
|
|
@@ -145,7 +156,7 @@ WARNING: \`$1' is $msg. You should only need it if
|
|
|
145
156
|
touch aclocal.m4
|
|
146
157
|
;;
|
|
147
158
|
|
|
148
|
-
autoconf)
|
|
159
|
+
autoconf*)
|
|
149
160
|
echo 1>&2 "\
|
|
150
161
|
WARNING: \`$1' is $msg. You should only need it if
|
|
151
162
|
you modified \`${configure_ac}'. You might want to install the
|
|
@@ -154,7 +165,7 @@ WARNING: \`$1' is $msg. You should only need it if
|
|
|
154
165
|
touch configure
|
|
155
166
|
;;
|
|
156
167
|
|
|
157
|
-
autoheader)
|
|
168
|
+
autoheader*)
|
|
158
169
|
echo 1>&2 "\
|
|
159
170
|
WARNING: \`$1' is $msg. You should only need it if
|
|
160
171
|
you modified \`acconfig.h' or \`${configure_ac}'. You might want
|
|
@@ -164,7 +175,7 @@ WARNING: \`$1' is $msg. You should only need it if
|
|
|
164
175
|
test -z "$files" && files="config.h"
|
|
165
176
|
touch_files=
|
|
166
177
|
for f in $files; do
|
|
167
|
-
case
|
|
178
|
+
case $f in
|
|
168
179
|
*:*) touch_files="$touch_files "`echo "$f" |
|
|
169
180
|
sed -e 's/^[^:]*://' -e 's/:.*//'`;;
|
|
170
181
|
*) touch_files="$touch_files $f.in";;
|
|
@@ -184,7 +195,7 @@ WARNING: \`$1' is $msg. You should only need it if
|
|
|
184
195
|
while read f; do touch "$f"; done
|
|
185
196
|
;;
|
|
186
197
|
|
|
187
|
-
autom4te)
|
|
198
|
+
autom4te*)
|
|
188
199
|
echo 1>&2 "\
|
|
189
200
|
WARNING: \`$1' is needed, but is $msg.
|
|
190
201
|
You might have modified some files without having the
|
|
@@ -192,8 +203,8 @@ WARNING: \`$1' is needed, but is $msg.
|
|
|
192
203
|
You can get \`$1' as part of \`Autoconf' from any GNU
|
|
193
204
|
archive site."
|
|
194
205
|
|
|
195
|
-
file=`echo "$*" | sed -n
|
|
196
|
-
test -z "$file" && file=`echo "$*" | sed -n
|
|
206
|
+
file=`echo "$*" | sed -n "$sed_output"`
|
|
207
|
+
test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"`
|
|
197
208
|
if test -f "$file"; then
|
|
198
209
|
touch $file
|
|
199
210
|
else
|
|
@@ -207,80 +218,78 @@ WARNING: \`$1' is needed, but is $msg.
|
|
|
207
218
|
fi
|
|
208
219
|
;;
|
|
209
220
|
|
|
210
|
-
bison
|
|
221
|
+
bison*|yacc*)
|
|
211
222
|
echo 1>&2 "\
|
|
212
223
|
WARNING: \`$1' $msg. You should only need it if
|
|
213
224
|
you modified a \`.y' file. You may need the \`Bison' package
|
|
214
225
|
in order for those modifications to take effect. You can get
|
|
215
226
|
\`Bison' from any GNU archive site."
|
|
216
227
|
rm -f y.tab.c y.tab.h
|
|
217
|
-
if
|
|
228
|
+
if test $# -ne 1; then
|
|
218
229
|
eval LASTARG="\${$#}"
|
|
219
|
-
case
|
|
230
|
+
case $LASTARG in
|
|
220
231
|
*.y)
|
|
221
232
|
SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'`
|
|
222
|
-
if
|
|
233
|
+
if test -f "$SRCFILE"; then
|
|
223
234
|
cp "$SRCFILE" y.tab.c
|
|
224
235
|
fi
|
|
225
236
|
SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'`
|
|
226
|
-
if
|
|
237
|
+
if test -f "$SRCFILE"; then
|
|
227
238
|
cp "$SRCFILE" y.tab.h
|
|
228
239
|
fi
|
|
229
240
|
;;
|
|
230
241
|
esac
|
|
231
242
|
fi
|
|
232
|
-
if
|
|
243
|
+
if test ! -f y.tab.h; then
|
|
233
244
|
echo >y.tab.h
|
|
234
245
|
fi
|
|
235
|
-
if
|
|
246
|
+
if test ! -f y.tab.c; then
|
|
236
247
|
echo 'main() { return 0; }' >y.tab.c
|
|
237
248
|
fi
|
|
238
249
|
;;
|
|
239
250
|
|
|
240
|
-
lex
|
|
251
|
+
lex*|flex*)
|
|
241
252
|
echo 1>&2 "\
|
|
242
253
|
WARNING: \`$1' is $msg. You should only need it if
|
|
243
254
|
you modified a \`.l' file. You may need the \`Flex' package
|
|
244
255
|
in order for those modifications to take effect. You can get
|
|
245
256
|
\`Flex' from any GNU archive site."
|
|
246
257
|
rm -f lex.yy.c
|
|
247
|
-
if
|
|
258
|
+
if test $# -ne 1; then
|
|
248
259
|
eval LASTARG="\${$#}"
|
|
249
|
-
case
|
|
260
|
+
case $LASTARG in
|
|
250
261
|
*.l)
|
|
251
262
|
SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'`
|
|
252
|
-
if
|
|
263
|
+
if test -f "$SRCFILE"; then
|
|
253
264
|
cp "$SRCFILE" lex.yy.c
|
|
254
265
|
fi
|
|
255
266
|
;;
|
|
256
267
|
esac
|
|
257
268
|
fi
|
|
258
|
-
if
|
|
269
|
+
if test ! -f lex.yy.c; then
|
|
259
270
|
echo 'main() { return 0; }' >lex.yy.c
|
|
260
271
|
fi
|
|
261
272
|
;;
|
|
262
273
|
|
|
263
|
-
help2man)
|
|
274
|
+
help2man*)
|
|
264
275
|
echo 1>&2 "\
|
|
265
276
|
WARNING: \`$1' is $msg. You should only need it if
|
|
266
277
|
you modified a dependency of a manual page. You may need the
|
|
267
278
|
\`Help2man' package in order for those modifications to take
|
|
268
279
|
effect. You can get \`Help2man' from any GNU archive site."
|
|
269
280
|
|
|
270
|
-
file=`echo "$*" | sed -n
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
fi
|
|
274
|
-
if [ -f "$file" ]; then
|
|
281
|
+
file=`echo "$*" | sed -n "$sed_output"`
|
|
282
|
+
test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"`
|
|
283
|
+
if test -f "$file"; then
|
|
275
284
|
touch $file
|
|
276
285
|
else
|
|
277
286
|
test -z "$file" || exec >$file
|
|
278
287
|
echo ".ab help2man is required to generate this page"
|
|
279
|
-
exit
|
|
288
|
+
exit $?
|
|
280
289
|
fi
|
|
281
290
|
;;
|
|
282
291
|
|
|
283
|
-
makeinfo)
|
|
292
|
+
makeinfo*)
|
|
284
293
|
echo 1>&2 "\
|
|
285
294
|
WARNING: \`$1' is $msg. You should only need it if
|
|
286
295
|
you modified a \`.texi' or \`.texinfo' file, or any other file
|
|
@@ -289,11 +298,17 @@ WARNING: \`$1' is $msg. You should only need it if
|
|
|
289
298
|
DU, IRIX). You might want to install the \`Texinfo' package or
|
|
290
299
|
the \`GNU make' package. Grab either from any GNU archive site."
|
|
291
300
|
# The file to touch is that specified with -o ...
|
|
292
|
-
file=`echo "$*" | sed -n
|
|
301
|
+
file=`echo "$*" | sed -n "$sed_output"`
|
|
302
|
+
test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"`
|
|
293
303
|
if test -z "$file"; then
|
|
294
304
|
# ... or it is the one specified with @setfilename ...
|
|
295
305
|
infile=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'`
|
|
296
|
-
file=`sed -n '
|
|
306
|
+
file=`sed -n '
|
|
307
|
+
/^@setfilename/{
|
|
308
|
+
s/.* \([^ ]*\) *$/\1/
|
|
309
|
+
p
|
|
310
|
+
q
|
|
311
|
+
}' $infile`
|
|
297
312
|
# ... or it is derived from the source name (dir/f.texi becomes f.info)
|
|
298
313
|
test -z "$file" && file=`echo "$infile" | sed 's,.*/,,;s,.[^.]*$,,'`.info
|
|
299
314
|
fi
|
|
@@ -303,7 +318,7 @@ WARNING: \`$1' is $msg. You should only need it if
|
|
|
303
318
|
touch $file
|
|
304
319
|
;;
|
|
305
320
|
|
|
306
|
-
tar)
|
|
321
|
+
tar*)
|
|
307
322
|
shift
|
|
308
323
|
|
|
309
324
|
# We have already tried tar in the generic part.
|
|
@@ -317,13 +332,13 @@ WARNING: \`$1' is $msg. You should only need it if
|
|
|
317
332
|
fi
|
|
318
333
|
firstarg="$1"
|
|
319
334
|
if shift; then
|
|
320
|
-
case
|
|
335
|
+
case $firstarg in
|
|
321
336
|
*o*)
|
|
322
337
|
firstarg=`echo "$firstarg" | sed s/o//`
|
|
323
338
|
tar "$firstarg" "$@" && exit 0
|
|
324
339
|
;;
|
|
325
340
|
esac
|
|
326
|
-
case
|
|
341
|
+
case $firstarg in
|
|
327
342
|
*h*)
|
|
328
343
|
firstarg=`echo "$firstarg" | sed s/h//`
|
|
329
344
|
tar "$firstarg" "$@" && exit 0
|
|
@@ -356,5 +371,6 @@ exit 0
|
|
|
356
371
|
# eval: (add-hook 'write-file-hooks 'time-stamp)
|
|
357
372
|
# time-stamp-start: "scriptversion="
|
|
358
373
|
# time-stamp-format: "%:y-%02m-%02d.%02H"
|
|
359
|
-
# time-stamp-
|
|
374
|
+
# time-stamp-time-zone: "UTC"
|
|
375
|
+
# time-stamp-end: "; # UTC"
|
|
360
376
|
# End:
|
|
File without changes
|
|
File without changes
|
|
@@ -1,3 +1,45 @@
|
|
|
1
|
+
sparsehash (2.0.2-1) unstable; urgency=low
|
|
2
|
+
|
|
3
|
+
* New upstream release.
|
|
4
|
+
|
|
5
|
+
-- Google Inc. and others <google-sparsehash@googlegroups.com> Thu, 23 Feb 2012 23:47:18 +0000
|
|
6
|
+
|
|
7
|
+
sparsehash (2.0.1-1) unstable; urgency=low
|
|
8
|
+
|
|
9
|
+
* New upstream release.
|
|
10
|
+
|
|
11
|
+
-- Google Inc. and others <google-sparsehash@googlegroups.com> Wed, 01 Feb 2012 02:57:48 +0000
|
|
12
|
+
|
|
13
|
+
sparsehash (2.0-1) unstable; urgency=low
|
|
14
|
+
|
|
15
|
+
* New upstream release.
|
|
16
|
+
|
|
17
|
+
-- Google Inc. and others <google-sparsehash@googlegroups.com> Tue, 31 Jan 2012 11:33:04 -0800
|
|
18
|
+
|
|
19
|
+
sparsehash (1.12-1) unstable; urgency=low
|
|
20
|
+
|
|
21
|
+
* New upstream release.
|
|
22
|
+
|
|
23
|
+
-- Google Inc. <opensource@google.com> Tue, 20 Dec 2011 21:04:04 -0800
|
|
24
|
+
|
|
25
|
+
sparsehash (1.11-1) unstable; urgency=low
|
|
26
|
+
|
|
27
|
+
* New upstream release.
|
|
28
|
+
|
|
29
|
+
-- Google Inc. <opensource@google.com> Thu, 23 Jun 2011 21:12:58 -0700
|
|
30
|
+
|
|
31
|
+
sparsehash (1.10-1) unstable; urgency=low
|
|
32
|
+
|
|
33
|
+
* New upstream release.
|
|
34
|
+
|
|
35
|
+
-- Google Inc. <opensource@google.com> Thu, 20 Jan 2011 16:07:39 -0800
|
|
36
|
+
|
|
37
|
+
sparsehash (1.9-1) unstable; urgency=low
|
|
38
|
+
|
|
39
|
+
* New upstream release.
|
|
40
|
+
|
|
41
|
+
-- Google Inc. <opensource@google.com> Fri, 24 Sep 2010 11:37:50 -0700
|
|
42
|
+
|
|
1
43
|
sparsehash (1.8.1-1) unstable; urgency=low
|
|
2
44
|
|
|
3
45
|
* New upstream release.
|
|
File without changes
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
This package was debianized by
|
|
2
|
-
|
|
1
|
+
This package was debianized by Donovan Hide <google-sparsehash@googlegroups.com>
|
|
2
|
+
on Wed, Thu, 23 Feb 2012 23:47:18 +0000.
|
|
3
3
|
|
|
4
|
-
It was downloaded from
|
|
4
|
+
It was downloaded from
|
|
5
|
+
http://code.google.com/p/sparsehash/downloads/list
|
|
5
6
|
|
|
6
|
-
Upstream Author:
|
|
7
|
+
Upstream Author: google-sparsehash@googlegroups.com
|
|
7
8
|
|
|
8
9
|
Copyright (c) 2005, Google Inc.
|
|
9
10
|
All rights reserved.
|
|
File without changes
|
|
File without changes
|
|
@@ -52,7 +52,7 @@ cp "$archive" "$RPM_SOURCE_DIR"
|
|
|
52
52
|
# does a better job of this, so if we can run 'dpkg --print-architecture'
|
|
53
53
|
# to get the build CPU, we use that in preference of the rpmbuild
|
|
54
54
|
# default.
|
|
55
|
-
target=`dpkg --print-architecture 2>/dev/null
|
|
55
|
+
target=`dpkg --print-architecture 2>/dev/null || echo ""`
|
|
56
56
|
if [ -n "$target" ]
|
|
57
57
|
then
|
|
58
58
|
target=" --target $target"
|
|
@@ -7,10 +7,10 @@ Summary: hash_map and hash_set classes with minimal space overhead
|
|
|
7
7
|
Version: %VERSION
|
|
8
8
|
Release: %rel
|
|
9
9
|
Group: Development/Libraries
|
|
10
|
-
URL: http://code.google.com/p/
|
|
10
|
+
URL: http://code.google.com/p/sparsehash
|
|
11
11
|
License: BSD
|
|
12
|
-
Vendor: Google
|
|
13
|
-
Packager: Google <google-sparsehash@googlegroups.com>
|
|
12
|
+
Vendor: Google Inc. and others
|
|
13
|
+
Packager: Google Inc. and others <google-sparsehash@googlegroups.com>
|
|
14
14
|
Source: http://%{NAME}.googlecode.com/files/%{NAME}-%{VERSION}.tar.gz
|
|
15
15
|
Distribution: Redhat 7 and above.
|
|
16
16
|
Buildroot: %{_tmppath}/%{name}-root
|
|
@@ -59,3 +59,5 @@ rm -rf $RPM_BUILD_ROOT
|
|
|
59
59
|
%{prefix}/share/doc/%{NAME}-%{VERSION}/*
|
|
60
60
|
|
|
61
61
|
%{_includedir}/google
|
|
62
|
+
%{_includedir}/sparsehash
|
|
63
|
+
%{_libdir}/pkgconfig/*.pc
|