Update vendor

This commit is contained in:
Ken-Håvard Lieng 2020-07-30 09:29:50 +02:00
parent 27142cc5c7
commit b92a9d2e5b
21 changed files with 1683 additions and 4 deletions

24
vendor/github.com/eyedeekay/goSam/Makefile generated vendored Normal file
View file

@ -0,0 +1,24 @@
USER_GH=eyedeekay
VERSION=0.32.22
packagename=gosam
echo:
@echo "type make version to do release $(VERSION)"
version:
gothub release -s $(GITHUB_TOKEN) -u $(USER_GH) -r $(packagename) -t v$(VERSION) -d "version $(VERSION)"
del:
gothub delete -s $(GITHUB_TOKEN) -u $(USER_GH) -r $(packagename) -t v$(VERSION)
tar:
tar --exclude .git \
--exclude .go \
--exclude bin \
--exclude examples \
-cJvf ../$(packagename)_$(VERSION).orig.tar.xz .
link:
rm -f ../goSam
ln -sf . ../goSam