Browse Source

Replace gogits/git-module dependency with go-gitea/git (#94)

* Replace gogits/git-module dependency with go-gitea/git

Fixes #92

* Remove git alias for git module import (not needed)
master
Sandro Santilli Andrey Nering 8 years ago
parent
commit
6e4252dad4
54 changed files with 37 additions and 37 deletions
  1. +1
    -1
      cmd/serve.go
  2. +2
    -2
      cmd/web.go
  3. +1
    -1
      models/action.go
  4. +1
    -1
      models/git_diff.go
  5. +1
    -1
      models/pull.go
  6. +1
    -1
      models/release.go
  7. +1
    -1
      models/repo.go
  8. +1
    -1
      models/repo_branch.go
  9. +1
    -1
      models/repo_editor.go
  10. +1
    -1
      models/update.go
  11. +1
    -1
      models/user.go
  12. +1
    -1
      models/webhook_slack.go
  13. +1
    -1
      models/wiki.go
  14. +1
    -1
      modules/context/repo.go
  15. +1
    -1
      routers/api/v1/convert/convert.go
  16. +1
    -1
      routers/api/v1/repo/file.go
  17. +1
    -1
      routers/install.go
  18. +1
    -1
      routers/repo/commit.go
  19. +1
    -1
      routers/repo/download.go
  20. +1
    -1
      routers/repo/editor.go
  21. +1
    -1
      routers/repo/http.go
  22. +1
    -1
      routers/repo/middlewares.go
  23. +1
    -1
      routers/repo/pull.go
  24. +1
    -1
      routers/repo/repo.go
  25. +1
    -1
      routers/repo/setting.go
  26. +1
    -1
      routers/repo/view.go
  27. +1
    -1
      routers/repo/webhook.go
  28. +1
    -1
      routers/repo/wiki.go
  29. +0
    -0
      vendor/github.com/go-gitea/git/LICENSE
  30. +2
    -2
      vendor/github.com/go-gitea/git/README.md
  31. +0
    -0
      vendor/github.com/go-gitea/git/blob.go
  32. +0
    -0
      vendor/github.com/go-gitea/git/command.go
  33. +0
    -0
      vendor/github.com/go-gitea/git/commit.go
  34. +0
    -0
      vendor/github.com/go-gitea/git/commit_archive.go
  35. +0
    -0
      vendor/github.com/go-gitea/git/error.go
  36. +0
    -0
      vendor/github.com/go-gitea/git/git.go
  37. +0
    -0
      vendor/github.com/go-gitea/git/hook.go
  38. +0
    -0
      vendor/github.com/go-gitea/git/repo.go
  39. +0
    -0
      vendor/github.com/go-gitea/git/repo_branch.go
  40. +0
    -0
      vendor/github.com/go-gitea/git/repo_commit.go
  41. +0
    -0
      vendor/github.com/go-gitea/git/repo_hook.go
  42. +0
    -0
      vendor/github.com/go-gitea/git/repo_object.go
  43. +0
    -0
      vendor/github.com/go-gitea/git/repo_pull.go
  44. +0
    -0
      vendor/github.com/go-gitea/git/repo_tag.go
  45. +0
    -0
      vendor/github.com/go-gitea/git/repo_tree.go
  46. +0
    -0
      vendor/github.com/go-gitea/git/sha1.go
  47. +0
    -0
      vendor/github.com/go-gitea/git/signature.go
  48. +0
    -0
      vendor/github.com/go-gitea/git/submodule.go
  49. +0
    -0
      vendor/github.com/go-gitea/git/tag.go
  50. +0
    -0
      vendor/github.com/go-gitea/git/tree.go
  51. +0
    -0
      vendor/github.com/go-gitea/git/tree_blob.go
  52. +0
    -0
      vendor/github.com/go-gitea/git/tree_entry.go
  53. +0
    -0
      vendor/github.com/go-gitea/git/utlis.go
  54. +6
    -6
      vendor/vendor.json

+ 1
- 1
cmd/serve.go View File

@@ -14,7 +14,7 @@ import (
"time"

"github.com/Unknwon/com"
git "github.com/gogits/git-module"
"github.com/go-gitea/git"
gouuid "github.com/satori/go.uuid"
"github.com/urfave/cli"



+ 2
- 2
cmd/web.go View File

@@ -38,7 +38,7 @@ import (
"github.com/go-macaron/session"
"github.com/go-macaron/toolbox"
"github.com/go-xorm/xorm"
git "github.com/gogits/git-module"
"github.com/go-gitea/git"
gogs "github.com/gogits/go-gogs-client"
version "github.com/mcuadros/go-version"
"github.com/urfave/cli"
@@ -93,7 +93,7 @@ func checkVersion() {
{"github.com/go-macaron/toolbox", toolbox.Version, "0.1.0"},
{"gopkg.in/ini.v1", ini.Version, "1.8.4"},
{"gopkg.in/macaron.v1", macaron.Version, "1.1.7"},
{"github.com/gogits/git-module", git.Version, "0.4.1"},
{"github.com/go-gitea/git", git.Version, "0.4.1"},
{"github.com/gogits/go-gogs-client", gogs.Version, "0.12.1"},
}
for _, c := range checkers {


+ 1
- 1
models/action.go View File

@@ -16,7 +16,7 @@ import (
"github.com/Unknwon/com"
"github.com/go-xorm/xorm"

"github.com/gogits/git-module"
"github.com/go-gitea/git"
api "github.com/gogits/go-gogs-client"

"github.com/go-gitea/gitea/modules/base"


+ 1
- 1
models/git_diff.go View File

@@ -22,7 +22,7 @@ import (
"github.com/go-gitea/gitea/modules/process"
"github.com/go-gitea/gitea/modules/setting"
"github.com/go-gitea/gitea/modules/template/highlight"
git "github.com/gogits/git-module"
"github.com/go-gitea/git"
"github.com/sergi/go-diff/diffmatchpatch"
"golang.org/x/net/html/charset"
"golang.org/x/text/transform"


+ 1
- 1
models/pull.go View File

@@ -17,7 +17,7 @@ import (
"github.com/go-gitea/gitea/modules/setting"
"github.com/go-gitea/gitea/modules/sync"
"github.com/go-xorm/xorm"
git "github.com/gogits/git-module"
"github.com/go-gitea/git"
api "github.com/gogits/go-gogs-client"
)



+ 1
- 1
models/release.go View File

@@ -12,7 +12,7 @@ import (

"github.com/go-xorm/xorm"

"github.com/gogits/git-module"
"github.com/go-gitea/git"

"github.com/go-gitea/gitea/modules/process"
)


+ 1
- 1
models/repo.go View File

@@ -28,7 +28,7 @@ import (
"github.com/go-gitea/gitea/modules/setting"
"github.com/go-gitea/gitea/modules/sync"
"github.com/go-xorm/xorm"
git "github.com/gogits/git-module"
"github.com/go-gitea/git"
api "github.com/gogits/go-gogs-client"
version "github.com/mcuadros/go-version"
ini "gopkg.in/ini.v1"


+ 1
- 1
models/repo_branch.go View File

@@ -5,7 +5,7 @@
package models

import (
"github.com/gogits/git-module"
"github.com/go-gitea/git"
)

type Branch struct {


+ 1
- 1
models/repo_editor.go View File

@@ -18,7 +18,7 @@ import (
"github.com/Unknwon/com"
gouuid "github.com/satori/go.uuid"

git "github.com/gogits/git-module"
"github.com/go-gitea/git"

"github.com/go-gitea/gitea/modules/log"
"github.com/go-gitea/gitea/modules/process"


+ 1
- 1
models/update.go View File

@@ -10,7 +10,7 @@ import (
"os/exec"
"strings"

git "github.com/gogits/git-module"
"github.com/go-gitea/git"

"github.com/go-gitea/gitea/modules/log"
)


+ 1
- 1
models/user.go View File

@@ -24,7 +24,7 @@ import (
"github.com/go-xorm/xorm"
"github.com/nfnt/resize"

"github.com/gogits/git-module"
"github.com/go-gitea/git"
api "github.com/gogits/go-gogs-client"

"github.com/go-gitea/gitea/modules/avatar"


+ 1
- 1
models/webhook_slack.go View File

@@ -10,7 +10,7 @@ import (
"fmt"
"strings"

"github.com/gogits/git-module"
"github.com/go-gitea/git"
api "github.com/gogits/go-gogs-client"

"github.com/go-gitea/gitea/modules/setting"


+ 1
- 1
models/wiki.go View File

@@ -15,7 +15,7 @@ import (

"github.com/Unknwon/com"

"github.com/gogits/git-module"
"github.com/go-gitea/git"

"github.com/go-gitea/gitea/modules/setting"
"github.com/go-gitea/gitea/modules/sync"


+ 1
- 1
modules/context/repo.go View File

@@ -14,7 +14,7 @@ import (
"github.com/go-gitea/gitea/models"
"github.com/go-gitea/gitea/modules/log"
"github.com/go-gitea/gitea/modules/setting"
git "github.com/gogits/git-module"
"github.com/go-gitea/git"
editorconfig "gopkg.in/editorconfig/editorconfig-core-go.v1"
macaron "gopkg.in/macaron.v1"
)


+ 1
- 1
routers/api/v1/convert/convert.go View File

@@ -9,7 +9,7 @@ import (

"github.com/Unknwon/com"

"github.com/gogits/git-module"
"github.com/go-gitea/git"
api "github.com/gogits/go-gogs-client"

"github.com/go-gitea/gitea/models"


+ 1
- 1
routers/api/v1/repo/file.go View File

@@ -5,7 +5,7 @@
package repo

import (
"github.com/gogits/git-module"
"github.com/go-gitea/git"

"github.com/go-gitea/gitea/models"
"github.com/go-gitea/gitea/modules/context"


+ 1
- 1
routers/install.go View File

@@ -17,7 +17,7 @@ import (
"gopkg.in/ini.v1"
"gopkg.in/macaron.v1"

"github.com/gogits/git-module"
"github.com/go-gitea/git"

"github.com/go-gitea/gitea/models"
"github.com/go-gitea/gitea/modules/auth"


+ 1
- 1
routers/repo/commit.go View File

@@ -13,7 +13,7 @@ import (
"github.com/go-gitea/gitea/modules/base"
"github.com/go-gitea/gitea/modules/context"
"github.com/go-gitea/gitea/modules/setting"
git "github.com/gogits/git-module"
"github.com/go-gitea/git"
)

const (


+ 1
- 1
routers/repo/download.go View File

@@ -8,7 +8,7 @@ import (
"io"
"path"

"github.com/gogits/git-module"
"github.com/go-gitea/git"

"github.com/go-gitea/gitea/modules/base"
"github.com/go-gitea/gitea/modules/context"


+ 1
- 1
routers/repo/editor.go View File

@@ -18,7 +18,7 @@ import (
"github.com/go-gitea/gitea/modules/log"
"github.com/go-gitea/gitea/modules/setting"
"github.com/go-gitea/gitea/modules/template"
git "github.com/gogits/git-module"
"github.com/go-gitea/git"
)

const (


+ 1
- 1
routers/repo/http.go View File

@@ -20,7 +20,7 @@ import (
"strings"
"time"

git "github.com/gogits/git-module"
"github.com/go-gitea/git"

"github.com/go-gitea/gitea/models"
"github.com/go-gitea/gitea/modules/base"


+ 1
- 1
routers/repo/middlewares.go View File

@@ -5,7 +5,7 @@ import (

"github.com/go-gitea/gitea/models"
"github.com/go-gitea/gitea/modules/context"
git "github.com/gogits/git-module"
"github.com/go-gitea/git"
)

func SetEditorconfigIfExists(ctx *context.Context) {


+ 1
- 1
routers/repo/pull.go View File

@@ -17,7 +17,7 @@ import (
"github.com/go-gitea/gitea/modules/context"
"github.com/go-gitea/gitea/modules/log"
"github.com/go-gitea/gitea/modules/setting"
git "github.com/gogits/git-module"
"github.com/go-gitea/git"
)

const (


+ 1
- 1
routers/repo/repo.go View File

@@ -12,7 +12,7 @@ import (

"github.com/Unknwon/com"

"github.com/gogits/git-module"
"github.com/go-gitea/git"

"github.com/go-gitea/gitea/models"
"github.com/go-gitea/gitea/modules/auth"


+ 1
- 1
routers/repo/setting.go View File

@@ -8,7 +8,7 @@ import (
"strings"
"time"

"github.com/gogits/git-module"
"github.com/go-gitea/git"

"github.com/go-gitea/gitea/models"
"github.com/go-gitea/gitea/modules/auth"


+ 1
- 1
routers/repo/view.go View File

@@ -21,7 +21,7 @@ import (
"github.com/go-gitea/gitea/modules/setting"
"github.com/go-gitea/gitea/modules/template"
"github.com/go-gitea/gitea/modules/template/highlight"
git "github.com/gogits/git-module"
"github.com/go-gitea/git"
)

const (


+ 1
- 1
routers/repo/webhook.go View File

@@ -12,7 +12,7 @@ import (

"github.com/Unknwon/com"

git "github.com/gogits/git-module"
"github.com/go-gitea/git"
api "github.com/gogits/go-gogs-client"

"github.com/go-gitea/gitea/models"


+ 1
- 1
routers/repo/wiki.go View File

@@ -9,7 +9,7 @@ import (
"strings"
"time"

"github.com/gogits/git-module"
"github.com/go-gitea/git"

"github.com/go-gitea/gitea/models"
"github.com/go-gitea/gitea/modules/auth"


vendor/github.com/gogits/git-module/LICENSE → vendor/github.com/go-gitea/git/LICENSE View File


vendor/github.com/gogits/git-module/README.md → vendor/github.com/go-gitea/git/README.md View File

@@ -1,6 +1,6 @@
# Git Shell [![Build Status](https://travis-ci.org/gogits/git-module.svg?branch=master)](https://travis-ci.org/gogits/git-module)
# Git Shell [![Build # Status](https://travis-ci.org/go-gitea/git.svg?branch=master)](https://travis-ci.org/go-gitea/git)

Package git-module is a Go module for Git access through shell commands.
Package git is a Go module for Git access through shell commands.

## Limitations


vendor/github.com/gogits/git-module/blob.go → vendor/github.com/go-gitea/git/blob.go View File


vendor/github.com/gogits/git-module/command.go → vendor/github.com/go-gitea/git/command.go View File


vendor/github.com/gogits/git-module/commit.go → vendor/github.com/go-gitea/git/commit.go View File


vendor/github.com/gogits/git-module/commit_archive.go → vendor/github.com/go-gitea/git/commit_archive.go View File


vendor/github.com/gogits/git-module/error.go → vendor/github.com/go-gitea/git/error.go View File


vendor/github.com/gogits/git-module/git.go → vendor/github.com/go-gitea/git/git.go View File


vendor/github.com/gogits/git-module/hook.go → vendor/github.com/go-gitea/git/hook.go View File


vendor/github.com/gogits/git-module/repo.go → vendor/github.com/go-gitea/git/repo.go View File


vendor/github.com/gogits/git-module/repo_branch.go → vendor/github.com/go-gitea/git/repo_branch.go View File


vendor/github.com/gogits/git-module/repo_commit.go → vendor/github.com/go-gitea/git/repo_commit.go View File


vendor/github.com/gogits/git-module/repo_hook.go → vendor/github.com/go-gitea/git/repo_hook.go View File


vendor/github.com/gogits/git-module/repo_object.go → vendor/github.com/go-gitea/git/repo_object.go View File


vendor/github.com/gogits/git-module/repo_pull.go → vendor/github.com/go-gitea/git/repo_pull.go View File


vendor/github.com/gogits/git-module/repo_tag.go → vendor/github.com/go-gitea/git/repo_tag.go View File


vendor/github.com/gogits/git-module/repo_tree.go → vendor/github.com/go-gitea/git/repo_tree.go View File


vendor/github.com/gogits/git-module/sha1.go → vendor/github.com/go-gitea/git/sha1.go View File


vendor/github.com/gogits/git-module/signature.go → vendor/github.com/go-gitea/git/signature.go View File


vendor/github.com/gogits/git-module/submodule.go → vendor/github.com/go-gitea/git/submodule.go View File


vendor/github.com/gogits/git-module/tag.go → vendor/github.com/go-gitea/git/tag.go View File


vendor/github.com/gogits/git-module/tree.go → vendor/github.com/go-gitea/git/tree.go View File


vendor/github.com/gogits/git-module/tree_blob.go → vendor/github.com/go-gitea/git/tree_blob.go View File


vendor/github.com/gogits/git-module/tree_entry.go → vendor/github.com/go-gitea/git/tree_entry.go View File


vendor/github.com/gogits/git-module/utlis.go → vendor/github.com/go-gitea/git/utlis.go View File


+ 6
- 6
vendor/vendor.json View File

@@ -39,6 +39,12 @@
"revisionTime": "2016-01-17T19:21:50Z"
},
{
"checksumSHA1": "K3Gp8Tv/B8otlbsOfQp3UpJGaaE=",
"path": "github.com/go-gitea/git",
"revision": "766747ef8b271a2b1142edd0a40735f556ec2c1d",
"revisionTime": "2016-11-06T09:52:37Z"
},
{
"checksumSHA1": "qM/kf31cT2cxjtHxdzbu8q8jPq0=",
"path": "github.com/go-macaron/binding",
"revision": "9440f336b443056c90d7d448a0a55ad8c7599880",
@@ -147,12 +153,6 @@
"revisionTime": "2016-08-10T03:50:02Z"
},
{
"checksumSHA1": "PIGpfND20BlypoaFJsy2cH6urxs=",
"path": "github.com/gogits/git-module",
"revision": "b3009dc4f5842cf9e2e80fef1e125e79c38e4949",
"revisionTime": "2016-08-31T20:58:24Z"
},
{
"checksumSHA1": "5P4i69584LOvCooguu2D/pNxU14=",
"path": "github.com/gogits/go-gogs-client",
"revision": "d8aff570fa22d4e38954c753ec8b21862239b31d",


Loading…
Cancel
Save