www-servers/gitlab-pages:

added ebuild for gitlab-pages-0.4.0

Package-Manager: portage-2.3.3
This commit is contained in:
Manuel Friedli 2017-03-13 18:08:31 +01:00
parent 5d4a1b3cd6
commit 14c760842d
4 changed files with 106 additions and 1 deletions

View file

@ -0,0 +1,18 @@
diff --git a/src/gitlab.com/gitlab-org/gitlab-pages/Makefile b/src/gitlab.com/gitlab-org/gitlab-pages/Makefile
index 2c1b8e1..4c6feb0 100644
--- a/src/gitlab.com/gitlab-org/gitlab-pages/Makefile
+++ b/src/gitlab.com/gitlab-org/gitlab-pages/Makefile
@@ -1,12 +1,6 @@
-REVISION := $(shell git rev-parse --short HEAD || echo unknown)
-LAST_TAG := $(shell git describe --tags --abbrev=0)
-COMMITS := $(shell echo `git log --oneline $(LAST_TAG)..HEAD | wc -l`)
+REVISION := @@REVISION@@
VERSION := $(shell cat VERSION)
-ifneq (v$(VERSION),$(LAST_TAG))
- VERSION := $(shell echo $(VERSION)~beta.$(COMMITS).g$(REVISION))
-endif
-
GO_LDFLAGS ?= -X main.VERSION=$(VERSION) -X main.REVISION=$(REVISION)
GO_FILES ?= $(shell find . -name '*.go')