Codebase list mash / 5e33b56
Refresh patches. Debian Janitor 4 years ago
6 changed file(s) with 39 addition(s) and 23 deletion(s). Raw diff Collapse all Expand all
00 Description: drop memcpy wrapper
11 Not needed here, as our binaries needn't be portable across glib versions.
22 Author: Sascha Steinbiss <satta@debian.org>
3 --- a/Makefile.in
4 +++ b/Makefile.in
5 @@ -5,9 +5,6 @@
3 Index: mash/Makefile.in
4 ===================================================================
5 --- mash.orig/Makefile.in
6 +++ mash/Makefile.in
7 @@ -5,9 +5,6 @@ UNAME_S=$(shell uname -s)
68
79 ifeq ($(UNAME_S),Darwin)
810 CXXFLAGS += -mmacosx-version-min=10.7 -stdlib=libc++
1214 endif
1315
1416 SOURCES=\
15 @@ -36,8 +33,8 @@
17 @@ -36,8 +33,8 @@ OBJECTS=$(SOURCES:.cpp=.o) src/mash/capn
1618
1719 all : mash libmash.a
1820
2325
2426 libmash.a : $(OBJECTS)
2527 ar -cr libmash.a $(OBJECTS)
26 @@ -51,9 +48,6 @@
28 @@ -51,9 +48,6 @@ libmash.a : $(OBJECTS)
2729 %.o : %.c++
2830 $(CXX) -c $(CXXFLAGS) $(CPPFLAGS) -o $@ $<
2931
00 Description: add hardening support
11 This patch adds the missing LDFLAGS for hardening support.
22 Author: Sascha Steinbiss <satta@debian.org>
3 --- a/Makefile.in
4 +++ b/Makefile.in
5 @@ -37,7 +37,7 @@
3 Index: mash/Makefile.in
4 ===================================================================
5 --- mash.orig/Makefile.in
6 +++ mash/Makefile.in
7 @@ -37,7 +37,7 @@ OBJECTS=$(SOURCES:.cpp=.o) src/mash/capn
68 all : mash libmash.a
79
810 mash : libmash.a src/mash/memcpyWrap.o
00 Description: link dynamically against libcapnp and friends
11 Author: Sascha Steinbiss <satta@debian.org>
2 --- a/Makefile.in
3 +++ b/Makefile.in
4 @@ -33,8 +33,8 @@
2 Index: mash/Makefile.in
3 ===================================================================
4 --- mash.orig/Makefile.in
5 +++ mash/Makefile.in
6 @@ -33,8 +33,8 @@ OBJECTS=$(SOURCES:.cpp=.o) src/mash/capn
57
68 all : mash libmash.a
79
44 Fix the Makefile to only run "capnp compile" once.
55 Author: Adrian Bunk <bunk@debian.org>
66
7 --- a/Makefile.in
8 +++ b/Makefile.in
9 @@ -48,7 +48,9 @@
7 Index: mash/Makefile.in
8 ===================================================================
9 --- mash.orig/Makefile.in
10 +++ mash/Makefile.in
11 @@ -48,7 +48,9 @@ libmash.a : $(OBJECTS)
1012 %.o : %.c++
1113 $(CXX) -c $(CXXFLAGS) $(CPPFLAGS) -o $@ $<
1214
00 Description: use Debian's Mathjax
11 Author: Sascha Steinbiss <satta@debian.org>
2 --- a/doc/sphinx/conf.py
3 +++ b/doc/sphinx/conf.py
4 @@ -256,3 +256,5 @@
2 Index: mash/doc/sphinx/conf.py
3 ===================================================================
4 --- mash.orig/doc/sphinx/conf.py
5 +++ mash/doc/sphinx/conf.py
6 @@ -256,3 +256,5 @@ texinfo_documents = [
57
68 # If true, do not generate a @detailmenu in the "Top" node's menu.
79 #texinfo_no_detailmenu = False
11 Last-Update: Tue, 05 Feb 2019 15:58:23 +0100
22 Description: use debian packaged libmurmurhash
33
4 --- a/Makefile.in
5 +++ b/Makefile.in
4 Index: mash/Makefile.in
5 ===================================================================
6 --- mash.orig/Makefile.in
7 +++ mash/Makefile.in
68 @@ -24,7 +24,6 @@ SOURCES=\
79 src/mash/HashPriorityQueue.cpp \
810 src/mash/HashSet.cpp \
2022
2123 libmash.a : $(OBJECTS)
2224 ar -cr libmash.a $(OBJECTS)
23 --- a/src/mash/Sketch.cpp
24 +++ b/src/mash/Sketch.cpp
25 Index: mash/src/mash/Sketch.cpp
26 ===================================================================
27 --- mash.orig/src/mash/Sketch.cpp
28 +++ mash/src/mash/Sketch.cpp
2529 @@ -12,7 +12,7 @@
2630 #include <fcntl.h>
2731 #include <map>
3135 #include <assert.h>
3236 #include <queue>
3337 #include <deque>
34 --- a/src/mash/hash.cpp
35 +++ b/src/mash/hash.cpp
38 Index: mash/src/mash/hash.cpp
39 ===================================================================
40 --- mash.orig/src/mash/hash.cpp
41 +++ mash/src/mash/hash.cpp
3642 @@ -5,7 +5,7 @@
3743 // See the LICENSE.txt file included with this software for license information.
3844