From b72b23b78b80078df1a7991f6ca39942cb8cc5e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ra=C3=BAl=20Kripalani?= Date: Thu, 11 Apr 2019 21:11:16 +0100 Subject: [PATCH] farewell gx; thanks for serving us well. --- .gx/lastpubver | 1 - .travis.yml | 2 -- Makefile | 26 -------------------------- README.md | 4 ++++ package.json | 36 ------------------------------------ 5 files changed, 4 insertions(+), 65 deletions(-) delete mode 100644 .gx/lastpubver delete mode 100644 Makefile delete mode 100644 package.json diff --git a/.gx/lastpubver b/.gx/lastpubver deleted file mode 100644 index 76dfe74..0000000 --- a/.gx/lastpubver +++ /dev/null @@ -1 +0,0 @@ -0.2.2: Qme8kdM7thoCqLqd7GYCRqipoZJS64rhJo5MBcTpyWfsL9 diff --git a/.travis.yml b/.travis.yml index 4cfe98c..5163d69 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,7 +10,6 @@ env: global: - GOTFLAGS="-race" matrix: - - BUILD_DEPTYPE=gx - BUILD_DEPTYPE=gomod @@ -24,7 +23,6 @@ script: cache: directories: - - $GOPATH/src/gx - $GOPATH/pkg/mod - $HOME/.cache/go-build diff --git a/Makefile b/Makefile deleted file mode 100644 index 601c56d..0000000 --- a/Makefile +++ /dev/null @@ -1,26 +0,0 @@ -gx: - go get github.com/whyrusleeping/gx - go get github.com/whyrusleeping/gx-go - -deps: gx - gx --verbose install --global - gx-go rewrite - -publish: - gx-go rewrite --undo - - -SUPPORTED_OS = windows linux darwin freebsd openbsd netbsd -SUPPORTED_ARCH = 386 arm amd64p32 arm64 amd64 -XBUILD_TARGETS=$(foreach os,$(SUPPORTED_OS),$(foreach arch,$(SUPPORTED_ARCH),test-xbuild-$(os)/$(arch))) - -$(XBUILD_TARGETS): PLATFORM = $(subst /, ,$(patsubst test-xbuild-%,%,$@)) -$(XBUILD_TARGETS): GOOS = $(word 1,$(PLATFORM)) -$(XBUILD_TARGETS): GOARCH = $(word 2,$(PLATFORM)) -$(XBUILD_TARGETS): - @ if GOOS=$(GOOS) GOARCH=$(GOARCH) go version >/dev/null 2>&1 ; then \ - echo "building $(GOOS)/$(GOARCH)"; \ - GOOS=$(GOOS) GOARCH=$(GOARCH) go build; \ - fi - -test-xbuild: $(XBUILD_TARGETS) diff --git a/README.md b/README.md index ffb0254..b99bfa4 100644 --- a/README.md +++ b/README.md @@ -45,3 +45,7 @@ c, _ := reuse.Dial("tcp", "127.0.0.1:1234", "127.0.0.1:1235") ## Tested Tested on `darwin`, `linux`, and `windows`. + +--- + +The last gx published version of this module was: 0.2.2: Qme8kdM7thoCqLqd7GYCRqipoZJS64rhJo5MBcTpyWfsL9 diff --git a/package.json b/package.json deleted file mode 100644 index 391d13f..0000000 --- a/package.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "author": "whyrusleeping", - "bugs": { - "url": "https://github.com/libp2p/go-reuseport" - }, - "gx": { - "dvcsimport": "github.com/libp2p/go-reuseport" - }, - "gxDependencies": [ - { - "author": "The Go Authors", - "hash": "QmVGjyM9i2msKvLXwh9VosCTgP4mL91kC7hDmqnwTTx6Hu", - "name": "sys", - "version": "0.2.0" - }, - { - "author": "whyrusleeping", - "hash": "QmVmDhyTTUcQXFD1rRQ64fGLMSAoaQvNH3hwuaCFAPq2hy", - "name": "errors", - "version": "0.0.1" - }, - { - "author": "magik6k", - "hash": "QmPVkJMTeRC6iBByPWdrRkD3BE5UXsj5HPzb4kPqL186mS", - "name": "testify", - "version": "1.0.0" - } - ], - "gxVersion": "0.9.0", - "language": "go", - "license": "", - "name": "go-reuseport", - "releaseCmd": "git commit -a -m \"gx publish $VERSION\"", - "version": "0.2.2" -} - -- GitLab