Browse Source

codegangsta/cli => urfave/cli (#3546)

for-closed-social
Kim "BKC" Carlbäcker 7 years ago
committed by 无闻
parent
commit
4f40019130
11 changed files with 11 additions and 12 deletions
  1. +1
    -2
      .gopmfile
  2. +1
    -1
      cmd/admin.go
  3. +1
    -1
      cmd/cert_stub.go
  4. +1
    -1
      cmd/cmd.go
  5. +1
    -1
      cmd/dump.go
  6. +1
    -1
      cmd/serve.go
  7. +1
    -1
      cmd/update.go
  8. +1
    -1
      cmd/web.go
  9. +1
    -1
      glide.lock
  10. +1
    -1
      glide.yaml
  11. +1
    -1
      gogs.go

+ 1
- 2
.gopmfile View File

@ -3,7 +3,7 @@ path = github.com/gogits/gogs
[deps]
github.com/bradfitz/gomemcache = commit:fb1f79c
github.com/codegangsta/cli = commit:1efa31f
github.com/urfave/cli = commit:1efa31f
github.com/go-macaron/binding = commit:9440f33
github.com/go-macaron/cache = commit:5617353
github.com/go-macaron/captcha = commit:8aa5919
@ -57,4 +57,3 @@ gopkg.in/redis.v2 = commit:e617904
[res]
include = public|scripts|templates

+ 1
- 1
cmd/admin.go View File

@ -7,7 +7,7 @@ package cmd
import (
"fmt"
"github.com/codegangsta/cli"
"github.com/urfave/cli"
"github.com/gogits/gogs/models"
"github.com/gogits/gogs/modules/setting"

+ 1
- 1
cmd/cert_stub.go View File

@ -10,7 +10,7 @@ import (
"fmt"
"os"
"github.com/codegangsta/cli"
"github.com/urfave/cli"
)
var CmdCert = cli.Command{

+ 1
- 1
cmd/cmd.go View File

@ -7,7 +7,7 @@ package cmd
import (
"time"
"github.com/codegangsta/cli"
"github.com/urfave/cli"
)
func stringFlag(name, value, usage string) cli.StringFlag {

+ 1
- 1
cmd/dump.go View File

@ -14,7 +14,7 @@ import (
"io/ioutil"
"github.com/Unknwon/cae/zip"
"github.com/codegangsta/cli"
"github.com/urfave/cli"
"github.com/gogits/gogs/models"
"github.com/gogits/gogs/modules/setting"

+ 1
- 1
cmd/serve.go View File

@ -14,9 +14,9 @@ import (
"time"
"github.com/Unknwon/com"
"github.com/codegangsta/cli"
git "github.com/gogits/git-module"
gouuid "github.com/satori/go.uuid"
"github.com/urfave/cli"
"github.com/gogits/gogs/models"
"github.com/gogits/gogs/modules/base"

+ 1
- 1
cmd/update.go View File

@ -7,7 +7,7 @@ package cmd
import (
"os"
"github.com/codegangsta/cli"
"github.com/urfave/cli"
"github.com/gogits/gogs/models"
"github.com/gogits/gogs/modules/log"

+ 1
- 1
cmd/web.go View File

@ -15,7 +15,6 @@ import (
"path"
"strings"
"github.com/codegangsta/cli"
"github.com/go-macaron/binding"
"github.com/go-macaron/cache"
"github.com/go-macaron/captcha"
@ -26,6 +25,7 @@ import (
"github.com/go-macaron/toolbox"
"github.com/go-xorm/xorm"
"github.com/mcuadros/go-version"
"github.com/urfave/cli"
"gopkg.in/ini.v1"
"gopkg.in/macaron.v1"

+ 1
- 1
glide.lock View File

@ -5,7 +5,7 @@ imports:
version: fb1f79c6b65acda83063cbc69f6bba1522558bfc
subpackages:
- memcache
- name: github.com/codegangsta/cli
- name: github.com/urfave/cli
version: 1efa31f08b9333f1bd4882d61f9d668a70cd902e
- name: github.com/go-macaron/binding
version: 9440f336b443056c90d7d448a0a55ad8c7599880

+ 1
- 1
glide.yaml View File

@ -6,7 +6,7 @@ import:
- package: github.com/Unknwon/com
- package: github.com/Unknwon/i18n
- package: github.com/Unknwon/paginater
- package: github.com/codegangsta/cli
- package: github.com/urfave/cli
- package: github.com/go-macaron/binding
- package: github.com/go-macaron/cache
subpackages:

+ 1
- 1
gogs.go View File

@ -11,7 +11,7 @@ import (
"os"
"runtime"
"github.com/codegangsta/cli"
"github.com/urfave/cli"
"github.com/gogits/gogs/cmd"
"github.com/gogits/gogs/modules/setting"

Loading…
Cancel
Save