hplip: bump to 3.20.9

Signed-off-by: Luiz Angelo Daros de Luca <luizluca@gmail.com>
This commit is contained in:
Luiz Angelo Daros de Luca 2020-11-22 02:27:41 -03:00
parent c40d882587
commit baf4b136fa
2 changed files with 31 additions and 19 deletions

View File

@ -9,12 +9,12 @@
include $(TOPDIR)/rules.mk include $(TOPDIR)/rules.mk
PKG_NAME:=hplip PKG_NAME:=hplip
PKG_VERSION:=3.19.12 PKG_VERSION:=3.20.9
PKG_RELEASE:=2 PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=@SF/hplip PKG_SOURCE_URL:=@SF/hplip
PKG_HASH:=b7f398502fb659e0de8e54976237e3c6a64fec0b3c36054a515876f7b006b255 PKG_HASH:=36251189aa9cc349f6a3eacbb7ac3c4fd26fc9f087c9f75cee051010c85d2ddf
PKG_MAINTAINER:=Luiz Angelo Daros de Luca <luizluca@gmail.com> PKG_MAINTAINER:=Luiz Angelo Daros de Luca <luizluca@gmail.com>
PKG_LICENSE:=GPL-2.0 GPL-2.0-or-later PKG_LICENSE:=GPL-2.0 GPL-2.0-or-later

View File

@ -1,5 +1,7 @@
--- a/Makefile.am Index: hplip-3.20.9/Makefile.am
+++ b/Makefile.am ===================================================================
--- hplip-3.20.9.orig/Makefile.am
+++ hplip-3.20.9/Makefile.am
@@ -71,7 +71,7 @@ else @@ -71,7 +71,7 @@ else
libsane_hpaio_la_LDFLAGS = -version-info 1:0:0 libsane_hpaio_la_LDFLAGS = -version-info 1:0:0
endif endif
@ -9,17 +11,21 @@
#libsane_hpaio_la_CFLAGS = -DWITH_NONAMESPACES -DSOAP_DEBUG #libsane_hpaio_la_CFLAGS = -DWITH_NONAMESPACES -DSOAP_DEBUG
libsane_hpaio_la_CFLAGS = $(DBUS_CFLAGS) -Iprotocol libsane_hpaio_la_CFLAGS = $(DBUS_CFLAGS) -Iprotocol
--- a/scan/sane/hpaio.c Index: hplip-3.20.9/scan/sane/hpaio.c
+++ b/scan/sane/hpaio.c ===================================================================
@@ -34,7 +34,6 @@ --- hplip-3.20.9.orig/scan/sane/hpaio.c
+++ hplip-3.20.9/scan/sane/hpaio.c
@@ -34,9 +34,7 @@
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
-#include <cups/cups.h> -#include <cups/cups.h>
#include "hpmud.h" #include "hpmud.h"
-#include "avahiDiscovery.h"
#include "hp_ipp.h" #include "hp_ipp.h"
#include "soap.h" #include "soap.h"
@@ -145,98 +144,6 @@ static int GetUriLine(char *buf, char *u #include "soapht.h"
@@ -146,98 +144,6 @@ static int GetUriLine(char *buf, char *u
return i; return i;
} }
@ -118,7 +124,7 @@
static int AddDevice(char *uri) static int AddDevice(char *uri)
{ {
struct hpmud_model_attributes ma; struct hpmud_model_attributes ma;
@@ -289,7 +196,6 @@ static int DevDiscovery(int localOnly) @@ -290,7 +196,6 @@ static int DevDiscovery(int localOnly)
char uri[HPMUD_LINE_SIZE]; char uri[HPMUD_LINE_SIZE];
char *tail = message; char *tail = message;
int i, scan_type, cnt=0, total=0, bytes_read; int i, scan_type, cnt=0, total=0, bytes_read;
@ -126,10 +132,10 @@
char* token = NULL; char* token = NULL;
enum HPMUD_RESULT stat; enum HPMUD_RESULT stat;
@@ -304,33 +210,6 @@ static int DevDiscovery(int localOnly) @@ -305,39 +210,6 @@ static int DevDiscovery(int localOnly)
total += AddDevice(uri); total += AddDevice(uri);
} }
memset(message, 0, sizeof(message)); //memset(message, 0, sizeof(message));
- /* Look for Network Scan devices if localonly flag if FALSE. */ - /* Look for Network Scan devices if localonly flag if FALSE. */
- if (!localOnly) - if (!localOnly)
- { - {
@ -144,12 +150,17 @@
- free(cups_printer); - free(cups_printer);
-#ifdef HAVE_LIBNETSNMP -#ifdef HAVE_LIBNETSNMP
- /* Discover NW scanners using Bonjour*/ - /* Discover NW scanners using Bonjour*/
- bytes_read = mdns_probe_nw_scanners(message, sizeof(message), &cnt); - //bytes_read = avahi_probe_nw_scanners();
- token = strtok(message, ";"); - if( (avahi_probe_nw_scanners() == AVAHI_STATUS_OK) && (aUriBuf != NULL) )
- while (token) - {
- { - token = strtok(aUriBuf, ";");
- total += AddDevice(token); - while (token)
- token = strtok(NULL, ";"); - {
- total += AddDevice(token);
- token = strtok(NULL, ";");
- }
- free(aUriBuf);
- aUriBuf = NULL;
- } - }
-#endif -#endif
- if(!total) - if(!total)
@ -157,6 +168,7 @@
- SendScanEvent("hpaio:/net/HP_Scan_Devices?ip=1.1.1.1", EVENT_ERROR_NO_PROBED_DEVICES_FOUND); - SendScanEvent("hpaio:/net/HP_Scan_Devices?ip=1.1.1.1", EVENT_ERROR_NO_PROBED_DEVICES_FOUND);
- } - }
- } - }
-
bugout: bugout:
return total; return total;
}