Skip to content

Commit 523ba9b

Browse files
author
Matthias Wauer
committed
Fix mixed case imports
- see sirupsen/logrus#570 (comment)
1 parent 06ecbd6 commit 523ba9b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+67
-67
lines changed

.rat-excludes

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ mattn
3939
mitchellh
4040

4141
# logrus - MIT license.
42-
Sirupsen
42+
sirupsen
4343

4444
# Cast - MIT license.
4545
cast

Gopkg.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Gopkg.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323

2424
[[constraint]]
25-
name = "github.com/Sirupsen/logrus"
25+
name = "github.com/sirupsen/logrus"
2626
version = "1.0.3"
2727

2828
[[constraint]]

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ For details, see:
214214

215215
This product bundles logrus, which is available under the MIT license. For
216216
details, see:
217-
* vendor/github.com/Sirupsen/logrus/LICENSE
217+
* vendor/github.com/sirupsen/logrus/LICENSE
218218

219219
This product bundles Cast, which is available under the MIT license. For
220220
details, see:

newtmgr/bll/bll_common.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import (
2525
"runtime"
2626
"time"
2727

28-
log "github.com/Sirupsen/logrus"
28+
log "github.com/sirupsen/logrus"
2929
"github.com/go-ble/ble"
3030

3131
"mynewt.apache.org/newtmgr/nmxact/bledefs"

newtmgr/bll/bll_sesn.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import (
2525
"fmt"
2626
"sync"
2727

28-
log "github.com/Sirupsen/logrus"
28+
log "github.com/sirupsen/logrus"
2929
"github.com/go-ble/ble"
3030
"github.com/runtimeco/go-coap"
3131
"golang.org/x/net/context"

newtmgr/cli/commands.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ package cli
2222
import (
2323
"fmt"
2424

25-
log "github.com/Sirupsen/logrus"
25+
log "github.com/sirupsen/logrus"
2626
"github.com/spf13/cobra"
2727

2828
"mynewt.apache.org/newt/util"

newtmgr/cli/common.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ package cli
2222
import (
2323
"fmt"
2424

25-
log "github.com/Sirupsen/logrus"
25+
log "github.com/sirupsen/logrus"
2626

2727
"mynewt.apache.org/newt/util"
2828
"mynewt.apache.org/newtmgr/newtmgr/bll"

newtmgr/cli/usage.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424
"os"
2525
"sync/atomic"
2626

27-
log "github.com/Sirupsen/logrus"
27+
log "github.com/sirupsen/logrus"
2828
"github.com/spf13/cobra"
2929

3030
"mynewt.apache.org/newt/util"

newtmgr/config/connprofile.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
package config
2121

2222
import (
23-
log "github.com/Sirupsen/logrus"
23+
log "github.com/sirupsen/logrus"
2424
"github.com/mitchellh/go-homedir"
2525

2626
"encoding/json"

nmxact/example/ble_adv/ble_adv.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import (
2525
"os/signal"
2626
"syscall"
2727

28-
log "github.com/Sirupsen/logrus"
28+
log "github.com/sirupsen/logrus"
2929

3030
"mynewt.apache.org/newt/util"
3131
"mynewt.apache.org/newtmgr/nmxact/nmble"

nmxact/example/ble_loop/ble_loop.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import (
2626
"syscall"
2727
"time"
2828

29-
log "github.com/Sirupsen/logrus"
29+
log "github.com/sirupsen/logrus"
3030

3131
"mynewt.apache.org/newt/util"
3232
"mynewt.apache.org/newtmgr/nmxact/bledefs"

nmxact/mgmt/transceiver.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import (
2525
"sync"
2626
"time"
2727

28-
log "github.com/Sirupsen/logrus"
28+
log "github.com/sirupsen/logrus"
2929
"github.com/runtimeco/go-coap"
3030

3131
"mynewt.apache.org/newtmgr/nmxact/nmcoap"

nmxact/mtech_lora/mtech_lora_sesn.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import (
2727
"sync"
2828
"time"
2929

30-
log "github.com/Sirupsen/logrus"
30+
log "github.com/sirupsen/logrus"
3131
"github.com/joaojeronimo/go-crc16"
3232
"github.com/runtimeco/go-coap"
3333
"github.com/ugorji/go/codec"

nmxact/mtech_lora/mtech_lora_xport.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import (
2929
"strings"
3030
"sync"
3131

32-
log "github.com/Sirupsen/logrus"
32+
log "github.com/sirupsen/logrus"
3333
"github.com/runtimeco/go-coap"
3434
"github.com/ugorji/go/codec"
3535

nmxact/nmble/ble_act.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424
"fmt"
2525
"time"
2626

27-
log "github.com/Sirupsen/logrus"
27+
log "github.com/sirupsen/logrus"
2828

2929
. "mynewt.apache.org/newtmgr/nmxact/bledefs"
3030
"mynewt.apache.org/newtmgr/nmxact/nmxutil"

nmxact/nmble/ble_advertiser.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ package nmble
2222
import (
2323
"fmt"
2424

25-
log "github.com/Sirupsen/logrus"
25+
log "github.com/sirupsen/logrus"
2626

2727
. "mynewt.apache.org/newtmgr/nmxact/bledefs"
2828
"mynewt.apache.org/newtmgr/nmxact/nmxutil"

nmxact/nmble/ble_util.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424
"sync"
2525
"time"
2626

27-
log "github.com/Sirupsen/logrus"
27+
log "github.com/sirupsen/logrus"
2828

2929
. "mynewt.apache.org/newtmgr/nmxact/bledefs"
3030
"mynewt.apache.org/newtmgr/nmxact/nmxutil"

nmxact/nmble/ble_xport.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import (
2525
"sync"
2626
"time"
2727

28-
log "github.com/Sirupsen/logrus"
28+
log "github.com/sirupsen/logrus"
2929

3030
"mynewt.apache.org/newt/util/unixchild"
3131
. "mynewt.apache.org/newtmgr/nmxact/bledefs"

nmxact/nmble/conn.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424
"sync"
2525
"time"
2626

27-
log "github.com/Sirupsen/logrus"
27+
log "github.com/sirupsen/logrus"
2828

2929
. "mynewt.apache.org/newtmgr/nmxact/bledefs"
3030
"mynewt.apache.org/newtmgr/nmxact/nmxutil"

nmxact/nmble/discover.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import (
2323
"sync"
2424
"time"
2525

26-
log "github.com/Sirupsen/logrus"
26+
log "github.com/sirupsen/logrus"
2727

2828
. "mynewt.apache.org/newtmgr/nmxact/bledefs"
2929
"mynewt.apache.org/newtmgr/nmxact/nmxutil"

nmxact/nmble/dispatch.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import (
2626

2727
"mynewt.apache.org/newtmgr/nmxact/nmxutil"
2828

29-
log "github.com/Sirupsen/logrus"
29+
log "github.com/sirupsen/logrus"
3030
)
3131

3232
type MsgBase struct {

nmxact/nmble/master.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import (
2323
"fmt"
2424
"sync"
2525

26-
log "github.com/Sirupsen/logrus"
26+
log "github.com/sirupsen/logrus"
2727

2828
"mynewt.apache.org/newtmgr/nmxact/nmxutil"
2929
)

nmxact/nmble/naked_sesn.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import (
2323
"fmt"
2424
"sync"
2525

26-
log "github.com/Sirupsen/logrus"
26+
log "github.com/sirupsen/logrus"
2727
"github.com/runtimeco/go-coap"
2828

2929
"mynewt.apache.org/newt/util"

nmxact/nmcoap/dispatch.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424
"sync"
2525
"time"
2626

27-
log "github.com/Sirupsen/logrus"
27+
log "github.com/sirupsen/logrus"
2828
"github.com/runtimeco/go-coap"
2929

3030
"mynewt.apache.org/newtmgr/nmxact/nmxutil"

nmxact/nmcoap/frag.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
package nmcoap
2121

2222
import (
23-
log "github.com/Sirupsen/logrus"
23+
log "github.com/sirupsen/logrus"
2424
"github.com/runtimeco/go-coap"
2525
)
2626

nmxact/nmcoap/receiver.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
package nmcoap
2121

2222
import (
23-
log "github.com/Sirupsen/logrus"
23+
log "github.com/sirupsen/logrus"
2424
"github.com/runtimeco/go-coap"
2525
)
2626

nmxact/nmp/dispatch.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import (
2525
"sync"
2626
"time"
2727

28-
log "github.com/Sirupsen/logrus"
28+
log "github.com/sirupsen/logrus"
2929

3030
"mynewt.apache.org/newtmgr/nmxact/nmxutil"
3131
)

nmxact/nmp/frag.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
package nmp
2121

2222
import (
23-
log "github.com/Sirupsen/logrus"
23+
log "github.com/sirupsen/logrus"
2424
)
2525

2626
type Reassembler struct {

nmxact/nmp/nmp.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424
"encoding/hex"
2525
"fmt"
2626

27-
log "github.com/Sirupsen/logrus"
27+
log "github.com/sirupsen/logrus"
2828
"github.com/ugorji/go/codec"
2929

3030
"mynewt.apache.org/newtmgr/nmxact/nmxutil"

nmxact/nmserial/serial_xport.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import (
2929
"sync"
3030
"time"
3131

32-
log "github.com/Sirupsen/logrus"
32+
log "github.com/sirupsen/logrus"
3333
"github.com/joaojeronimo/go-crc16"
3434
"github.com/runtimeco/go-coap"
3535
"github.com/tarm/serial"

nmxact/nmxact

1 Byte
Binary file not shown.

nmxact/nmxutil/nmxutil.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ import (
3030
"sync/atomic"
3131
"time"
3232

33-
log "github.com/Sirupsen/logrus"
33+
log "github.com/sirupsen/logrus"
3434
"github.com/ugorji/go/codec"
3535

3636
"mynewt.apache.org/newt/util"

nmxact/omp/dispatch.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import (
2323
"sync"
2424
"sync/atomic"
2525

26-
log "github.com/Sirupsen/logrus"
26+
log "github.com/sirupsen/logrus"
2727
"github.com/runtimeco/go-coap"
2828

2929
"mynewt.apache.org/newtmgr/nmxact/nmcoap"

nmxact/omp/omp.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import (
2323
"encoding/hex"
2424
"fmt"
2525

26-
log "github.com/Sirupsen/logrus"
26+
log "github.com/sirupsen/logrus"
2727
"github.com/fatih/structs"
2828
"github.com/runtimeco/go-coap"
2929
"github.com/ugorji/go/codec"

nmxact/udp/udp.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import (
2323
"fmt"
2424
"net"
2525

26-
log "github.com/Sirupsen/logrus"
26+
log "github.com/sirupsen/logrus"
2727
)
2828

2929
const MAX_PACKET_SIZE = 2048

vendor/github.com/mgutz/logxi/Gododir/main.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/mgutz/logxi/v1/bench/bench_test.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/mynewt.apache.org/newt/.rat-excludes

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/mynewt.apache.org/newt/Gopkg.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/mynewt.apache.org/newt/Gopkg.toml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/mynewt.apache.org/newt/LICENSE

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/mynewt.apache.org/newt/newt/builder/build.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/mynewt.apache.org/newt/newt/builder/buildutil.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/mynewt.apache.org/newt/newt/builder/cmake.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)