From e33e0fef82a587677d373e56b6039b705d21d272 Mon Sep 17 00:00:00 2001 From: Sebastian Zagrodzki Date: Fri, 5 May 2017 23:41:11 +0200 Subject: [PATCH] s/kylelemons/google/ in the new repo. --- README.md | 26 +++++++++++++------------- lsusb/main.go | 4 ++-- rawread/main.go | 2 +- usbid/describe.go | 2 +- usbid/load.go | 2 +- usbid/parse.go | 2 +- usbid/regen/regen.go | 2 +- usbid/testdata_test.go | 2 +- 8 files changed, 21 insertions(+), 21 deletions(-) diff --git a/README.md b/README.md index 4d76083..43f1494 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ Introduction [![Build Status][ciimg]][ci] [![GoDoc][docimg]][doc] -[![Coverage Status](https://coveralls.io/repos/github/kylelemons/gousb/badge.svg?branch=gousb2.0)](https://coveralls.io/github/kylelemons/gousb?branch=gousb2.0-dev) +[![Coverage Status][coverimg]][cover] The gousb package is an attempt at wrapping the libusb library into a Go-like binding. @@ -13,18 +13,18 @@ Supported platforms include: - darwin - windows -[ciimg]: https://travis-ci.org/kylelemons/gousb.svg?branch=gousb2.0-dev -[ci]: https://travis-ci.org/kylelemons/gousb?branch=gousb2.0-dev -[docimg]: https://godoc.org/github.com/kylelemons/gousb?status.svg -[doc]: https://godoc.org/github.com/kylelemons/gousb +[coverimg]: https://coveralls.io/repos/github/google/gousb/badge.svg +[cover]: https://coveralls.io/github/google/gousb +[ciimg]: https://travis-ci.org/google/gousb.svg +[ci]: https://travis-ci.org/google/gousb +[docimg]: https://godoc.org/github.com/google/gousb?status.svg +[doc]: https://godoc.org/github.com/google/gousb Contributing ============ -Because I am a Google employee, contributing to this project will require signing the [Google CLA][cla]. +Contributing to this project will require signing the [Google CLA][cla]. This is the same agreement that is required for contributing to Go itself, so if you have already filled it out for that, you needn't fill it out again. -You will need to send me the email address that you used to sign the agreement -so that I can verify that it is on file before I can accept pull requests. [cla]: https://cla.developers.google.com/ @@ -41,7 +41,7 @@ Example: lsusb -------------- The gousb project provides a simple but useful example: lsusb. This binary will list the USB devices connected to your system and various interesting tidbits about them, their configurations, endpoints, etc. To install it, run the following command: - go get -v github.com/kylelemons/gousb/lsusb + go get -v github.com/google/gousb/lsusb gousb ----- @@ -49,11 +49,11 @@ If you installed the lsusb example, both libraries below are already installed. Installing the primary gousb package is really easy: - go get -v github.com/kylelemons/gousb/usb + go get -v github.com/google/gousb/usb There is also a `usbid` package that will not be installed by default by this command, but which provides useful information including the human-readable vendor and product codes for detected hardware. It's not installed by default and not linked into the `usb` package by default because it adds ~400kb to the resulting binary. If you want both, they can be installed thus: - go get -v github.com/kylelemons/gousb/usb{,id} + go get -v github.com/google/gousb/usb{,id} Notes for installation on Windows --------------------------------- @@ -74,5 +74,5 @@ Documentation ============= The documentation can be viewed via local godoc or via the excellent [godoc.org](http://godoc.org/): -- [usb](http://godoc.org/github.com/kylelemons/gousb/usb) -- [usbid](http://godoc.org/pkg/github.com/kylelemons/gousb/usbid) +- [usb](http://godoc.org/github.com/google/gousb/usb) +- [usbid](http://godoc.org/pkg/github.com/google/gousb/usbid) diff --git a/lsusb/main.go b/lsusb/main.go index 5fbe81d..06e9e92 100644 --- a/lsusb/main.go +++ b/lsusb/main.go @@ -21,8 +21,8 @@ import ( "fmt" "log" - "github.com/kylelemons/gousb/usb" - "github.com/kylelemons/gousb/usbid" + "github.com/google/gousb/usb" + "github.com/google/gousb/usbid" ) var ( diff --git a/rawread/main.go b/rawread/main.go index ea29a43..6a9cd22 100644 --- a/rawread/main.go +++ b/rawread/main.go @@ -25,7 +25,7 @@ import ( "strconv" "strings" - "github.com/kylelemons/gousb/usb" + "github.com/google/gousb/usb" ) var ( diff --git a/usbid/describe.go b/usbid/describe.go index a7467df..644d7a4 100644 --- a/usbid/describe.go +++ b/usbid/describe.go @@ -27,7 +27,7 @@ package usbid import ( "fmt" - "github.com/kylelemons/gousb/usb" + "github.com/google/gousb/usb" ) // Describe returns a human readable string describing the vendor and product diff --git a/usbid/load.go b/usbid/load.go index f099d86..7cf4707 100644 --- a/usbid/load.go +++ b/usbid/load.go @@ -21,7 +21,7 @@ import ( "strings" "time" - "github.com/kylelemons/gousb/usb" + "github.com/google/gousb/usb" ) const ( diff --git a/usbid/parse.go b/usbid/parse.go index 4550b72..4e17030 100644 --- a/usbid/parse.go +++ b/usbid/parse.go @@ -22,7 +22,7 @@ import ( "strconv" "strings" - "github.com/kylelemons/gousb/usb" + "github.com/google/gousb/usb" ) // A Vendor contains the name of the vendor and mappings corresponding to all diff --git a/usbid/regen/regen.go b/usbid/regen/regen.go index 7825936..826868a 100644 --- a/usbid/regen/regen.go +++ b/usbid/regen/regen.go @@ -25,7 +25,7 @@ import ( "text/template" "time" - "github.com/kylelemons/gousb/usbid" + "github.com/google/gousb/usbid" ) var ( diff --git a/usbid/testdata_test.go b/usbid/testdata_test.go index a401a7a..80129e6 100644 --- a/usbid/testdata_test.go +++ b/usbid/testdata_test.go @@ -14,7 +14,7 @@ package usbid -import "github.com/kylelemons/gousb/usb" +import "github.com/google/gousb/usb" const testDBPath = "testdata/testdb.txt"