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 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
|
Description: <short summary of the patch>
TODO: Put a short summary on the line above and replace this paragraph
with a longer explanation of this change. Complete the meta-information
with other relevant fields (see below for details). To make it easier, the
information below has been extracted from the changelog. Adjust it or drop
it.
.
pushover (0.0.5+git20180909-1) unstable; urgency=medium
.
* New upstream version. (Closes: #897905, #906998)
* Bump standards version to 4.2.1.
* debian/control: fix typo in long description.
Author: Gürkan Myczko <gurkan@phys.ethz.ch>
Bug-Debian: https://bugs.debian.org/897905
Bug-Debian: https://bugs.debian.org/906998
---
The information above should follow the Patch Tagging Guidelines, please
checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
are templates for supplementary fields that you might want to add:
Origin: <vendor|upstream|other>, <url of original patch>
Bug: <url in upstream bugtracker>
Bug-Debian: https://bugs.debian.org/<bugnumber>
Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
Forwarded: <no|not-needed|url proving that it has been forwarded>
Reviewed-By: <name and email of someone who approved the patch>
Last-Update: 2018-09-09
--- pushover-0.0.5+git20180909.orig/src/dominoes/assembler.cpp
+++ pushover-0.0.5+git20180909/src/dominoes/assembler.cpp
@@ -3,8 +3,8 @@
* calculate a common palette
*/
-#include <SDL.h>
-#include <SDL_image.h>
+#include <SDL/SDL.h>
+#include <SDL/SDL_image.h>
#include "pngsaver.h"
--- pushover-0.0.5+git20180909.orig/src/pushover/editor.h
+++ pushover-0.0.5+git20180909/src/pushover/editor.h
@@ -22,7 +22,7 @@
#ifndef __EDIT_H__
#define __EDIT_H__
-#include <SDL.h>
+#include <SDL/SDL.h>
#include <string>
--- pushover-0.0.5+git20180909.orig/src/pushover/graphicsn.cpp
+++ pushover-0.0.5+git20180909/src/pushover/graphicsn.cpp
@@ -29,7 +29,7 @@
#include "screen.h"
#include "colors.h"
-#include <SDL.h>
+#include <SDL/SDL.h>
#include <string.h>
#include <iostream>
--- pushover-0.0.5+git20180909.orig/src/pushover/main.cpp
+++ pushover-0.0.5+git20180909/src/pushover/main.cpp
@@ -30,7 +30,7 @@
#include "tools.h"
#include "editor.h"
-#include <SDL.h>
+#include <SDL/SDL.h>
#include <fstream>
#include <string>
--- pushover-0.0.5+git20180909.orig/src/pushover/screen.h
+++ pushover-0.0.5+git20180909/src/pushover/screen.h
@@ -22,7 +22,7 @@
#ifndef __SCREEN_H__
#define __SCREEN_H__
-#include <SDL.h>
+#include <SDL/SDL.h>
#include <string>
--- pushover-0.0.5+git20180909.orig/src/pushover/soundsys.cpp
+++ pushover-0.0.5+git20180909/src/pushover/soundsys.cpp
@@ -21,7 +21,7 @@
#include "soundsys.h"
-#include <SDL.h>
+#include <SDL/SDL.h>
#include <iostream>
--- pushover-0.0.5+git20180909.orig/src/pushover/soundsys.h
+++ pushover-0.0.5+git20180909/src/pushover/soundsys.h
@@ -22,7 +22,7 @@
#ifndef __SOUNDSYS_H__
#define __SOUNDSYS_H__
-#include <SDL_mixer.h>
+#include <SDL/SDL_mixer.h>
#include <vector>
#include <string>
--- pushover-0.0.5+git20180909.orig/src/pushover/window.cpp
+++ pushover-0.0.5+git20180909/src/pushover/window.cpp
@@ -29,7 +29,7 @@
#include "leveldata.h"
#include "colors.h"
-#include <SDL.h>
+#include <SDL/SDL.h>
#include <stdexcept>
#include <libintl.h>
--- pushover-0.0.5+git20180909.orig/src/pushover/window.h
+++ pushover-0.0.5+git20180909/src/pushover/window.h
@@ -25,7 +25,7 @@
#include "ant.h"
#include "levelset.h"
-#include <SDL.h>
+#include <SDL/SDL.h>
#include <string>
#include <vector>
|