[PR #58] [MERGED] Integrated dependency manager #15118

Closed
opened 2025-11-02 11:39:17 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/go-gitea/gitea/pull/58
Author: @tboerger
Created: 11/3/2016
Status: Merged
Merged: 11/4/2016
Merged by: @lunny

Base: masterHead: vendoring


📝 Commits (5)

  • 998e745 Dropped vendoring from gitignore
  • 90402a6 Dropped glide configs
  • 78f86ab Added vendoring config for govendor
  • 1ebb35b Added all required dependencies
  • f8b4699 Dropped go get from travis config

📊 Changes

665 files changed (+502959 additions, -223 deletions)

View changed files

📝 .gitignore (+0 -1)
📝 .travis.yml (+7 -11)
glide.lock (+0 -152)
glide.yaml (+0 -59)
vendor/github.com/Unknwon/cae/LICENSE (+191 -0)
vendor/github.com/Unknwon/cae/README.md (+37 -0)
vendor/github.com/Unknwon/cae/README_ZH.md (+29 -0)
vendor/github.com/Unknwon/cae/cae.go (+108 -0)
vendor/github.com/Unknwon/cae/zip/read.go (+67 -0)
vendor/github.com/Unknwon/cae/zip/stream.go (+77 -0)
vendor/github.com/Unknwon/cae/zip/write.go (+364 -0)
vendor/github.com/Unknwon/cae/zip/zip.go (+238 -0)
vendor/github.com/Unknwon/com/LICENSE (+191 -0)
vendor/github.com/Unknwon/com/README.md (+20 -0)
vendor/github.com/Unknwon/com/cmd.go (+161 -0)
vendor/github.com/Unknwon/com/convert.go (+157 -0)
vendor/github.com/Unknwon/com/dir.go (+173 -0)
vendor/github.com/Unknwon/com/file.go (+145 -0)
vendor/github.com/Unknwon/com/html.go (+60 -0)
vendor/github.com/Unknwon/com/http.go (+201 -0)

...and 80 more files

📄 Description

I have integrated all dependencies with govendor and also updated the travis configuration since we don't need to download the dependencies anymore. This also fixes #29.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/go-gitea/gitea/pull/58 **Author:** [@tboerger](https://github.com/tboerger) **Created:** 11/3/2016 **Status:** ✅ Merged **Merged:** 11/4/2016 **Merged by:** [@lunny](https://github.com/lunny) **Base:** `master` ← **Head:** `vendoring` --- ### 📝 Commits (5) - [`998e745`](https://github.com/go-gitea/gitea/commit/998e7452b8eea9f040dd03a96b6696a4b188cc57) Dropped vendoring from gitignore - [`90402a6`](https://github.com/go-gitea/gitea/commit/90402a6328df87b4d341e3f08f6fea710465a5b3) Dropped glide configs - [`78f86ab`](https://github.com/go-gitea/gitea/commit/78f86abba45cb35018c58b8bd5f4c48a86cc8634) Added vendoring config for govendor - [`1ebb35b`](https://github.com/go-gitea/gitea/commit/1ebb35b98889ff77299f24d82da426b434b0cca0) Added all required dependencies - [`f8b4699`](https://github.com/go-gitea/gitea/commit/f8b4699a1493f14d8380c04dc481c8b6458cfbdc) Dropped go get from travis config ### 📊 Changes **665 files changed** (+502959 additions, -223 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+0 -1) 📝 `.travis.yml` (+7 -11) ➖ `glide.lock` (+0 -152) ➖ `glide.yaml` (+0 -59) ➕ `vendor/github.com/Unknwon/cae/LICENSE` (+191 -0) ➕ `vendor/github.com/Unknwon/cae/README.md` (+37 -0) ➕ `vendor/github.com/Unknwon/cae/README_ZH.md` (+29 -0) ➕ `vendor/github.com/Unknwon/cae/cae.go` (+108 -0) ➕ `vendor/github.com/Unknwon/cae/zip/read.go` (+67 -0) ➕ `vendor/github.com/Unknwon/cae/zip/stream.go` (+77 -0) ➕ `vendor/github.com/Unknwon/cae/zip/write.go` (+364 -0) ➕ `vendor/github.com/Unknwon/cae/zip/zip.go` (+238 -0) ➕ `vendor/github.com/Unknwon/com/LICENSE` (+191 -0) ➕ `vendor/github.com/Unknwon/com/README.md` (+20 -0) ➕ `vendor/github.com/Unknwon/com/cmd.go` (+161 -0) ➕ `vendor/github.com/Unknwon/com/convert.go` (+157 -0) ➕ `vendor/github.com/Unknwon/com/dir.go` (+173 -0) ➕ `vendor/github.com/Unknwon/com/file.go` (+145 -0) ➕ `vendor/github.com/Unknwon/com/html.go` (+60 -0) ➕ `vendor/github.com/Unknwon/com/http.go` (+201 -0) _...and 80 more files_ </details> ### 📄 Description I have integrated all dependencies with govendor and also updated the travis configuration since we don't need to download the dependencies anymore. This also fixes #29. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2025-11-02 11:39:17 -06:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/gitea#15118