2019-04-22 03:20:33 +00:00
|
|
|
VERSION = $$(git describe --abbrev=0 --tags)
|
2019-12-31 19:44:45 +00:00
|
|
|
VERSION_DATE = $$(git log -1 --pretty='%ad' --date=format:'%Y-%m-%d' $(VERSION))
|
2019-04-23 07:36:51 +00:00
|
|
|
COMMIT_REV = $$(git rev-list -n 1 $(VERSION))
|
2019-04-22 03:20:33 +00:00
|
|
|
|
|
|
|
all: build
|
|
|
|
|
|
|
|
version:
|
|
|
|
@echo $(VERSION)
|
2018-03-30 23:34:52 +00:00
|
|
|
|
2019-04-23 07:36:51 +00:00
|
|
|
commit_rev:
|
|
|
|
@echo $(COMMIT_REV)
|
|
|
|
|
2019-06-26 04:42:07 +00:00
|
|
|
start:
|
2018-05-08 01:48:27 +00:00
|
|
|
go run main.go
|
|
|
|
|
2020-05-23 08:43:47 +00:00
|
|
|
deps-clean:
|
2019-12-31 02:08:13 +00:00
|
|
|
go clean -modcache
|
|
|
|
rm -rf vendor
|
|
|
|
|
2020-05-23 08:43:47 +00:00
|
|
|
deps-download:
|
2019-12-31 02:08:13 +00:00
|
|
|
GO111MODULE=on go mod download
|
2018-12-26 23:04:02 +00:00
|
|
|
GO111MODULE=on go mod vendor
|
|
|
|
|
2020-05-23 08:43:47 +00:00
|
|
|
deps: deps-clean deps-download
|
2019-06-10 02:43:24 +00:00
|
|
|
vendor: deps
|
|
|
|
|
2018-04-21 02:55:05 +00:00
|
|
|
debug:
|
|
|
|
DEBUG=1 go run main.go
|
|
|
|
|
2019-04-22 02:39:07 +00:00
|
|
|
build:
|
2019-06-09 06:49:26 +00:00
|
|
|
@go build -o bin/cointop main.go
|
2019-04-22 02:39:07 +00:00
|
|
|
|
2018-03-31 08:42:25 +00:00
|
|
|
# http://macappstore.org/upx
|
2020-05-23 08:43:47 +00:00
|
|
|
build-mac: clean-mac
|
2018-04-27 18:32:26 +00:00
|
|
|
env GOARCH=amd64 go build -ldflags "-s -w" -o bin/macos/cointop && upx bin/macos/cointop
|
|
|
|
|
2020-05-23 08:43:47 +00:00
|
|
|
build-linux: clean-linux
|
2018-05-11 08:47:05 +00:00
|
|
|
env GOOS=linux GOARCH=amd64 go build -ldflags "-s -w" -o bin/linux/cointop && upx bin/linux/cointop
|
2018-05-11 08:20:08 +00:00
|
|
|
|
2020-05-23 08:43:47 +00:00
|
|
|
build-multiple: clean
|
2018-04-01 05:41:03 +00:00
|
|
|
env GOARCH=amd64 go build -ldflags "-s -w" -o bin/cointop64 && upx bin/cointop64 && \
|
|
|
|
env GOARCH=386 go build -ldflags "-s -w" -o bin/cointop32 && upx bin/cointop32
|
2018-03-31 08:18:53 +00:00
|
|
|
|
2020-05-23 08:43:47 +00:00
|
|
|
clean-mac:
|
2018-05-11 08:44:32 +00:00
|
|
|
go clean && \
|
|
|
|
rm -rf bin/mac
|
|
|
|
|
2020-05-23 08:43:47 +00:00
|
|
|
clean-linux:
|
2018-05-11 08:44:32 +00:00
|
|
|
go clean && \
|
|
|
|
rm -rf bin/linux
|
|
|
|
|
2018-03-31 08:18:53 +00:00
|
|
|
clean:
|
2018-04-01 05:25:51 +00:00
|
|
|
go clean && \
|
2018-04-27 18:32:26 +00:00
|
|
|
rm -rf bin/
|
2018-04-03 07:20:30 +00:00
|
|
|
|
|
|
|
test:
|
2018-04-03 08:30:15 +00:00
|
|
|
go test ./...
|
2018-04-20 09:12:50 +00:00
|
|
|
|
2020-05-23 08:43:47 +00:00
|
|
|
cointop-test:
|
2018-04-28 00:07:13 +00:00
|
|
|
go run main.go -test
|
|
|
|
|
2020-05-23 08:43:47 +00:00
|
|
|
cointop-version:
|
2018-12-31 23:30:23 +00:00
|
|
|
go run main.go -version
|
|
|
|
|
2020-05-23 08:43:47 +00:00
|
|
|
cointop-clean:
|
2018-12-31 23:30:23 +00:00
|
|
|
go run main.go -clean
|
|
|
|
|
2020-05-23 08:43:47 +00:00
|
|
|
cointop-reset:
|
2018-12-31 23:30:23 +00:00
|
|
|
go run main.go -reset
|
|
|
|
|
2020-05-23 08:43:47 +00:00
|
|
|
snap-clean:
|
2018-04-20 09:39:45 +00:00
|
|
|
snapcraft clean
|
2018-05-08 08:00:17 +00:00
|
|
|
rm -f cointop_*.snap
|
2018-04-20 09:39:45 +00:00
|
|
|
|
2020-05-23 08:43:47 +00:00
|
|
|
snap-stage:
|
2019-12-26 03:04:52 +00:00
|
|
|
# https://github.com/elopio/go/issues/2
|
|
|
|
mv go.mod go.mod~ ;GO111MODULE=off snapcraft stage; mv go.mod~ go.mod
|
|
|
|
|
2020-05-23 08:43:47 +00:00
|
|
|
snap-install:
|
2019-12-26 03:04:52 +00:00
|
|
|
sudo apt install snapd
|
|
|
|
sudo snap install snapcraft --classic
|
2018-04-20 09:39:45 +00:00
|
|
|
|
2020-05-23 08:43:47 +00:00
|
|
|
snap-build: snap-clean snap-stage
|
2018-04-20 09:39:45 +00:00
|
|
|
snapcraft snap
|
2018-04-20 09:12:50 +00:00
|
|
|
|
2020-05-23 08:43:47 +00:00
|
|
|
snap-deploy:
|
2018-04-20 09:39:45 +00:00
|
|
|
snapcraft push cointop_*.snap --release stable
|
|
|
|
|
2020-05-23 08:43:47 +00:00
|
|
|
snap-remove:
|
2018-04-20 09:39:45 +00:00
|
|
|
snap remove cointop
|
2018-04-26 23:19:19 +00:00
|
|
|
|
2020-05-23 08:43:47 +00:00
|
|
|
snap-build-and-deploy: snap-build snap-deploy snap-clean
|
2018-06-23 09:12:22 +00:00
|
|
|
@echo "done"
|
|
|
|
|
2020-05-23 08:43:47 +00:00
|
|
|
snap: snap-build-and-deploy
|
2019-06-02 05:04:42 +00:00
|
|
|
|
2020-05-23 08:43:47 +00:00
|
|
|
flatpak-build:
|
2018-05-11 09:04:08 +00:00
|
|
|
flatpak-builder --force-clean build-dir com.github.miguelmota.Cointop.json
|
|
|
|
|
2020-05-23 08:43:47 +00:00
|
|
|
flatpak-run-test:
|
2018-05-11 09:04:08 +00:00
|
|
|
flatpak-builder --run build-dir com.github.miguelmota.Cointop.json cointop
|
|
|
|
|
2020-05-23 08:43:47 +00:00
|
|
|
flatpak-repo:
|
2018-05-11 09:04:08 +00:00
|
|
|
flatpak-builder --repo=repo --force-clean build-dir com.github.miguelmota.Cointop.json
|
|
|
|
|
2020-05-23 08:43:47 +00:00
|
|
|
flatpak-add:
|
2018-05-11 09:55:01 +00:00
|
|
|
flatpak --user remote-add --no-gpg-verify cointop-repo repo
|
|
|
|
|
2020-05-23 08:43:47 +00:00
|
|
|
flatpak-remove:
|
2018-05-11 10:12:30 +00:00
|
|
|
flatpak --user remote-delete cointop-repo
|
|
|
|
|
2020-05-23 08:43:47 +00:00
|
|
|
flatpak-install:
|
2018-05-11 09:55:01 +00:00
|
|
|
flatpak --user install cointop-repo com.github.miguelmota.Cointop
|
|
|
|
|
2020-05-23 08:43:47 +00:00
|
|
|
flatpak-run:
|
2018-05-11 09:55:01 +00:00
|
|
|
flatpak run com.github.miguelmota.Cointop
|
2018-05-11 09:04:08 +00:00
|
|
|
|
2020-05-23 08:43:47 +00:00
|
|
|
flatpak-update-version:
|
2019-12-31 19:44:45 +00:00
|
|
|
xmlstarlet ed --inplace -u '/component/releases/release/@version' -v $(VERSION) .flathub/com.github.miguelmota.Cointop.appdata.xml
|
|
|
|
xmlstarlet ed --inplace -u '/component/releases/release/@date' -v $(VERSION_DATE) .flathub/com.github.miguelmota.Cointop.appdata.xml
|
|
|
|
|
2020-05-23 08:43:47 +00:00
|
|
|
rpm-install-deps:
|
2018-06-23 09:46:17 +00:00
|
|
|
sudo dnf install -y rpm-build
|
|
|
|
sudo dnf install -y dnf-plugins-core
|
|
|
|
|
2020-05-23 08:43:47 +00:00
|
|
|
rpm-cp-specs:
|
2018-06-23 09:47:47 +00:00
|
|
|
cp .rpm/cointop.spec ~/rpmbuild/SPECS/
|
2018-05-21 08:23:39 +00:00
|
|
|
|
2020-05-23 08:43:47 +00:00
|
|
|
rpm-build:
|
2018-05-21 17:18:00 +00:00
|
|
|
rpmbuild -ba ~/rpmbuild/SPECS/cointop.spec
|
|
|
|
|
2020-05-23 08:43:47 +00:00
|
|
|
rpm-lint:
|
2018-05-21 17:18:00 +00:00
|
|
|
rpmlint ~/rpmbuild/SPECS/cointop.spec
|
2018-05-21 08:23:39 +00:00
|
|
|
|
2020-05-23 08:43:47 +00:00
|
|
|
rpm-dirs:
|
2020-01-03 09:39:55 +00:00
|
|
|
mkdir -p ~/rpmbuild
|
2018-06-23 09:46:17 +00:00
|
|
|
mkdir -p ~/rpmbuild/{BUILD,BUILDROOT,RPMS,SOURCES,SPECS,SRPMS}
|
2020-01-03 09:39:55 +00:00
|
|
|
chmod -R a+rwx ~/rpmbuild
|
2018-06-23 09:46:17 +00:00
|
|
|
|
2020-05-23 08:43:47 +00:00
|
|
|
rpm-download:
|
2018-12-26 08:00:12 +00:00
|
|
|
wget https://github.com/miguelmota/cointop/archive/$(VERSION).tar.gz -O ~/rpmbuild/SOURCES/$(VERSION).tar.gz
|
2018-06-23 10:00:53 +00:00
|
|
|
|
2020-05-23 08:43:47 +00:00
|
|
|
copr-install-cli:
|
2018-06-23 09:46:17 +00:00
|
|
|
sudo dnf install -y copr-cli
|
2018-05-21 08:45:05 +00:00
|
|
|
|
2020-05-23 08:43:47 +00:00
|
|
|
copr-create-project:
|
2018-05-21 08:23:39 +00:00
|
|
|
copr-cli create cointop --chroot fedora-rawhide-x86_64
|
|
|
|
|
2020-05-23 08:43:47 +00:00
|
|
|
copr-build:
|
2018-05-21 08:23:39 +00:00
|
|
|
copr-cli build cointop ~/rpmbuild/SRPMS/cointop-*.rpm
|
2018-06-23 10:00:53 +00:00
|
|
|
rm -rf ~/rpmbuild/SRPMS/cointop-*.rpm
|
2018-05-21 08:23:39 +00:00
|
|
|
|
2020-05-23 08:43:47 +00:00
|
|
|
copr-deploy: rpm-dirs rpm-cp-specs rpm-download rpm-build copr-build
|
2019-04-22 03:20:33 +00:00
|
|
|
|
2020-05-23 08:43:47 +00:00
|
|
|
brew-clean: brew-remove
|
2018-04-27 18:32:26 +00:00
|
|
|
brew cleanup --force cointop
|
|
|
|
brew prune
|
|
|
|
|
2020-05-23 08:43:47 +00:00
|
|
|
brew-remove:
|
2018-04-27 18:32:26 +00:00
|
|
|
brew uninstall --force cointop
|
2018-04-26 23:19:19 +00:00
|
|
|
|
2020-05-23 08:43:47 +00:00
|
|
|
brew-build: brew-remove
|
2018-04-26 23:19:19 +00:00
|
|
|
brew install --build-from-source cointop.rb
|
2018-04-27 18:32:26 +00:00
|
|
|
|
2020-05-23 08:43:47 +00:00
|
|
|
brew-audit:
|
2018-04-27 18:32:26 +00:00
|
|
|
brew audit --strict cointop.rb
|
2018-04-27 19:09:34 +00:00
|
|
|
|
2020-05-23 08:43:47 +00:00
|
|
|
brew-test:
|
2018-05-16 01:56:26 +00:00
|
|
|
brew test cointop.rb
|
|
|
|
|
2020-05-23 08:43:47 +00:00
|
|
|
brew-tap:
|
2018-06-08 00:46:20 +00:00
|
|
|
brew tap cointop/cointop https://github.com/miguelmota/cointop
|
|
|
|
|
2020-05-23 08:43:47 +00:00
|
|
|
brew-untap:
|
2018-06-08 00:46:20 +00:00
|
|
|
brew untap cointop/cointop
|
|
|
|
|
2020-05-23 08:43:47 +00:00
|
|
|
git-rm-large:
|
2018-04-27 19:09:34 +00:00
|
|
|
java -jar bfg.jar --strip-blobs-bigger-than 200K .
|
|
|
|
|
2020-05-23 08:43:47 +00:00
|
|
|
git-repack:
|
2018-04-27 19:09:34 +00:00
|
|
|
git reflog expire --expire=now --all
|
|
|
|
git fsck --full --unreachable
|
|
|
|
git repack -A -d
|
|
|
|
git gc --aggressive --prune=now
|
2018-05-21 07:42:32 +00:00
|
|
|
|
|
|
|
release:
|
|
|
|
rm -rf dist
|
2019-11-18 06:06:38 +00:00
|
|
|
VERSION=$(VERSION) goreleaser
|
2020-05-25 21:32:44 +00:00
|
|
|
|
|
|
|
docker-build:
|
|
|
|
docker build -t cointop/cointop .
|
|
|
|
|
|
|
|
docker-run:
|
|
|
|
docker run -it cointop/cointop
|
|
|
|
|
|
|
|
docker-push:
|
|
|
|
docker push cointop/cointop:latest
|