aboutsummaryrefslogtreecommitdiff
path: root/www/gitea
diff options
context:
space:
mode:
authorAdam Weinberger <adamw@FreeBSD.org>2020-06-28 10:04:56 +0000
committerAdam Weinberger <adamw@FreeBSD.org>2020-06-28 10:04:56 +0000
commit04cfe3a23c9e9f323f77ea6c1650b8f8d6d40999 (patch)
tree41adf9ac2596e27d09adeb509f33ee814e0ad8a6 /www/gitea
parenta36309afcae00a7cbcdb158f7ccec908fd974d0d (diff)
downloadports-04cfe3a23c9e9f323f77ea6c1650b8f8d6d40999.tar.gz
ports-04cfe3a23c9e9f323f77ea6c1650b8f8d6d40999.zip
Notes
Diffstat (limited to 'www/gitea')
-rw-r--r--www/gitea/Makefile3
-rw-r--r--www/gitea/distinfo6
-rw-r--r--www/gitea/files/patch-Makefile20
-rw-r--r--www/gitea/files/patch-templates_repo_wiki_view.tmpl11
4 files changed, 4 insertions, 36 deletions
diff --git a/www/gitea/Makefile b/www/gitea/Makefile
index 467cabe0981a..e7591a35e7f0 100644
--- a/www/gitea/Makefile
+++ b/www/gitea/Makefile
@@ -2,8 +2,7 @@
PORTNAME= gitea
DISTVERSIONPREFIX= v
-DISTVERSION= 1.11.6
-PORTREVISION= 1
+DISTVERSION= 1.11.8
CATEGORIES= www
MASTER_SITES= https://github.com/go-gitea/gitea/releases/download/${DISTVERSIONPREFIX}${DISTVERSION}/
DISTNAME= gitea-src-${DISTVERSION}
diff --git a/www/gitea/distinfo b/www/gitea/distinfo
index b3d96a4c5fdf..1e7764efd54b 100644
--- a/www/gitea/distinfo
+++ b/www/gitea/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1590915922
-SHA256 (gitea-src-1.11.6.tar.gz) = 1ac3880df7f38e411376c284959d8f5e1e1d9137ac423fe20d1e02ac5cc1de86
-SIZE (gitea-src-1.11.6.tar.gz) = 68915319
+TIMESTAMP = 1593337278
+SHA256 (gitea-src-1.11.8.tar.gz) = f4f965bd8f7da9320b6693c249eab07ff8baf5ef81649fd9025133f91391bab8
+SIZE (gitea-src-1.11.8.tar.gz) = 68927493
diff --git a/www/gitea/files/patch-Makefile b/www/gitea/files/patch-Makefile
deleted file mode 100644
index dd9f92d363d4..000000000000
--- a/www/gitea/files/patch-Makefile
+++ /dev/null
@@ -1,20 +0,0 @@
---- Makefile.orig 2020-03-06 17:18:36.000000000 +0000
-+++ Makefile 2020-03-18 20:56:00.588102000 +0000
-@@ -123,7 +123,7 @@
-
- .PHONY: go-check
- go-check:
-- $(eval GO_VERSION := $(shell printf "%03d%03d%03d" $(shell go version | grep -Eo '[0-9]+\.?[0-9]+?\.?[0-9]?[[:space:]]' | tr '.' ' ');))
-+ $(eval GO_VERSION := $(shell printf "%03d%03d%03d" $(shell go version | grep -Eo 'go[0-9\.]+' | tr -d go | tr '.' ' ');))
- @if [ "$(GO_VERSION)" -lt "001011000" ]; then \
- echo "Gitea requires Go 1.11.0 or greater to build. You can get it at https://golang.org/dl/"; \
- exit 1; \
-@@ -138,7 +138,7 @@
-
- .PHONY: node-check
- node-check:
-- $(eval NODE_VERSION := $(shell printf "%03d%03d%03d" $(shell node -v | grep -Eo '[0-9]+\.?[0-9]+?\.?[0-9]?' | tr '.' ' ');))
-+ $(eval NODE_VERSION := $(shell printf "%03d%03d%03d" $(shell node -v | grep -Eo '[0-9]+\.?[0-9]+\.?[0-9]+' | tr '.' ' ');))
- $(eval NPM_MISSING := $(shell hash npm > /dev/null 2>&1 || echo 1))
- @if [ "$(NODE_VERSION)" -lt "010000000" -o "$(NPM_MISSING)" = "1" ]; then \
- echo "Gitea requires Node.js 10.0.0 or greater and npm to build. You can get it at https://nodejs.org/en/download/"; \
diff --git a/www/gitea/files/patch-templates_repo_wiki_view.tmpl b/www/gitea/files/patch-templates_repo_wiki_view.tmpl
deleted file mode 100644
index 2b06ef5470c8..000000000000
--- a/www/gitea/files/patch-templates_repo_wiki_view.tmpl
+++ /dev/null
@@ -1,11 +0,0 @@
---- templates/repo/wiki/view.tmpl.orig 2020-04-29 07:06:03 UTC
-+++ templates/repo/wiki/view.tmpl
-@@ -45,7 +45,7 @@
- {{else if and (not $.DisableSSH) (or $.IsSigned $.ExposeAnonSSH)}}
- <input id="repo-clone-url" value="{{$.WikiCloneLink.SSH}}" readonly>
- {{end}}
-- {{if or ((not $.DisableHTTP) (and (not $.DisableSSH) (or $.IsSigned $.ExposeAnonSSH)))}}
-+ {{if or (not $.DisableHTTP) (and (not $.DisableSSH) (or $.IsSigned $.ExposeAnonSSH))}}
- <button class="ui basic icon button poping up clipboard" id="clipboard-btn" data-original="{{.i18n.Tr "repo.copy_link"}}" data-success="{{.i18n.Tr "repo.copy_link_success"}}" data-error="{{.i18n.Tr "repo.copy_link_error"}}" data-content="{{.i18n.Tr "repo.copy_link"}}" data-variation="inverted tiny" data-clipboard-target="#repo-clone-url">
- <i class="octicon octicon-clippy"></i>
- </button>