Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | community/go: upgrade to 1.13.3 | Natanael Copa | 2019-10-18 | 1 | -2/+2 |
| | |||||
* | community/go: add secfixes comment for CVE-2019-17596 | Natanael Copa | 2019-10-17 | 1 | -0/+2 |
| | |||||
* | community/go: upgrade to 1.13.2 | Natanael Copa | 2019-10-17 | 1 | -2/+2 |
| | |||||
* | community/go: add secfixes comment for CVE-2019-16276 | Natanael Copa | 2019-10-03 | 1 | -0/+2 |
| | |||||
* | community/go: upgrade to 1.13.1 (CVE-2019-16276) | Joe Searle | 2019-10-03 | 1 | -3/+3 |
| | |||||
* | community/go: fix build on s390x | Natanael Copa | 2019-09-20 | 2 | -1/+14 |
| | | | | disable tests without libgcc on s390x | ||||
* | community/go: upgrade to 1.13 | Chloe Kudryavtsev | 2019-09-18 | 1 | -2/+2 |
| | |||||
* | community/go: add comment reminding upgrader of rebuilds | Sören Tempel | 2019-08-18 | 1 | -0/+1 |
| | |||||
* | community/go: security upgrade to 1.12.8 | Natanael Copa | 2019-08-14 | 1 | -2/+6 |
| | | | | | | | | - CVE-2019-9512 - CVE-2019-9514 - CVE-2019-14809 fixes #10728 | ||||
* | community/go: upgrade to 1.12.7 | Leo | 2019-07-12 | 1 | -9/+6 |
| | | | Closes GH-9391 | ||||
* | community/go: upgrade to 1.12.6 | Natanael Copa | 2019-06-12 | 1 | -2/+2 |
| | |||||
* | community/go: re-add contrib tag | Eivind Uggedal | 2019-06-05 | 1 | -0/+1 |
| | | | | I brought go to the tree in abfdfd32d2c6. | ||||
* | community/go: don't die in global scope | Natanael Copa | 2019-05-08 | 1 | -1/+1 |
| | | | | | we have tools that parse APKBUILDs in aports so we should never die from global scope. | ||||
* | community/go: upgrade to 1.12.5 | Roberto Oliveira | 2019-05-08 | 1 | -2/+2 |
| | |||||
* | community/go: upgrade to 1.12.4 | Andy Postnikov | 2019-04-20 | 1 | -2/+2 |
| | |||||
* | community/go: upgrade to 1.12.3 | Natanael Copa | 2019-04-09 | 1 | -2/+2 |
| | |||||
* | community/go: add binutils-go to checkdepends | Sören Tempel | 2019-03-25 | 1 | -0/+1 |
| | | | | | Some tests call gcc with -fuse-ld=gold these tests fail when binutils-gold isn't installed. | ||||
* | community/go: upgrade to 1.12.1 | Claas Störtenbecker | 2019-03-25 | 1 | -2/+2 |
| | |||||
* | community/go: enable build on armel | alpine-mips-patches | 2019-02-05 | 1 | -1/+2 |
| | | | | | | | | | | | | | There were ARMv5TE boards with 512 MiB (as in RPi1), that is enough for go. Also remove go-bootstrap from makedepends. In a cross-build it ends up with depending on itself which is safe (abuild handles this) but ugly. In normal build it is duplicated which is safe but ugly too. Do not bump pkgrel since - no previous armel packages exist; - makedepends change makes no difference for the created apks. | ||||
* | community/go: security upgrade to 1.11.5 (CVE-2019-6486) | Natanael Copa | 2019-01-29 | 1 | -3/+5 |
| | | | | fixes #9937 | ||||
* | community/go: fix target float ABI on mips* | alpine-mips-patches | 2018-12-19 | 1 | -4/+4 |
| | |||||
* | community/go: upgrade to 1.11.4 | Natanael Copa | 2018-12-18 | 1 | -3/+3 |
| | |||||
* | Revert "community/go: Fix the `cannot find runtime/cgo`-warning" | Natanael Copa | 2018-11-22 | 2 | -18/+7 |
| | | | | | | | This change broke building of various packages, like docker and gomplate. This reverts commit 9686793792a2c40a872ebbb2b86fa537f22491ad. | ||||
* | community/go: upgrade to 1.11.2 | Natanael Copa | 2018-11-14 | 1 | -2/+2 |
| | |||||
* | community/go: upgrade to 1.11.1 | Andy Postnikov | 2018-10-14 | 1 | -3/+3 |
| | |||||
* | community/go: disable tests entirely on x86 | Sören Tempel | 2018-10-08 | 1 | -0/+4 |
| | | | | Various tests fail on this arch, fixing them will be a lot of work. | ||||
* | community/go: disable os/exec test as well | Sören Tempel | 2018-10-08 | 1 | -1/+1 |
| | | | | | | | | Passes locally (even in abuild rootbld) but fails on the builders with the following error message: testing: can't write /tmp/go-build314848300/b744/testlog.txt: write /tmp/go-build314848300/b744/testlog.txt: broken pipe | ||||
* | community/go: partially enable the test suite | Sören Tempel | 2018-10-07 | 1 | -6/+8 |
| | | | | Still better than compiling and running a 'Hello World' example. | ||||
* | community/go: remove inaccurate comment | Sören Tempel | 2018-10-07 | 1 | -4/+0 |
| | |||||
* | community/go: Fix the `cannot find runtime/cgo`-warning | Sören Tempel | 2018-10-07 | 2 | -7/+18 |
| | | | | | | | | | | | | | | This warning seems to be emitted since we build with `-shared` for PIE by default through our `default-buildmode-pie.patch`. Building with shared linkage requires depending on CGO. The patch, however, doesn't force a dependency on CGO. As with android we need to force external linkage in order to always depend on CGO thereby resolving this warning. I am unsure whether this is really the best way to fix the problem since I don't know enough about the internals of the go compiler. However, I am under the impression that the person who originally committed the patch isn't familiar with the compiler internals either. Thus it's probably ok to push this as is. | ||||
* | community: (Bulk change) Update source urls to https using HTTPS Everywhere | J0WI | 2018-10-06 | 1 | -1/+1 |
| | |||||
* | community/go: fix bootstrap | Timo Teräs | 2018-09-24 | 1 | -1/+0 |
| | | | | | the provides is setup correctly later on based on cross compile variables | ||||
* | community/go: remove tools subpackage | Sören Tempel | 2018-09-04 | 1 | -36/+2 |
| | | | | | | | | According to [0] it is no longer necessary to distribute the tools with the package itself. Additionally, other distributions such as Arch Linux and Void Linux no longer ship the tools with the go package itself. [0]: https://gitlab.informatik.uni-bremen.de/BEDUINO-Master/projektbericht/merge_requests/64#note_118786 | ||||
* | community/go: remove cover from _gotools | Sören Tempel | 2018-09-04 | 1 | -1/+1 |
| | | | | See: 33f4f12cb690a294c334d3e87b2e3c3daccd7a3c | ||||
* | community/go: add comment to set-external-linker.patch | Sören Tempel | 2018-09-04 | 2 | -1/+3 |
| | |||||
* | community/go: strip the binaries | Sören Tempel | 2018-09-04 | 1 | -2/+1 |
| | | | | | | | | | It should be possible to strip go binaries these days [0]: > We don't intentionally do anything that would make stripping a binary not OK, and strip has worked for the past five years or so. [0]: https://groups.google.com/forum/?_escaped_fragment_=topic/golang-dev/ABppMOjYP6w#!topic/golang-dev/ABppMOjYP6w | ||||
* | community/go: upgrade to 1.11 | Natanael Copa | 2018-08-28 | 1 | -4/+4 |
| | |||||
* | community/go: remove compiler cache files | Sören Tempel | 2018-08-27 | 1 | -1/+2 |
| | |||||
* | community/go: upgrade to 1.10.3 | Andy Postnikov | 2018-07-18 | 1 | -4/+4 |
| | |||||
* | community/go: upgrade to 1.10.1 | Andy Postnikov | 2018-04-05 | 1 | -4/+4 |
| | |||||
* | community/go: update the tools | Natanael Copa | 2018-02-28 | 1 | -4/+5 |
| | |||||
* | community/go: upgrade to 1.10 | Natanael Copa | 2018-02-28 | 4 | -114/+86 |
| | |||||
* | community/go: security upgrade to 1.9.4 | Sören Tempel | 2018-02-11 | 1 | -4/+8 |
| | | | | CVE-2018-6574 | ||||
* | community/go: add mips arches | Nils Andreas Svee | 2017-12-11 | 1 | -0/+4 |
| | |||||
* | Remove Eivind Uggedal as a maintainer | Sören Tempel | 2017-11-01 | 1 | -2/+2 |
| | | | | He hasn't been active since 2015. | ||||
* | community/go: upgrade to 1.9.2 | Roberto Oliveira | 2017-10-26 | 2 | -706/+4 |
| | | | | | Removed a ppc64le patch that was backported from upstream and is now part of go 1.9.2 | ||||
* | community/go: upgrade to 1.9.1 | Natanael Copa | 2017-10-12 | 1 | -4/+4 |
| | |||||
* | Revert "community/go: upgrade to 1.9.1" | Sören Tempel | 2017-10-08 | 1 | -4/+4 |
| | | | | | | | | | | Even though the upgrade successfully compiled on my x86_64 laptop it seems to fail on the x86_64 builder for some reason. Reverting the upgrade until I figure out what's going on. See: http://build.alpinelinux.org/buildlogs/build-edge-x86_64/community/go/go-1.9.1-r0.log This reverts commit a51cc78c60ec483e63747c15c8321a4996db7fd0. | ||||
* | community/go: upgrade to 1.9.1 | Sören Tempel | 2017-10-08 | 1 | -4/+4 |
| | |||||
* | community/go: backport ppc64le fix for regression in PPC64.rules | Roberto Oliveira | 2017-09-26 | 2 | -2/+704 |
| | | | | | | | When a MOVDstorezero (8 bytes) is used the offset field in the instruction must be a multiple of 4. This situation had been corrected in the rules for other types of stores but not for the zero case. |