File: doscan.patch

package info (click to toggle)
doscan 0.3.3-1.1
  • links: PTS
  • area: main
  • in suites: bullseye
  • size: 692 kB
  • sloc: cpp: 4,655; sh: 3,040; ansic: 811; perl: 115; makefile: 108
file content (63 lines) | stat: -rw-r--r-- 1,864 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
diff -u doscan-0.3.3/debian/changelog doscan-0.3.3/debian/changelog
--- doscan-0.3.3/debian/changelog
+++ doscan-0.3.3/debian/changelog
@@ -1,3 +1,10 @@
+doscan (0.3.3-1.1) UNRELEASED; urgency=medium
+
+  * Non-maintainer upload.
+  * Fixed this and that (closes: #811845)
+
+ -- Katsuki Kobayashi <rare@tirasweel.org>  Sun, 12 Feb 2017 01:48:13 +0900
+
 doscan (0.3.3-1) unstable; urgency=low
 
   * New upstream version
diff -u doscan-0.3.3/debian/control doscan-0.3.3/debian/control
--- doscan-0.3.3/debian/control
+++ doscan-0.3.3/debian/control
@@ -5,7 +5,8 @@
 Build-Depends: debhelper (>= 7.0.50),
  libpcre3-dev,
  dh-autoreconf,
- autotools-dev
+ autotools-dev,
+ quilt
 Standards-Version: 3.6.1
 
 Package: doscan
diff -u doscan-0.3.3/debian/rules doscan-0.3.3/debian/rules
--- doscan-0.3.3/debian/rules
+++ doscan-0.3.3/debian/rules
@@ -2,3 +2,3 @@
 %:
-	dh $@ --with autoreconf,autotools_dev
+	dh $@ --with autoreconf,autotools_dev,quilt
 
only in patch2:
unchanged:
--- doscan-0.3.3.orig/debian/patches/fix-gcc6-FTBFS.patch
+++ doscan-0.3.3/debian/patches/fix-gcc6-FTBFS.patch
@@ -0,0 +1,17 @@
+Description: fix FTBFS bug with GCC6 (Debian Bug  #811845)
+Author: Katsuki Kobayashi <rare@tirasweel.org>
+Origin: other
+Last-Update: 2017-02-12
+---
+This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
+--- a/src/event_queue.cc
++++ b/src/event_queue.cc
+@@ -158,7 +158,7 @@
+ event_queue::dump()
+ {
+   if (timeouts.empty()) {
+-    std::cerr << "No handlers installed." << std::cerr;
++    std::cerr << "No handlers installed." << std::endl;
+   } else {
+     std::cerr << "Timeout handlers:" << std::endl;
+     for (timeouts_t::iterator p = timeouts.begin(); p != timeouts.end(); ++p) {
only in patch2:
unchanged:
--- doscan-0.3.3.orig/debian/patches/series
+++ doscan-0.3.3/debian/patches/series
@@ -0,0 +1 @@
+fix-gcc6-FTBFS.patch