Bug#771228: unblock: epson-inkjet-printer-escpr/1.4.1-2

2014-11-27 Thread Didier Raboud
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package epson-inkjet-printer-escpr, it has the following
changelog:

  * Backport the 1.4.4 change:
- Fixed a problem when using Rear Feed Slot as InputSlot
  (Closes: #755408)

#755408 is a bug of severity normal which the 1.4.4 upstream release was
explicitly targetting.

TIA, cheers,

OdyX

unblock epson-inkjet-printer-escpr/1.4.1-2


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20141127200950.9715.26893.reportbug@gyllingar



Bug#771228: unblock: epson-inkjet-printer-escpr/1.4.1-2

2014-11-27 Thread Didier 'OdyX' Raboud
Le jeudi, 27 novembre 2014 21.09:50, vous avez écrit :
 Please unblock package epson-inkjet-printer-escpr, it has the
 following changelog:
 
   * Backport the 1.4.4 change:
 - Fixed a problem when using Rear Feed Slot as InputSlot
   (Closes: #755408)
 
 #755408 is a bug of severity normal which the 1.4.4 upstream release
 was explicitly targetting.

Sorry, forgot the debdiff, there you go.

Cheers,
OdyXdiff -Nru epson-inkjet-printer-escpr-1.4.1/debian/changelog epson-inkjet-printer-escpr-1.4.1/debian/changelog
--- epson-inkjet-printer-escpr-1.4.1/debian/changelog	2014-07-28 10:11:30.0 +0200
+++ epson-inkjet-printer-escpr-1.4.1/debian/changelog	2014-11-26 13:36:41.0 +0100
@@ -1,3 +1,11 @@
+epson-inkjet-printer-escpr (1.4.1-2) unstable; urgency=medium
+
+  * Backport the 1.4.4 change:
+- Fixed a problem when using Rear Feed Slot as InputSlot
+  (Closes: #755408)
+
+ -- Didier Raboud o...@debian.org  Wed, 26 Nov 2014 13:36:11 +0100
+
 epson-inkjet-printer-escpr (1.4.1-1) unstable; urgency=medium
 
   * New 1.4.1 upstream version
diff -Nru epson-inkjet-printer-escpr-1.4.1/debian/patches/series epson-inkjet-printer-escpr-1.4.1/debian/patches/series
--- epson-inkjet-printer-escpr-1.4.1/debian/patches/series	2014-07-28 10:05:42.0 +0200
+++ epson-inkjet-printer-escpr-1.4.1/debian/patches/series	2014-11-24 22:22:02.0 +0100
@@ -1 +1,4 @@
+# Upstream backports
+u1.4.4-fixed-a-problem-when-using-rear-feed-slot-as-inputslot.patch
+
 dont_touch_debian_files.patch
diff -Nru epson-inkjet-printer-escpr-1.4.1/debian/patches/u1.4.4-fixed-a-problem-when-using-rear-feed-slot-as-inputslot.patch epson-inkjet-printer-escpr-1.4.1/debian/patches/u1.4.4-fixed-a-problem-when-using-rear-feed-slot-as-inputslot.patch
--- epson-inkjet-printer-escpr-1.4.1/debian/patches/u1.4.4-fixed-a-problem-when-using-rear-feed-slot-as-inputslot.patch	1970-01-01 01:00:00.0 +0100
+++ epson-inkjet-printer-escpr-1.4.1/debian/patches/u1.4.4-fixed-a-problem-when-using-rear-feed-slot-as-inputslot.patch	2014-11-24 22:23:16.0 +0100
@@ -0,0 +1,26 @@
+Description: Upstream 1.4.4 change: Fixed a problem when using Rear Feed Slot as InputSlot.
+Origin: upstream
+Bug-Debian: https://bugs.debian.org/755408
+Last-Update: 2014-11-24
+--- a/src/filter.c
 b/src/filter.c
+@@ -925,7 +925,7 @@
+  	
+ 	/* InputSlot */
+ 	inputslot = str_clone (filter_opt_p-inputslot, strlen (filter_opt_p-inputslot));
+- 	if (strcmp (inputslot, Rear) == 0 || strcmp (inputslot, RearPaperFeed) == 0){ 
++ 	if (strcmp (inputslot, RearPaperFeed) == 0){ 
+ 		debug_msg(Rear Tray\n);
+  		jobAttr.paperSource =  EPS_MPID_REAR;
+  	}
+@@ -945,8 +945,8 @@
+ 		debug_msg(Lower Tray\n);
+  		jobAttr.paperSource =  EPS_MPID_FRONT4;
+  	}
+- 	else if(strcmp (inputslot, ManualFeed) == 0){ 
+-		debug_msg(Manual Reed Tray\n);
++ 	else if(strcmp (inputslot, Rear) == 0 || strcmp (inputslot, ManualFeed) == 0){ 
++		debug_msg(Manual Feed Tray\n);
+  		jobAttr.paperSource =  EPS_MPID_REARMANUAL;
+  	}
+  	else if(strcmp (inputslot, DiskTray) == 0){