From 25e6e6d86a101658fd75d48a3782cd70e0733dc4 Mon Sep 17 00:00:00 2001 From: "Mikhail f. Shiryaev" Date: Thu, 26 May 2022 01:06:06 +0200 Subject: [PATCH] WIP rename module --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index d00b2261a..95abb382f 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ NAME:=graphite-clickhouse MAINTAINER:="Roman Lomonosov " DESCRIPTION:="Graphite cluster backend with ClickHouse support" -MODULE:=github.com/lomik/graphite-clickhouse +MODULE:=github.com/go-graphite/graphite-clickhouse GO ?= go export GOFLAGS += -mod=vendor @@ -49,7 +49,7 @@ test: gox-build: rm -rf out mkdir -p out - gox -os="linux" -arch="amd64" -arch="arm64" -output="out/$(NAME)-{{.OS}}-{{.Arch}}" github.com/lomik/$(NAME) + gox -os="linux" -arch="amd64" -arch="arm64" -output="out/$(NAME)-{{.OS}}-{{.Arch}}" $(MODULE) ls -la out/ mkdir -p out/root/etc/$(NAME)/ ./out/$(NAME)-linux-amd64 -config-print-default > out/root/etc/$(NAME)/$(NAME).conf @@ -65,7 +65,7 @@ fpm-build-deb: fpm -s dir -t deb -n $(NAME) -v $(VERSION) \ --deb-priority optional --category admin \ --force \ - --url https://github.com/lomik/$(NAME) \ + --url https://$(MODULE) \ --description $(DESCRIPTION) \ -m $(MAINTAINER) \ --license "MIT" \ @@ -81,7 +81,7 @@ fpm-build-rpm: fpm -s dir -t rpm -n $(NAME) -v $(VERSION) \ --force \ --rpm-compression bzip2 --rpm-os linux \ - --url https://github.com/lomik/$(NAME) \ + --url https://$(MODULE) \ --description $(DESCRIPTION) \ -m $(MAINTAINER) \ --license "MIT" \