diff options
author | Michael Stapelberg <stapelberg@debian.org> | 2013-12-31 18:28:47 +0100 |
---|---|---|
committer | Michael Stapelberg <stapelberg@debian.org> | 2013-12-31 18:28:47 +0100 |
commit | f3bac4df22adcdd6ff99eaf351605cf7872c7319 (patch) | |
tree | 3b537891dd4203bf43a95e7de6b978f4c07898b5 /debian | |
parent | 6054425e66409603d78a9b17ec4fb672fe13ed16 (diff) | |
download | golang-f3bac4df22adcdd6ff99eaf351605cf7872c7319.tar.gz |
add patches/add-src-pkg-debug-elf-testdata-hello.patchdebian/2%1.2-2
…to provide source for the testdata/ ELF binaries
Closes: #716853
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 7 | ||||
-rw-r--r-- | debian/patches/add-src-pkg-debug-elf-testdata-hello.patch | 17 | ||||
-rw-r--r-- | debian/patches/series | 1 |
3 files changed, 25 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog index da3c6d6fe..f5dbf8ffe 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +golang (2:1.2-2) unstable; urgency=low + + * add patches/add-src-pkg-debug-elf-testdata-hello.patch to provide source + for the testdata/ ELF binaries (Closes: #716853) + + -- Michael Stapelberg <stapelberg@debian.org> Tue, 31 Dec 2013 18:28:29 +0100 + golang (2:1.2-1) unstable; urgency=low * New upstream release. diff --git a/debian/patches/add-src-pkg-debug-elf-testdata-hello.patch b/debian/patches/add-src-pkg-debug-elf-testdata-hello.patch new file mode 100644 index 000000000..4518bd157 --- /dev/null +++ b/debian/patches/add-src-pkg-debug-elf-testdata-hello.patch @@ -0,0 +1,17 @@ +Description: Source file to fix http://bugs.debian.org/716853 +Author: Michael Stapelberg <stapelberg@debian.org> +Last-Update: 2013-12-31 +Forwarded: https://codereview.appspot.com/46780043 + +Index: golang/src/pkg/debug/elf/testdata/hello.c +=================================================================== +--- /dev/null 1970-01-01 00:00:00.000000000 +0000 ++++ golang/src/pkg/debug/elf/testdata/hello.c 2013-12-31 18:25:09.268498582 +0100 +@@ -0,0 +1,7 @@ ++#include <stdio.h> ++ ++void ++main(int argc, char *argv[]) ++{ ++ printf("hello, world\n"); ++} diff --git a/debian/patches/series b/debian/patches/series new file mode 100644 index 000000000..6da8b45a4 --- /dev/null +++ b/debian/patches/series @@ -0,0 +1 @@ +add-src-pkg-debug-elf-testdata-hello.patch |