[arch-commits] Commit in sane/trunk (1.0.23-hp2400c.patch PKGBUILD kodakaio.c.patch)

Tobias Powalowski tpowa at nymeria.archlinux.org
Sat Oct 5 19:26:19 UTC 2013


    Date: Saturday, October 5, 2013 @ 21:26:19
  Author: tpowa
Revision: 195928

upgpkg: sane 1.0.24-1

bump to latest version

Modified:
  sane/trunk/PKGBUILD
Deleted:
  sane/trunk/1.0.23-hp2400c.patch
  sane/trunk/kodakaio.c.patch

----------------------+
 1.0.23-hp2400c.patch |   81 -------------------------------------------------
 PKGBUILD             |   18 +++-------
 kodakaio.c.patch     |   11 ------
 3 files changed, 5 insertions(+), 105 deletions(-)

Deleted: 1.0.23-hp2400c.patch
===================================================================
--- 1.0.23-hp2400c.patch	2013-10-05 17:40:59 UTC (rev 195927)
+++ 1.0.23-hp2400c.patch	2013-10-05 19:26:19 UTC (rev 195928)
@@ -1,81 +0,0 @@
-From 9a8b640d8da2190ff1695169bfa45ce633b5e8c2 Mon Sep 17 00:00:00 2001
-From: =?utf8?q?St=C3=A9phane=20Voltz?= <stef.dev at free.fr>
-Date: Mon, 3 Jun 2013 06:33:08 +0200
-Subject: [PATCH] bug 314293 fix
-
-- don't use non-existent end of records
----
- ChangeLog               |    3 +++
- backend/genesys_gl646.c |   14 +++++++-------
- 2 files changed, 10 insertions(+), 7 deletions(-)
-
-diff --git a/backend/genesys_gl646.c b/backend/genesys_gl646.c
-index c6a5af5..2d5cddc 100644
---- a/backend/genesys_gl646.c
-+++ b/backend/genesys_gl646.c
-@@ -550,7 +550,7 @@ get_lowest_resolution (int sensor, SANE_Bool color)
-   i = 0;
-   dpi = 9600;
-   nb = sizeof (sensor_master) / sizeof (Sensor_Master);
--  while (sensor_master[i].sensor != -1 && i < nb)
-+  while (i < nb)
-     {
-       /* computes distance and keep mode if it is closer than previous */
-       if (sensor == sensor_master[i].sensor
-@@ -584,7 +584,7 @@ get_closest_resolution (int sensor, int required, SANE_Bool color)
-   dpi = 0;
-   dist = 9600;
-   nb = sizeof (sensor_master) / sizeof (Sensor_Master);
--  while (sensor_master[i].sensor != -1 && i < nb)
-+  while (i < nb)
-     {
-       /* exit on perfect match */
-       if (sensor == sensor_master[i].sensor
-@@ -627,7 +627,7 @@ is_half_ccd (int sensor, int required, SANE_Bool color)
- 
-   i = 0;
-   nb = sizeof (sensor_master) / sizeof (Sensor_Master);
--  while (sensor_master[i].sensor != -1 && i < nb)
-+  while (i < nb)
-     {
-       /* exit on perfect match */
-       if (sensor == sensor_master[i].sensor
-@@ -658,7 +658,7 @@ get_cksel (int sensor, int required, SANE_Bool color)
- 
-   i = 0;
-   nb = sizeof (sensor_master) / sizeof (Sensor_Master);
--  while (sensor_master[i].sensor != -1 && i < nb)
-+  while (i < nb)
-     {
-       /* exit on perfect match */
-       if (sensor == sensor_master[i].sensor
-@@ -746,7 +746,7 @@ gl646_setup_registers (Genesys_Device * dev,
-    * sensor mode setting */
-   i = 0;
-   nb = sizeof (sensor_master) / sizeof (Sensor_Master);
--  while (sensor_master[i].sensor != -1 && i < nb)
-+  while (i < nb)
-     {
-       if (dev->model->ccd_type == sensor_master[i].sensor
- 	  && sensor_master[i].dpi == xresolution
-@@ -768,7 +768,7 @@ gl646_setup_registers (Genesys_Device * dev,
-    * motor mode setting */
-   i = 0;
-   nb = sizeof (motor_master) / sizeof (Motor_Master);
--  while (motor_master[i].motor != -1 && i < nb)
-+  while (i < nb)
-     {
-       if (dev->model->motor_type == motor_master[i].motor
- 	  && motor_master[i].dpi == resolution
-@@ -789,7 +789,7 @@ gl646_setup_registers (Genesys_Device * dev,
-   /* now we can search for the specific sensor settings */
-   i = 0;
-   nb = sizeof (sensor_settings) / sizeof (Sensor_Settings);
--  while (sensor_settings[i].sensor != -1 && i < nb)
-+  while (i < nb)
-     {
-       if (sensor->sensor == sensor_settings[i].sensor
- 	  && sensor->cksel == sensor_settings[i].cksel)
--- 
-1.7.2.5
-

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2013-10-05 17:40:59 UTC (rev 195927)
+++ PKGBUILD	2013-10-05 19:26:19 UTC (rev 195928)
@@ -5,8 +5,8 @@
 # Contributor: eric <eric at archlinux.org>
 
 pkgname=sane
-pkgver=1.0.23
-pkgrel=7
+pkgver=1.0.24
+pkgrel=1
 pkgdesc="Scanner Access Now Easy"
 url="http://www.sane-project.org/"
 arch=('i686' 'x86_64')
@@ -18,17 +18,11 @@
         'sane.xinetd'
         'saned.socket'
         'saned.service'
-        'kodakaio.c.patch'
-        'network.patch'
-        '1.0.23-hp2400c.patch')
+        'network.patch')
 options=(!libtool)
 
 prepare() {
   cd "${srcdir}/${pkgname}-backends-${pkgver}"
-   # fix FS#35549
-   patch -Np1 -i ${srcdir}/1.0.23-hp2400c.patch
-   # fix FS#33657
-   patch -Np0 -i ${srcdir}/kodakaio.c.patch
    # fix http://vasks.debian.org/tracker/?func=detail&atid=410366&aid=313760&group_id=30186
    patch -Np1 -i ${srcdir}/network.patch
 }
@@ -71,10 +65,8 @@
   install -D -m644 ${srcdir}/saned.service \
       "${pkgdir}/usr/lib/systemd/system/saned at .service"
 }
-md5sums=('e226a89c54173efea80e91e9a5eb6573'
+md5sums=('1ca68e536cd7c1852322822f5f6ac3a4'
          'bc2c8b4f7b3012c8936c7da21f60e2ac'
          'e57e9e15528f47f5f1b3f1411135ed5d'
          '3f9fe36b0c4ff0b01b53b1cffa5d9700'
-         'e65dbefb7c3d69955fb6eb3ace14aa12'
-         '44e77692c52db15b0f530a1d9a8e1296'
-         '0c8bfabcaa499c4a2583aa2fe53d1686')
+         '44e77692c52db15b0f530a1d9a8e1296')

Deleted: kodakaio.c.patch
===================================================================
--- kodakaio.c.patch	2013-10-05 17:40:59 UTC (rev 195927)
+++ kodakaio.c.patch	2013-10-05 19:26:19 UTC (rev 195928)
@@ -1,11 +0,0 @@
---- backend/kodakaio.c.bad	2013-01-31 20:42:10.627296894 +0100
-+++ backend/kodakaio.c	2013-01-31 20:42:46.040397213 +0100
-@@ -2197,7 +2197,7 @@
- 
- 	reply = cupsGetDevices(CUPS_HTTP_DEFAULT, CUPS_TIMEOUT_DEFAULT, 
- 		"dnssd", CUPS_EXCLUDE_NONE, ProcessDevice, Dummy);
--	if(reply != IPP_OK) printf("Failed cupsGetDevices\n");
-+	if(reply != IPP_OK) DBG(1, "Failed cupsGetDevices\n");
- 
- 	return 0;
- }




More information about the arch-commits mailing list