[DRE-commits] [gitlab-workhorse] branch master updated (3a5f3e7 -> ed691b7)

Praveen Arimbrathodiyil praveen at moszumanska.debian.org
Fri Feb 5 17:32:42 UTC 2016


This is an automated email from the git hooks/post-receive script.

praveen pushed a change to branch master
in repository gitlab-workhorse.

      from  3a5f3e7   make lintian happy
       new  1ae735e   mangle filename
      adds  fa95f11   Imported Upstream version 0.6.3
       new  a84244e   Merge tag 'upstream/0.6.3'
       new  2805cf1   update changelog
       new  ed691b7   drop patch

The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .gitignore                                         |   7 +-
 .gitlab-ci.yml                                     |  10 +-
 CHANGELOG                                          |  45 ++-
 Makefile                                           |  39 ++-
 README.md                                          |  40 ++-
 VERSION                                            |   2 +-
 artifacts.go                                       |   5 -
 authorization.go                                   | 109 ------
 authorization_test.go                              |  23 +-
 cmd/gitlab-zip-cat/main.go                         |  86 +++++
 cmd/gitlab-zip-metadata/main.go                    |  36 ++
 debian/changelog                                   |   7 +
 debian/patches/modify-paths.patch                  |  16 -
 debian/patches/series                              |   1 -
 debian/watch                                       |   3 +-
 deploy_page.go                                     |  23 --
 development.go                                     |  14 -
 error_pages_test.go                                |  53 ---
 helpers.go                                         | 120 -------
 helpers_test.go                                    |  24 --
 internal/api/api.go                                | 192 ++++++++++
 internal/artifacts/artifact_download.go            |  99 ++++++
 internal/artifacts/artifact_download_test.go       | 116 ++++++
 internal/artifacts/artifacts_upload.go             |  86 +++++
 internal/artifacts/artifacts_upload_test.go        | 174 +++++++++
 internal/artifacts/escape_quotes.go                |  10 +
 internal/badgateway/roundtripper.go                |  69 ++++
 archive.go => internal/git/archive.go              |  50 +--
 internal/git/blob.go                               |  61 ++++
 internal/git/command.go                            |  25 ++
 git-http.go => internal/git/git-http.go            |  62 ++--
 internal/helper/helpers.go                         | 112 ++++++
 logging.go => internal/helper/logging.go           |  16 +-
 internal/lfs/lfs.go                                |  88 +++++
 internal/proxy/proxy.go                            |  41 +++
 internal/senddata/sendfile.go                      |  98 ++++++
 internal/staticpages/deploy_page.go                |  25 ++
 .../staticpages/deploy_page_test.go                |  17 +-
 .../staticpages/error_pages.go                     |  22 +-
 internal/staticpages/error_pages_test.go           |  79 +++++
 servefile.go => internal/staticpages/servefile.go  |  29 +-
 .../staticpages/servefile_test.go                  |  68 ++--
 internal/staticpages/static.go                     |   5 +
 internal/testhelper/testhelper.go                  |  45 +++
 internal/upload/uploads.go                         | 139 ++++++++
 internal/upload/uploads_test.go                    | 210 +++++++++++
 .../upstream/development_test.go                   |  13 +-
 handlers.go => internal/upstream/handlers.go       |  13 +-
 .../upstream/handlers_test.go                      |  24 +-
 internal/upstream/notfoundunless.go                |  11 +
 internal/upstream/routes.go                        | 101 ++++++
 internal/upstream/upstream.go                      | 102 ++++++
 internal/urlprefix/urlprefix.go                    |  35 ++
 internal/zipartifacts/codes.go                     |   7 +
 internal/zipartifacts/entry.go                     |  13 +
 internal/zipartifacts/metadata.go                  | 128 +++++++
 internal/zipartifacts/metadata_test.go             |  42 +++
 lfs.go                                             |  79 -----
 main.go                                            | 107 +-----
 main_test.go                                       | 390 +++++++++++++++++++--
 proxy.go                                           |  65 ----
 proxy_test.go                                      |  71 ++--
 sendfile.go                                        |  78 -----
 support/path                                       |   2 +
 {test => testdata}/.gitkeep                        |   0
 testdata/artifacts-archive.zip                     | Bin 0 -> 119 bytes
 uploads.go                                         | 121 -------
 uploads_test.go                                    | 149 --------
 upstream.go                                        | 146 --------
 urlflag.go                                         |  25 ++
 70 files changed, 2955 insertions(+), 1368 deletions(-)
 delete mode 100644 artifacts.go
 delete mode 100644 authorization.go
 create mode 100644 cmd/gitlab-zip-cat/main.go
 create mode 100644 cmd/gitlab-zip-metadata/main.go
 delete mode 100644 debian/patches/modify-paths.patch
 delete mode 100644 debian/patches/series
 delete mode 100644 deploy_page.go
 delete mode 100644 development.go
 delete mode 100644 error_pages_test.go
 delete mode 100644 helpers.go
 delete mode 100644 helpers_test.go
 create mode 100644 internal/api/api.go
 create mode 100644 internal/artifacts/artifact_download.go
 create mode 100644 internal/artifacts/artifact_download_test.go
 create mode 100644 internal/artifacts/artifacts_upload.go
 create mode 100644 internal/artifacts/artifacts_upload_test.go
 create mode 100644 internal/artifacts/escape_quotes.go
 create mode 100644 internal/badgateway/roundtripper.go
 rename archive.go => internal/git/archive.go (65%)
 create mode 100644 internal/git/blob.go
 create mode 100644 internal/git/command.go
 rename git-http.go => internal/git/git-http.go (57%)
 create mode 100644 internal/helper/helpers.go
 rename logging.go => internal/helper/logging.go (63%)
 create mode 100644 internal/lfs/lfs.go
 create mode 100644 internal/proxy/proxy.go
 create mode 100644 internal/senddata/sendfile.go
 create mode 100644 internal/staticpages/deploy_page.go
 rename deploy_page_test.go => internal/staticpages/deploy_page_test.go (67%)
 rename error_pages.go => internal/staticpages/error_pages.go (73%)
 create mode 100644 internal/staticpages/error_pages_test.go
 rename servefile.go => internal/staticpages/servefile.go (59%)
 rename servefile_test.go => internal/staticpages/servefile_test.go (64%)
 create mode 100644 internal/staticpages/static.go
 create mode 100644 internal/testhelper/testhelper.go
 create mode 100644 internal/upload/uploads.go
 create mode 100644 internal/upload/uploads_test.go
 rename development_test.go => internal/upstream/development_test.go (64%)
 rename handlers.go => internal/upstream/handlers.go (66%)
 rename handlers_test.go => internal/upstream/handlers_test.go (72%)
 create mode 100644 internal/upstream/notfoundunless.go
 create mode 100644 internal/upstream/routes.go
 create mode 100644 internal/upstream/upstream.go
 create mode 100644 internal/urlprefix/urlprefix.go
 create mode 100644 internal/zipartifacts/codes.go
 create mode 100644 internal/zipartifacts/entry.go
 create mode 100644 internal/zipartifacts/metadata.go
 create mode 100644 internal/zipartifacts/metadata_test.go
 delete mode 100644 lfs.go
 delete mode 100644 proxy.go
 delete mode 100644 sendfile.go
 create mode 100755 support/path
 rename {test => testdata}/.gitkeep (100%)
 create mode 100644 testdata/artifacts-archive.zip
 delete mode 100644 uploads.go
 delete mode 100644 uploads_test.go
 delete mode 100644 upstream.go
 create mode 100644 urlflag.go

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ruby-extras/gitlab-workhorse.git



More information about the Pkg-ruby-extras-commits mailing list