vendor: pull fixed usb library for nocgo builds
This commit is contained in:
		
							
								
								
									
										1
									
								
								vendor/github.com/karalabe/usb/AUTHORS
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										1
									
								
								vendor/github.com/karalabe/usb/AUTHORS
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -1,6 +1,7 @@
 | 
				
			|||||||
Felix Lange <fjl@twurst.com>
 | 
					Felix Lange <fjl@twurst.com>
 | 
				
			||||||
Guillaume Ballet <gballet@gmail.com>
 | 
					Guillaume Ballet <gballet@gmail.com>
 | 
				
			||||||
Jakob Weisblat <jakobw@yubico.com>
 | 
					Jakob Weisblat <jakobw@yubico.com>
 | 
				
			||||||
 | 
					Martin Holst Swende <martin@swende.se>
 | 
				
			||||||
Mateusz Mikołajczyk <mikolajczyk.mateusz@gmail.com>
 | 
					Mateusz Mikołajczyk <mikolajczyk.mateusz@gmail.com>
 | 
				
			||||||
Péter Szilágyi <peterke@gmail.com>
 | 
					Péter Szilágyi <peterke@gmail.com>
 | 
				
			||||||
Rosen Penev <rosenp@gmail.com>
 | 
					Rosen Penev <rosenp@gmail.com>
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										3
									
								
								vendor/github.com/karalabe/usb/appveyor.yml
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										3
									
								
								vendor/github.com/karalabe/usb/appveyor.yml
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -30,3 +30,6 @@ install:
 | 
				
			|||||||
build_script:
 | 
					build_script:
 | 
				
			||||||
  - go install ./...
 | 
					  - go install ./...
 | 
				
			||||||
  - go test -v ./...
 | 
					  - go test -v ./...
 | 
				
			||||||
 | 
					  - set CGO_ENABLED=0
 | 
				
			||||||
 | 
					  - go install ./...
 | 
				
			||||||
 | 
					  - go test -v ./...
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										1
									
								
								vendor/github.com/karalabe/usb/hidapi/hidapi/hidapi.h
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										1
									
								
								vendor/github.com/karalabe/usb/hidapi/hidapi/hidapi.h
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -388,4 +388,3 @@ extern "C" {
 | 
				
			|||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										2
									
								
								vendor/github.com/karalabe/usb/hidapi/windows/hid.c
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								vendor/github.com/karalabe/usb/hidapi/windows/hid.c
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -428,7 +428,7 @@ struct hid_device_info HID_API_EXPORT * HID_API_CALL hid_enumerate(unsigned shor
 | 
				
			|||||||
			if (str) {
 | 
								if (str) {
 | 
				
			||||||
				len = strlen(str);
 | 
									len = strlen(str);
 | 
				
			||||||
				cur_dev->path = (char*) calloc(len+1, sizeof(char));
 | 
									cur_dev->path = (char*) calloc(len+1, sizeof(char));
 | 
				
			||||||
				strncpy(cur_dev->path, str, len+1);
 | 
									strncpy(cur_dev->path, str, sizeof(cur_dev->path));
 | 
				
			||||||
				cur_dev->path[len] = '\0';
 | 
									cur_dev->path[len] = '\0';
 | 
				
			||||||
			}
 | 
								}
 | 
				
			||||||
			else
 | 
								else
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										8
									
								
								vendor/github.com/karalabe/usb/usb_disabled.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										8
									
								
								vendor/github.com/karalabe/usb/usb_disabled.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -27,20 +27,20 @@ func Supported() bool {
 | 
				
			|||||||
// Enumerate returns a list of all the USB devices attached to the system which
 | 
					// Enumerate returns a list of all the USB devices attached to the system which
 | 
				
			||||||
// match the vendor and product id. On platforms that this file implements the
 | 
					// match the vendor and product id. On platforms that this file implements the
 | 
				
			||||||
// function is a noop and returns an empty list always.
 | 
					// function is a noop and returns an empty list always.
 | 
				
			||||||
func Enumerate(vendorID uint16, productID uint16) []DeviceInfo {
 | 
					func Enumerate(vendorID uint16, productID uint16) ([]DeviceInfo, error) {
 | 
				
			||||||
	return nil
 | 
						return nil, nil
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// EnumerateRaw returns a list of all the USB devices attached to the system which
 | 
					// EnumerateRaw returns a list of all the USB devices attached to the system which
 | 
				
			||||||
// match the vendor and product id. On platforms that this file implements the
 | 
					// match the vendor and product id. On platforms that this file implements the
 | 
				
			||||||
// function is a noop and returns an empty list always.
 | 
					// function is a noop and returns an empty list always.
 | 
				
			||||||
func EnumerateRaw(vendorID uint16, productID uint16) ([]DeviceInfo, error) {
 | 
					func EnumerateRaw(vendorID uint16, productID uint16) ([]DeviceInfo, error) {
 | 
				
			||||||
	return nil
 | 
						return nil, nil
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// EnumerateHid returns a list of all the HID devices attached to the system which
 | 
					// EnumerateHid returns a list of all the HID devices attached to the system which
 | 
				
			||||||
// match the vendor and product id. On platforms that this file implements the
 | 
					// match the vendor and product id. On platforms that this file implements the
 | 
				
			||||||
// function is a noop and returns an empty list always.
 | 
					// function is a noop and returns an empty list always.
 | 
				
			||||||
func EnumerateHid(vendorID uint16, productID uint16) ([]DeviceInfo, error) {
 | 
					func EnumerateHid(vendorID uint16, productID uint16) ([]DeviceInfo, error) {
 | 
				
			||||||
	return nil
 | 
						return nil, nil
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										6
									
								
								vendor/vendor.json
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										6
									
								
								vendor/vendor.json
									
									
									
									
										vendored
									
									
								
							@@ -267,10 +267,10 @@
 | 
				
			|||||||
			"revisionTime": "2017-04-30T22:20:11Z"
 | 
								"revisionTime": "2017-04-30T22:20:11Z"
 | 
				
			||||||
		},
 | 
							},
 | 
				
			||||||
		{
 | 
							{
 | 
				
			||||||
			"checksumSHA1": "3v8Z4/daUVp9PCcFzEGYVkPadG8=",
 | 
								"checksumSHA1": "0ixnoiChdbeva2xNe3z/vYzqcL4=",
 | 
				
			||||||
			"path": "github.com/karalabe/usb",
 | 
								"path": "github.com/karalabe/usb",
 | 
				
			||||||
			"revision": "c012609e094b8a96375fee53cc11f1bcd5cf3aa2",
 | 
								"revision": "0efdeddd92369dc00d4fb1b9cd56a442bdb61f82",
 | 
				
			||||||
			"revisionTime": "2019-06-04T10:57:36Z",
 | 
								"revisionTime": "2019-06-06T09:23:27Z",
 | 
				
			||||||
			"tree": true
 | 
								"tree": true
 | 
				
			||||||
		},
 | 
							},
 | 
				
			||||||
		{
 | 
							{
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user