update vendor files

This commit is contained in:
idk 2020-11-12 20:24:39 -05:00
commit edc20572c7
No known key found for this signature in database
GPG key ID: D75C03B39B5E14E1
22 changed files with 1786 additions and 80 deletions

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

@ -0,0 +1,27 @@
USER_GH=eyedeekay
VERSION=0.32.27
packagename=gosam
echo: fmt
@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
fmt:
gofmt -w -s *.go */*.go