diff --git a/glide.lock b/glide.lock index b1dc998..9622094 100644 --- a/glide.lock +++ b/glide.lock @@ -1,7 +1,7 @@ hash: 3e4ada7ae3922b18b3492a45f1f31cdaaf68fa708327ce9b4f9730c3f0b3ca90 updated: 2017-08-30T18:15:39.909557691-07:00 imports: -- name: github.com/AlecAivazis/survey +- name: gopkg.in/AlecAivazis/survey.v1 version: 73fd4d7829877a72e03dbb42f84ed383fbbc5fa0 subpackages: - core diff --git a/glide.yaml b/glide.yaml index 19ac5d1..7b4bf58 100644 --- a/glide.yaml +++ b/glide.yaml @@ -11,7 +11,7 @@ import: version: ^2.2.4 - package: gopkg.in/op/go-logging.v1 version: ^1.0.0 -- package: github.com/AlecAivazis/survey +- package: gopkg.in/AlecAivazis/survey.v1 version: ^1.2.4 - package: github.com/tmc/keyring - package: github.com/kballard/go-shellquote diff --git a/jiracli/cli.go b/jiracli/cli.go index 843024c..549e794 100644 --- a/jiracli/cli.go +++ b/jiracli/cli.go @@ -12,11 +12,11 @@ import ( "reflect" "strings" - "github.com/AlecAivazis/survey" "github.com/coryb/figtree" "github.com/coryb/oreo" "github.com/jinzhu/copier" shellquote "github.com/kballard/go-shellquote" + "gopkg.in/AlecAivazis/survey.v1" kingpin "gopkg.in/alecthomas/kingpin.v2" yaml "gopkg.in/coryb/yaml.v2" logging "gopkg.in/op/go-logging.v1" diff --git a/jiracli/password.go b/jiracli/password.go index 7f5165d..96b2b59 100644 --- a/jiracli/password.go +++ b/jiracli/password.go @@ -6,7 +6,7 @@ import ( "os/exec" "strings" - "github.com/AlecAivazis/survey" + "gopkg.in/AlecAivazis/survey.v1" "gopkg.in/Netflix-Skunkworks/go-jira.v1/jiradata" ) diff --git a/vendor/github.com/AlecAivazis/survey/.tasks.yml b/vendor/gopkg.in/AlecAivazis/survey.v1/.tasks.yml similarity index 100% rename from vendor/github.com/AlecAivazis/survey/.tasks.yml rename to vendor/gopkg.in/AlecAivazis/survey.v1/.tasks.yml diff --git a/vendor/github.com/AlecAivazis/survey/.travis.yml b/vendor/gopkg.in/AlecAivazis/survey.v1/.travis.yml similarity index 100% rename from vendor/github.com/AlecAivazis/survey/.travis.yml rename to vendor/gopkg.in/AlecAivazis/survey.v1/.travis.yml diff --git a/vendor/github.com/AlecAivazis/survey/LICENSE b/vendor/gopkg.in/AlecAivazis/survey.v1/LICENSE similarity index 100% rename from vendor/github.com/AlecAivazis/survey/LICENSE rename to vendor/gopkg.in/AlecAivazis/survey.v1/LICENSE diff --git a/vendor/github.com/AlecAivazis/survey/README.md b/vendor/gopkg.in/AlecAivazis/survey.v1/README.md similarity index 100% rename from vendor/github.com/AlecAivazis/survey/README.md rename to vendor/gopkg.in/AlecAivazis/survey.v1/README.md diff --git a/vendor/github.com/AlecAivazis/survey/confirm.go b/vendor/gopkg.in/AlecAivazis/survey.v1/confirm.go similarity index 100% rename from vendor/github.com/AlecAivazis/survey/confirm.go rename to vendor/gopkg.in/AlecAivazis/survey.v1/confirm.go diff --git a/vendor/github.com/AlecAivazis/survey/confirm_test.go b/vendor/gopkg.in/AlecAivazis/survey.v1/confirm_test.go similarity index 100% rename from vendor/github.com/AlecAivazis/survey/confirm_test.go rename to vendor/gopkg.in/AlecAivazis/survey.v1/confirm_test.go diff --git a/vendor/github.com/AlecAivazis/survey/core/renderer.go b/vendor/gopkg.in/AlecAivazis/survey.v1/core/renderer.go similarity index 100% rename from vendor/github.com/AlecAivazis/survey/core/renderer.go rename to vendor/gopkg.in/AlecAivazis/survey.v1/core/renderer.go diff --git a/vendor/github.com/AlecAivazis/survey/core/template.go b/vendor/gopkg.in/AlecAivazis/survey.v1/core/template.go similarity index 100% rename from vendor/github.com/AlecAivazis/survey/core/template.go rename to vendor/gopkg.in/AlecAivazis/survey.v1/core/template.go diff --git a/vendor/github.com/AlecAivazis/survey/core/write.go b/vendor/gopkg.in/AlecAivazis/survey.v1/core/write.go similarity index 100% rename from vendor/github.com/AlecAivazis/survey/core/write.go rename to vendor/gopkg.in/AlecAivazis/survey.v1/core/write.go diff --git a/vendor/github.com/AlecAivazis/survey/core/write_test.go b/vendor/gopkg.in/AlecAivazis/survey.v1/core/write_test.go similarity index 100% rename from vendor/github.com/AlecAivazis/survey/core/write_test.go rename to vendor/gopkg.in/AlecAivazis/survey.v1/core/write_test.go diff --git a/vendor/github.com/AlecAivazis/survey/examples/longlist.go b/vendor/gopkg.in/AlecAivazis/survey.v1/examples/longlist.go similarity index 100% rename from vendor/github.com/AlecAivazis/survey/examples/longlist.go rename to vendor/gopkg.in/AlecAivazis/survey.v1/examples/longlist.go diff --git a/vendor/github.com/AlecAivazis/survey/examples/map.go b/vendor/gopkg.in/AlecAivazis/survey.v1/examples/map.go similarity index 100% rename from vendor/github.com/AlecAivazis/survey/examples/map.go rename to vendor/gopkg.in/AlecAivazis/survey.v1/examples/map.go diff --git a/vendor/github.com/AlecAivazis/survey/examples/simple.go b/vendor/gopkg.in/AlecAivazis/survey.v1/examples/simple.go similarity index 100% rename from vendor/github.com/AlecAivazis/survey/examples/simple.go rename to vendor/gopkg.in/AlecAivazis/survey.v1/examples/simple.go diff --git a/vendor/github.com/AlecAivazis/survey/examples/validation.go b/vendor/gopkg.in/AlecAivazis/survey.v1/examples/validation.go similarity index 100% rename from vendor/github.com/AlecAivazis/survey/examples/validation.go rename to vendor/gopkg.in/AlecAivazis/survey.v1/examples/validation.go diff --git a/vendor/github.com/AlecAivazis/survey/input.go b/vendor/gopkg.in/AlecAivazis/survey.v1/input.go similarity index 100% rename from vendor/github.com/AlecAivazis/survey/input.go rename to vendor/gopkg.in/AlecAivazis/survey.v1/input.go diff --git a/vendor/github.com/AlecAivazis/survey/input_test.go b/vendor/gopkg.in/AlecAivazis/survey.v1/input_test.go similarity index 100% rename from vendor/github.com/AlecAivazis/survey/input_test.go rename to vendor/gopkg.in/AlecAivazis/survey.v1/input_test.go diff --git a/vendor/github.com/AlecAivazis/survey/multiselect.go b/vendor/gopkg.in/AlecAivazis/survey.v1/multiselect.go similarity index 100% rename from vendor/github.com/AlecAivazis/survey/multiselect.go rename to vendor/gopkg.in/AlecAivazis/survey.v1/multiselect.go diff --git a/vendor/github.com/AlecAivazis/survey/multiselect_test.go b/vendor/gopkg.in/AlecAivazis/survey.v1/multiselect_test.go similarity index 100% rename from vendor/github.com/AlecAivazis/survey/multiselect_test.go rename to vendor/gopkg.in/AlecAivazis/survey.v1/multiselect_test.go diff --git a/vendor/github.com/AlecAivazis/survey/password.go b/vendor/gopkg.in/AlecAivazis/survey.v1/password.go similarity index 100% rename from vendor/github.com/AlecAivazis/survey/password.go rename to vendor/gopkg.in/AlecAivazis/survey.v1/password.go diff --git a/vendor/github.com/AlecAivazis/survey/password_test.go b/vendor/gopkg.in/AlecAivazis/survey.v1/password_test.go similarity index 100% rename from vendor/github.com/AlecAivazis/survey/password_test.go rename to vendor/gopkg.in/AlecAivazis/survey.v1/password_test.go diff --git a/vendor/github.com/AlecAivazis/survey/select.go b/vendor/gopkg.in/AlecAivazis/survey.v1/select.go similarity index 100% rename from vendor/github.com/AlecAivazis/survey/select.go rename to vendor/gopkg.in/AlecAivazis/survey.v1/select.go diff --git a/vendor/github.com/AlecAivazis/survey/select_test.go b/vendor/gopkg.in/AlecAivazis/survey.v1/select_test.go similarity index 100% rename from vendor/github.com/AlecAivazis/survey/select_test.go rename to vendor/gopkg.in/AlecAivazis/survey.v1/select_test.go diff --git a/vendor/github.com/AlecAivazis/survey/survey.go b/vendor/gopkg.in/AlecAivazis/survey.v1/survey.go similarity index 100% rename from vendor/github.com/AlecAivazis/survey/survey.go rename to vendor/gopkg.in/AlecAivazis/survey.v1/survey.go diff --git a/vendor/github.com/AlecAivazis/survey/survey_test.go b/vendor/gopkg.in/AlecAivazis/survey.v1/survey_test.go similarity index 100% rename from vendor/github.com/AlecAivazis/survey/survey_test.go rename to vendor/gopkg.in/AlecAivazis/survey.v1/survey_test.go diff --git a/vendor/github.com/AlecAivazis/survey/terminal/cursor.go b/vendor/gopkg.in/AlecAivazis/survey.v1/terminal/cursor.go similarity index 100% rename from vendor/github.com/AlecAivazis/survey/terminal/cursor.go rename to vendor/gopkg.in/AlecAivazis/survey.v1/terminal/cursor.go diff --git a/vendor/github.com/AlecAivazis/survey/terminal/cursor_windows.go b/vendor/gopkg.in/AlecAivazis/survey.v1/terminal/cursor_windows.go similarity index 100% rename from vendor/github.com/AlecAivazis/survey/terminal/cursor_windows.go rename to vendor/gopkg.in/AlecAivazis/survey.v1/terminal/cursor_windows.go diff --git a/vendor/github.com/AlecAivazis/survey/terminal/display.go b/vendor/gopkg.in/AlecAivazis/survey.v1/terminal/display.go similarity index 100% rename from vendor/github.com/AlecAivazis/survey/terminal/display.go rename to vendor/gopkg.in/AlecAivazis/survey.v1/terminal/display.go diff --git a/vendor/github.com/AlecAivazis/survey/terminal/display_posix.go b/vendor/gopkg.in/AlecAivazis/survey.v1/terminal/display_posix.go similarity index 100% rename from vendor/github.com/AlecAivazis/survey/terminal/display_posix.go rename to vendor/gopkg.in/AlecAivazis/survey.v1/terminal/display_posix.go diff --git a/vendor/github.com/AlecAivazis/survey/terminal/display_windows.go b/vendor/gopkg.in/AlecAivazis/survey.v1/terminal/display_windows.go similarity index 100% rename from vendor/github.com/AlecAivazis/survey/terminal/display_windows.go rename to vendor/gopkg.in/AlecAivazis/survey.v1/terminal/display_windows.go diff --git a/vendor/github.com/AlecAivazis/survey/terminal/output.go b/vendor/gopkg.in/AlecAivazis/survey.v1/terminal/output.go similarity index 100% rename from vendor/github.com/AlecAivazis/survey/terminal/output.go rename to vendor/gopkg.in/AlecAivazis/survey.v1/terminal/output.go diff --git a/vendor/github.com/AlecAivazis/survey/terminal/output_windows.go b/vendor/gopkg.in/AlecAivazis/survey.v1/terminal/output_windows.go similarity index 100% rename from vendor/github.com/AlecAivazis/survey/terminal/output_windows.go rename to vendor/gopkg.in/AlecAivazis/survey.v1/terminal/output_windows.go diff --git a/vendor/github.com/AlecAivazis/survey/terminal/print.go b/vendor/gopkg.in/AlecAivazis/survey.v1/terminal/print.go similarity index 100% rename from vendor/github.com/AlecAivazis/survey/terminal/print.go rename to vendor/gopkg.in/AlecAivazis/survey.v1/terminal/print.go diff --git a/vendor/github.com/AlecAivazis/survey/terminal/runereader.go b/vendor/gopkg.in/AlecAivazis/survey.v1/terminal/runereader.go similarity index 100% rename from vendor/github.com/AlecAivazis/survey/terminal/runereader.go rename to vendor/gopkg.in/AlecAivazis/survey.v1/terminal/runereader.go diff --git a/vendor/github.com/AlecAivazis/survey/terminal/runereader_bsd.go b/vendor/gopkg.in/AlecAivazis/survey.v1/terminal/runereader_bsd.go similarity index 100% rename from vendor/github.com/AlecAivazis/survey/terminal/runereader_bsd.go rename to vendor/gopkg.in/AlecAivazis/survey.v1/terminal/runereader_bsd.go diff --git a/vendor/github.com/AlecAivazis/survey/terminal/runereader_linux.go b/vendor/gopkg.in/AlecAivazis/survey.v1/terminal/runereader_linux.go similarity index 100% rename from vendor/github.com/AlecAivazis/survey/terminal/runereader_linux.go rename to vendor/gopkg.in/AlecAivazis/survey.v1/terminal/runereader_linux.go diff --git a/vendor/github.com/AlecAivazis/survey/terminal/runereader_posix.go b/vendor/gopkg.in/AlecAivazis/survey.v1/terminal/runereader_posix.go similarity index 100% rename from vendor/github.com/AlecAivazis/survey/terminal/runereader_posix.go rename to vendor/gopkg.in/AlecAivazis/survey.v1/terminal/runereader_posix.go diff --git a/vendor/github.com/AlecAivazis/survey/terminal/runereader_windows.go b/vendor/gopkg.in/AlecAivazis/survey.v1/terminal/runereader_windows.go similarity index 100% rename from vendor/github.com/AlecAivazis/survey/terminal/runereader_windows.go rename to vendor/gopkg.in/AlecAivazis/survey.v1/terminal/runereader_windows.go diff --git a/vendor/github.com/AlecAivazis/survey/terminal/sequences.go b/vendor/gopkg.in/AlecAivazis/survey.v1/terminal/sequences.go similarity index 100% rename from vendor/github.com/AlecAivazis/survey/terminal/sequences.go rename to vendor/gopkg.in/AlecAivazis/survey.v1/terminal/sequences.go diff --git a/vendor/github.com/AlecAivazis/survey/terminal/syscall_windows.go b/vendor/gopkg.in/AlecAivazis/survey.v1/terminal/syscall_windows.go similarity index 100% rename from vendor/github.com/AlecAivazis/survey/terminal/syscall_windows.go rename to vendor/gopkg.in/AlecAivazis/survey.v1/terminal/syscall_windows.go diff --git a/vendor/github.com/AlecAivazis/survey/terminal/terminal.go b/vendor/gopkg.in/AlecAivazis/survey.v1/terminal/terminal.go similarity index 100% rename from vendor/github.com/AlecAivazis/survey/terminal/terminal.go rename to vendor/gopkg.in/AlecAivazis/survey.v1/terminal/terminal.go diff --git a/vendor/github.com/AlecAivazis/survey/tests/README.md b/vendor/gopkg.in/AlecAivazis/survey.v1/tests/README.md similarity index 100% rename from vendor/github.com/AlecAivazis/survey/tests/README.md rename to vendor/gopkg.in/AlecAivazis/survey.v1/tests/README.md diff --git a/vendor/github.com/AlecAivazis/survey/tests/ask.go b/vendor/gopkg.in/AlecAivazis/survey.v1/tests/ask.go similarity index 100% rename from vendor/github.com/AlecAivazis/survey/tests/ask.go rename to vendor/gopkg.in/AlecAivazis/survey.v1/tests/ask.go diff --git a/vendor/github.com/AlecAivazis/survey/tests/autoplay/ask.go b/vendor/gopkg.in/AlecAivazis/survey.v1/tests/autoplay/ask.go similarity index 100% rename from vendor/github.com/AlecAivazis/survey/tests/autoplay/ask.go rename to vendor/gopkg.in/AlecAivazis/survey.v1/tests/autoplay/ask.go diff --git a/vendor/github.com/AlecAivazis/survey/tests/autoplay/confirm.go b/vendor/gopkg.in/AlecAivazis/survey.v1/tests/autoplay/confirm.go similarity index 100% rename from vendor/github.com/AlecAivazis/survey/tests/autoplay/confirm.go rename to vendor/gopkg.in/AlecAivazis/survey.v1/tests/autoplay/confirm.go diff --git a/vendor/github.com/AlecAivazis/survey/tests/autoplay/doubleSelect.go b/vendor/gopkg.in/AlecAivazis/survey.v1/tests/autoplay/doubleSelect.go similarity index 100% rename from vendor/github.com/AlecAivazis/survey/tests/autoplay/doubleSelect.go rename to vendor/gopkg.in/AlecAivazis/survey.v1/tests/autoplay/doubleSelect.go diff --git a/vendor/github.com/AlecAivazis/survey/tests/autoplay/help.go b/vendor/gopkg.in/AlecAivazis/survey.v1/tests/autoplay/help.go similarity index 100% rename from vendor/github.com/AlecAivazis/survey/tests/autoplay/help.go rename to vendor/gopkg.in/AlecAivazis/survey.v1/tests/autoplay/help.go diff --git a/vendor/github.com/AlecAivazis/survey/tests/autoplay/input.go b/vendor/gopkg.in/AlecAivazis/survey.v1/tests/autoplay/input.go similarity index 100% rename from vendor/github.com/AlecAivazis/survey/tests/autoplay/input.go rename to vendor/gopkg.in/AlecAivazis/survey.v1/tests/autoplay/input.go diff --git a/vendor/github.com/AlecAivazis/survey/tests/autoplay/multiselect.go b/vendor/gopkg.in/AlecAivazis/survey.v1/tests/autoplay/multiselect.go similarity index 100% rename from vendor/github.com/AlecAivazis/survey/tests/autoplay/multiselect.go rename to vendor/gopkg.in/AlecAivazis/survey.v1/tests/autoplay/multiselect.go diff --git a/vendor/github.com/AlecAivazis/survey/tests/autoplay/password.go b/vendor/gopkg.in/AlecAivazis/survey.v1/tests/autoplay/password.go similarity index 100% rename from vendor/github.com/AlecAivazis/survey/tests/autoplay/password.go rename to vendor/gopkg.in/AlecAivazis/survey.v1/tests/autoplay/password.go diff --git a/vendor/github.com/AlecAivazis/survey/tests/autoplay/select.go b/vendor/gopkg.in/AlecAivazis/survey.v1/tests/autoplay/select.go similarity index 100% rename from vendor/github.com/AlecAivazis/survey/tests/autoplay/select.go rename to vendor/gopkg.in/AlecAivazis/survey.v1/tests/autoplay/select.go diff --git a/vendor/github.com/AlecAivazis/survey/tests/autoplay/selectThenInput.go b/vendor/gopkg.in/AlecAivazis/survey.v1/tests/autoplay/selectThenInput.go similarity index 100% rename from vendor/github.com/AlecAivazis/survey/tests/autoplay/selectThenInput.go rename to vendor/gopkg.in/AlecAivazis/survey.v1/tests/autoplay/selectThenInput.go diff --git a/vendor/github.com/AlecAivazis/survey/tests/confirm.go b/vendor/gopkg.in/AlecAivazis/survey.v1/tests/confirm.go similarity index 100% rename from vendor/github.com/AlecAivazis/survey/tests/confirm.go rename to vendor/gopkg.in/AlecAivazis/survey.v1/tests/confirm.go diff --git a/vendor/github.com/AlecAivazis/survey/tests/doubleSelect.go b/vendor/gopkg.in/AlecAivazis/survey.v1/tests/doubleSelect.go similarity index 100% rename from vendor/github.com/AlecAivazis/survey/tests/doubleSelect.go rename to vendor/gopkg.in/AlecAivazis/survey.v1/tests/doubleSelect.go diff --git a/vendor/github.com/AlecAivazis/survey/tests/help.go b/vendor/gopkg.in/AlecAivazis/survey.v1/tests/help.go similarity index 100% rename from vendor/github.com/AlecAivazis/survey/tests/help.go rename to vendor/gopkg.in/AlecAivazis/survey.v1/tests/help.go diff --git a/vendor/github.com/AlecAivazis/survey/tests/input.go b/vendor/gopkg.in/AlecAivazis/survey.v1/tests/input.go similarity index 100% rename from vendor/github.com/AlecAivazis/survey/tests/input.go rename to vendor/gopkg.in/AlecAivazis/survey.v1/tests/input.go diff --git a/vendor/github.com/AlecAivazis/survey/tests/longSelect.go b/vendor/gopkg.in/AlecAivazis/survey.v1/tests/longSelect.go similarity index 100% rename from vendor/github.com/AlecAivazis/survey/tests/longSelect.go rename to vendor/gopkg.in/AlecAivazis/survey.v1/tests/longSelect.go diff --git a/vendor/github.com/AlecAivazis/survey/tests/multiselect.go b/vendor/gopkg.in/AlecAivazis/survey.v1/tests/multiselect.go similarity index 100% rename from vendor/github.com/AlecAivazis/survey/tests/multiselect.go rename to vendor/gopkg.in/AlecAivazis/survey.v1/tests/multiselect.go diff --git a/vendor/github.com/AlecAivazis/survey/tests/password.go b/vendor/gopkg.in/AlecAivazis/survey.v1/tests/password.go similarity index 100% rename from vendor/github.com/AlecAivazis/survey/tests/password.go rename to vendor/gopkg.in/AlecAivazis/survey.v1/tests/password.go diff --git a/vendor/github.com/AlecAivazis/survey/tests/select.go b/vendor/gopkg.in/AlecAivazis/survey.v1/tests/select.go similarity index 100% rename from vendor/github.com/AlecAivazis/survey/tests/select.go rename to vendor/gopkg.in/AlecAivazis/survey.v1/tests/select.go diff --git a/vendor/github.com/AlecAivazis/survey/tests/selectThenInput.go b/vendor/gopkg.in/AlecAivazis/survey.v1/tests/selectThenInput.go similarity index 100% rename from vendor/github.com/AlecAivazis/survey/tests/selectThenInput.go rename to vendor/gopkg.in/AlecAivazis/survey.v1/tests/selectThenInput.go diff --git a/vendor/github.com/AlecAivazis/survey/tests/util/test.go b/vendor/gopkg.in/AlecAivazis/survey.v1/tests/util/test.go similarity index 100% rename from vendor/github.com/AlecAivazis/survey/tests/util/test.go rename to vendor/gopkg.in/AlecAivazis/survey.v1/tests/util/test.go diff --git a/vendor/github.com/AlecAivazis/survey/validate.go b/vendor/gopkg.in/AlecAivazis/survey.v1/validate.go similarity index 100% rename from vendor/github.com/AlecAivazis/survey/validate.go rename to vendor/gopkg.in/AlecAivazis/survey.v1/validate.go diff --git a/vendor/github.com/AlecAivazis/survey/validate_test.go b/vendor/gopkg.in/AlecAivazis/survey.v1/validate_test.go similarity index 100% rename from vendor/github.com/AlecAivazis/survey/validate_test.go rename to vendor/gopkg.in/AlecAivazis/survey.v1/validate_test.go