Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package sane-airscan for openSUSE:Factory checked in at 2025-01-01 23:07:27 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/sane-airscan (Old) and /work/SRC/openSUSE:Factory/.sane-airscan.new.1881 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "sane-airscan" Wed Jan 1 23:07:27 2025 rev:5 rq:1233966 version:0.99.31 Changes: -------- --- /work/SRC/openSUSE:Factory/sane-airscan/sane-airscan.changes 2024-11-22 23:53:32.606443734 +0100 +++ /work/SRC/openSUSE:Factory/.sane-airscan.new.1881/sane-airscan.changes 2025-01-01 23:07:38.851818666 +0100 @@ -1,0 +2,14 @@ +Mon Dec 30 22:28:33 UTC 2024 - rra...@opensuse.org + +- Update to version 0.99.31: + * eSCL: rollback of the previous change (quirk_adf_max_pages) + * eSCL: added quirk_adf_max_pages + * Cosmetic (fixed typo in a commend) + * HTTP timeout for "short" requests extended from 5s to 20s + * The "sane-intent" option cannot be SANE_CAP_INACTIVE + * WSD: workaround for ADF Duplex on Brother MFC-9370CDW + * WSD: cosmetic + * eSCL: delay between subsequent loads made Brother-specific + * Update README.md: updated Gentoo support status + +------------------------------------------------------------------- Old: ---- sane-airscan-0.99.30.tar.zst New: ---- sane-airscan-0.99.31.tar.zst ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ sane-airscan.spec ++++++ --- /var/tmp/diff_new_pack.U9YJvQ/_old 2025-01-01 23:07:39.315837721 +0100 +++ /var/tmp/diff_new_pack.U9YJvQ/_new 2025-01-01 23:07:39.319837886 +0100 @@ -17,7 +17,7 @@ Name: sane-airscan -Version: 0.99.30 +Version: 0.99.31 Release: 0 Summary: Universal driver for Apple AirScan (eSCL) and WSD License: SUSE-GPL-2.0+-with-sane-exception ++++++ _service ++++++ --- /var/tmp/diff_new_pack.U9YJvQ/_old 2025-01-01 23:07:39.351839200 +0100 +++ /var/tmp/diff_new_pack.U9YJvQ/_new 2025-01-01 23:07:39.355839364 +0100 @@ -2,9 +2,9 @@ <service name="tar_scm" mode="manual"> <param name="url">https://github.com/alexpevzner/sane-airscan.git</param> <param name="scm">git</param> - <param name="revision">0.99.30</param> + <param name="revision">0.99.31</param> <param name="versionformat">@PARENT_TAG@</param> - <param name="changesgenerate">disable</param> + <param name="changesgenerate">enable</param> </service> <service name="recompress" mode="manual"> <param name="file">*.tar</param> ++++++ sane-airscan-0.99.30.tar.zst -> sane-airscan-0.99.31.tar.zst ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sane-airscan-0.99.30/README.md new/sane-airscan-0.99.31/README.md --- old/sane-airscan-0.99.30/README.md 2024-11-19 09:47:27.000000000 +0100 +++ new/sane-airscan-0.99.31/README.md 2024-12-26 12:49:06.000000000 +0100 @@ -299,6 +299,7 @@ * Arch Linux (in extra repository) * Debian 10+ * Fedora 32+ +* Gentoo (emerge media-gfx/sane-airscan) * NixOS * Ubuntu 20.10+ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sane-airscan-0.99.30/airscan-device.c new/sane-airscan-0.99.31/airscan-device.c --- old/sane-airscan-0.99.30/airscan-device.c 2024-11-19 09:47:27.000000000 +0100 +++ new/sane-airscan-0.99.31/airscan-device.c 2024-12-26 12:49:06.000000000 +0100 @@ -15,11 +15,11 @@ /******************** Constants ********************/ /* HTTP timeouts, by operation, in milliseconds */ -#define DEVICE_HTTP_TIMEOUT_DEVCAPS 5000 -#define DEVICE_HTTP_TIMEOUT_PRECHECK 5000 +#define DEVICE_HTTP_TIMEOUT_DEVCAPS 20000 +#define DEVICE_HTTP_TIMEOUT_PRECHECK 20000 #define DEVICE_HTTP_TIMEOUT_SCAN 30000 #define DEVICE_HTTP_TIMEOUT_LOAD -1 -#define DEVICE_HTTP_TIMEOUT_CHECK 5000 +#define DEVICE_HTTP_TIMEOUT_CHECK 20000 #define DEVICE_HTTP_TIMEOUT_CLEANUP 30000 #define DEVICE_HTTP_TIMEOUT_CANCEL 30000 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sane-airscan-0.99.30/airscan-escl.c new/sane-airscan-0.99.31/airscan-escl.c --- old/sane-airscan-0.99.30/airscan-escl.c 2024-11-19 09:47:27.000000000 +0100 +++ new/sane-airscan-0.99.31/airscan-escl.c 2024-12-26 12:49:06.000000000 +0100 @@ -718,7 +718,7 @@ } /* Note, the pre-check status is not always reliable, so normally - * we ignore it. Hoverer, with Canon MF410 Series attempt to + * we ignore it. However, with Canon MF410 Series attempt to * scan from empty ADF causes ADF jam error (really, physical!), * so we must take care */