Skip to content

Commit

Permalink
Merge pull request sirupsen#932 from tandr/drop-crypto-2
Browse files Browse the repository at this point in the history
Drop x/crypto package dependency
  • Loading branch information
dgsb committed Mar 28, 2019
2 parents e578647 + 3ffa802 commit b959081
Show file tree
Hide file tree
Showing 7 changed files with 28 additions and 20 deletions.
6 changes: 0 additions & 6 deletions .travis.yml
Expand Up @@ -7,7 +7,6 @@ matrix:
- go: 1.10.x
install:
- go get github.com/stretchr/testify/assert
- go get golang.org/x/crypto/ssh/terminal
- go get golang.org/x/sys/unix
- go get golang.org/x/sys/windows
script:
Expand All @@ -22,7 +21,6 @@ matrix:
env: GO111MODULE=off
install:
- go get github.com/stretchr/testify/assert
- go get golang.org/x/crypto/ssh/terminal
- go get golang.org/x/sys/unix
- go get golang.org/x/sys/windows
script:
Expand All @@ -37,15 +35,13 @@ matrix:
env: GO111MODULE=off
install:
- go get github.com/stretchr/testify/assert
- go get golang.org/x/crypto/ssh/terminal
- go get golang.org/x/sys/unix
- go get golang.org/x/sys/windows
script:
- go test -race -v ./...
- go: 1.10.x
install:
- go get github.com/stretchr/testify/assert
- go get golang.org/x/crypto/ssh/terminal
- go get golang.org/x/sys/unix
- go get golang.org/x/sys/windows
script:
Expand All @@ -60,7 +56,6 @@ matrix:
env: GO111MODULE=off
install:
- go get github.com/stretchr/testify/assert
- go get golang.org/x/crypto/ssh/terminal
- go get golang.org/x/sys/unix
- go get golang.org/x/sys/windows
script:
Expand All @@ -75,7 +70,6 @@ matrix:
env: GO111MODULE=off
install:
- go get github.com/stretchr/testify/assert
- go get golang.org/x/crypto/ssh/terminal
- go get golang.org/x/sys/unix
- go get golang.org/x/sys/windows
script:
Expand Down
1 change: 0 additions & 1 deletion go.mod
Expand Up @@ -6,6 +6,5 @@ require (
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/stretchr/objx v0.1.1 // indirect
github.com/stretchr/testify v1.2.2
golang.org/x/crypto v0.0.0-20180904163835-0709b304e793
golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33
)
2 changes: 0 additions & 2 deletions go.sum
Expand Up @@ -9,7 +9,5 @@ github.com/stretchr/objx v0.1.1 h1:2vfRuCMp5sSVIDSqO8oNnWJq7mPa6KVP3iPIwFBuy8A=
github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
github.com/stretchr/testify v1.2.2 h1:bSDNvY7ZPG5RlJ8otE/7V6gMiyenm9RtJ7IUVIAoJ1w=
github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=
golang.org/x/crypto v0.0.0-20180904163835-0709b304e793 h1:u+LnwYTOOW7Ukr/fppxEb1Nwz0AtPflrblfvUudpo+I=
golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4=
golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33 h1:I6FyU15t786LL7oL/hn43zqTuEGr4PN7F4XJ1p4E3Y8=
golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
13 changes: 13 additions & 0 deletions internal/terminal/terminal_check_bsd.go
@@ -0,0 +1,13 @@
// +build darwin dragonfly freebsd netbsd openbsd

package terminal

import "golang.org/x/sys/unix"

const ioctlReadTermios = unix.TIOCGETA

func IsTerminal(fd int) bool {
_, err := unix.IoctlGetTermios(fd, ioctlReadTermios)
return err == nil
}

13 changes: 13 additions & 0 deletions internal/terminal/terminal_check_unix.go
@@ -0,0 +1,13 @@
// +build linux aix

package terminal

import "golang.org/x/sys/unix"

const ioctlReadTermios = unix.TCGETS

func IsTerminal(fd int) bool {
_, err := unix.IoctlGetTermios(fd, ioctlReadTermios)
return err == nil
}

9 changes: 0 additions & 9 deletions terminal_check_aix.go

This file was deleted.

4 changes: 2 additions & 2 deletions terminal_check_notappengine.go
@@ -1,12 +1,12 @@
// +build !appengine,!js,!windows,!aix
// +build !appengine,!js,!windows

package logrus

import (
"io"
"os"

"golang.org/x/crypto/ssh/terminal"
"github.com/sirupsen/logrus/internal/terminal"
)

func checkIfTerminal(w io.Writer) bool {
Expand Down

0 comments on commit b959081

Please sign in to comment.