[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#862800: jessie-pu: package etherpuppet/0.3-3~deb8u1



Package: release.debian.org
Severity: normal
Tags: jessie
User: release.debian.org@packages.debian.org
Usertags: pu


 changelog                         |   14 ++++++++++++++
 patches/fix-char-signedness.patch |   15 +++++++++++++++
 patches/series                    |    1 +
 3 files changed, 30 insertions(+)

diff -Nru etherpuppet-0.3/debian/changelog etherpuppet-0.3/debian/changelog
--- etherpuppet-0.3/debian/changelog	2012-04-01 11:23:32.000000000 +0300
+++ etherpuppet-0.3/debian/changelog	2017-05-17 12:33:06.000000000 +0300
@@ -1,3 +1,17 @@
+etherpuppet (0.3-3~deb8u1) jessie; urgency=medium
+
+  * Non-maintainer upload.
+  * Rebuild for jessie.
+
+ -- Adrian Bunk <bunk@debian.org>  Wed, 17 May 2017 12:32:33 +0300
+
+etherpuppet (0.3-3) unstable; urgency=low
+
+  * Apply upstream fix to make package usable on systems with unsigned
+    char. Patch from Peter Michael Green. Closes: #861366.
+
+ -- Vincent Bernat <bernat@debian.org>  Sat, 29 Apr 2017 12:56:45 +0200
+
 etherpuppet (0.3-2) unstable; urgency=low
 
   * Fix "build-arch" target being empty. Closes: #666313.
diff -Nru etherpuppet-0.3/debian/patches/fix-char-signedness.patch etherpuppet-0.3/debian/patches/fix-char-signedness.patch
--- etherpuppet-0.3/debian/patches/fix-char-signedness.patch	1970-01-01 02:00:00.000000000 +0200
+++ etherpuppet-0.3/debian/patches/fix-char-signedness.patch	2017-04-29 13:56:45.000000000 +0300
@@ -0,0 +1,15 @@
+Description: Apply upstream fix to make package usable on systems with unsigned char.
+Author: Peter Michael Green <plugwash@raspbian.org>
+
+--- etherpuppet-0.3.orig/etherpuppet.c
++++ etherpuppet-0.3/etherpuppet.c
+@@ -227,7 +227,8 @@ int main(int argc, char *argv[])
+ 	struct sigaction sa;
+ 
+ 
+-	char c, *p, *ip, *manual_bpf_arg;
++        int c;
++	char *p, *ip, *manual_bpf_arg;
+ 	unsigned char buf[MTU+4];
+ 	char *iface = NULL;
+ 	fd_set readset;
diff -Nru etherpuppet-0.3/debian/patches/series etherpuppet-0.3/debian/patches/series
--- etherpuppet-0.3/debian/patches/series	1970-01-01 02:00:00.000000000 +0200
+++ etherpuppet-0.3/debian/patches/series	2017-04-29 13:56:45.000000000 +0300
@@ -0,0 +1 @@
+fix-char-signedness.patch


Reply to: