| CARVIEW |
Select Language
HTTP/2 200
expires: Thu, 19 Nov 1981 08:52:00 GMT
cache-control: no-store, no-cache, must-revalidate
pragma: no-cache
set-cookie: PHPSESSID=dkm7ms417ehq00npntfddifev2; path=/
content-type: text/html; charset=UTF-8
date: Sun, 28 Dec 2025 07:42:16 GMT
server: Apache
pkgsrc.se | The NetBSD package collection
archivers
audio
benchmarks
biology
cad
chat
comms
converters
cross
crosspkgtools
databases
devel
doc
editors
emulators
filesystems
finance
fonts
games
geography
graphics
ham
inputmethod
lang
go114
mail
math
mbone
meta-pkgs
misc
multimedia
net
news
parallel
pkgtools
print
regress
security
shells
sysutils
textproc
time
wip
wm
www
x11
* = Virtual Category
Path to this page:
NOTICE: This package has been removed from pkgsrc
./lang/go114, The Go programming language
[
Branch: CURRENT, Version: 1.14.14, Package name: go114-1.14.14, Maintainer: bsiegert
The Go programming language is an open source project to make
programmers more productive.
Go is expressive, concise, clean, and efficient. Its concurrency
mechanisms make it easy to write programs that get the most out of
multicore and networked machines, while its novel type system enables
flexible and modular program construction. Go compiles quickly to
machine code yet has the convenience of garbage collection and the power
of run-time reflection. It's a fast, statically typed, compiled language
that feels like a dynamically typed, interpreted language.
Required to run:
[lang/perl5] [shells/bash]
Required to build:
[pkgtools/cwrappers] [lang/go14]
RMD160: 3394b7b351aeb074a1fd926a4003742857df965c
Filesize: 22029.036 KB
Navigation:
-
Browse pkgsrc
(this page)
archivers
audio
benchmarks
biology
cad
chat
comms
converters
cross
crosspkgtools
databases
devel
doc
editors
emulators
filesystems
finance
fonts
games
geography
graphics
ham
inputmethod
lang
go114math
mbone
meta-pkgs
misc
multimedia
net
news
parallel
pkgtools
regress
security
shells
sysutils
textproc
time
wip
wm
www
x11
* = Virtual Category
Path to this page:
NOTICE: This package has been removed from pkgsrc
./lang/go114, The Go programming language
[
CVSweb ] [
Homepage ] [
RSS ] [
Required by ]
Branch: CURRENT, Version: 1.14.14, Package name: go114-1.14.14, Maintainer: bsiegert
The Go programming language is an open source project to make
programmers more productive.
Go is expressive, concise, clean, and efficient. Its concurrency
mechanisms make it easy to write programs that get the most out of
multicore and networked machines, while its novel type system enables
flexible and modular program construction. Go compiles quickly to
machine code yet has the convenience of garbage collection and the power
of run-time reflection. It's a fast, statically typed, compiled language
that feels like a dynamically typed, interpreted language.
Required to run:
[lang/perl5] [shells/bash]
Required to build:
[pkgtools/cwrappers] [lang/go14]
Master sites:
SHA1: 5bfb2ce853ede2d63ba75760cc2b455554599152RMD160: 3394b7b351aeb074a1fd926a4003742857df965c
Filesize: 22029.036 KB
Version history: (Expand)
- (2021-03-21) Package deleted from pkgsrc
- (2021-01-22) Updated to version: go114-1.14.14
- (2020-11-13) Updated to version: go114-1.14.12
- (2020-11-09) Updated to version: go114-1.14.11
- (2020-10-15) Updated to version: go114-1.14.10
- (2020-09-03) Updated to version: go114-1.14.8
CVS history: (Expand)
| 2021-03-20 10:28:34 by Benny Siegert | Files touched by this commit (15) | |
Log message: We say goodbye to Go 1.14. The policy of the Go project is to support the last two stable branches, so 1.14 is end of life. |
| 2021-02-18 12:05:42 by Thomas Klausner | Files touched by this commit (3) |
Log message: go11*: switch from gtar to using bsdtar Tested on NetBSD current. Ok bsiegert |
| 2021-01-22 21:08:32 by Benny Siegert | Files touched by this commit (3) |
Log message: Update go114 to 1.14.14. * cmd/go: packages using cgo can cause arbitrary code execution at build time The go command may execute arbitrary code at build time when cgo is in use on Windows. This may occur when running “go get”, or any other command that builds code. Only users who build untrusted code (and don’t execute it) are affected. In addition to Windows users, this can also affect Unix users who have “.” listed explicitly in their PATH and are running “go get” or build commands outside of a module or with module mode disabled. Thanks to RyotaK (https://twitter.com/ryotkak) for reporting this issue. This issue is CVE-2021-3115 and Go issue golang.org/issue/43783. For more background on the cmd/go change and help deciding whether your own programs might have similar issues, see our blog post at https://blog.golang.org/path-security. * crypto/elliptic: incorrect operations on the P-224 curve The P224() Curve implementation can in rare circumstances generate incorrect outputs, including returning invalid points from ScalarMult. The crypto/x509 and golang.org/x/crypto/ocsp (but not crypto/tls) packages support P-224 ECDSA keys, but they are not supported by publicly trusted certificate authorities. No other standard library or golang.org/x/crypto package supports or uses the P-224 curve. The incorrect output was found by the elliptic-curve-differential-fuzzer project running on OSS-Fuzz and reported by Philippe Antoine (Catena cyber). This issue is CVE-2021-3114 and Go issue golang.org/issue/43786. |
| 2020-11-13 19:27:35 by Benny Siegert | Files touched by this commit (3) |
Log message: Update go114 to 1.14.12 (security fix). - math/big: panic during recursive division of very large numbers A number of math/big.Int methods (Div, Exp, DivMod, Quo, Rem, QuoRem, Mod, ModInverse, ModSqrt, Jacobi, and GCD) can panic when provided crafted large inputs. For the panic to happen, the divisor or modulo argument must be larger than 3168 bits (on 32-bit architectures) or 6336 bits (on 64-bit architectures). Multiple math/big.Rat <https://pkg.go.dev/math/big#Rat> methods are similarly affected. crypto/rsa.VerifyPSS <https://pkg.go.dev/crypto/rsa#VerifyPSS>, crypto/rsa.VerifyPKCS1v15 <https://pkg.go.dev/crypto/rsa#VerifyPKCS1v15>, and crypto/dsa.Verify <https://pkg.go.dev/crypto/dsa#Verify> may panic when provided crafted public keys and signatures. crypto/ecdsa and crypto/elliptic operations may only be affected if custom CurveParams <https://pkg.go.dev/crypto/elliptic#CurveParams> with unusually large field sizes (several times larger than the largest supported curve, P-521) are in use. Using crypto/x509.Verify on a crafted X.509 certificate chain can lead to a panic, even if the certificates don’t chain to a trusted root. The chain can be delivered via a crypto/tls connection to a client, or to a server that accepts and verifies client certificates. net/http clients can be made to crash by an HTTPS server, while net/http servers that accept client certificates will recover the panic and are unaffected. Moreover, an application might crash invoking crypto/x509.(*CertificateRequest).CheckSignature on an X.509 certificate request or during a golang.org/x/crypto/otr conversation. Parsing a golang.org/x/crypto/openpgp Entity or verifying a signature may crash. Finally, a golang.org/x/crypto/ssh client can panic due to a malformed host key, while a server could panic if either PublicKeyCallback accepts a malformed public key, or if IsUserAuthority accepts a certificate with a malformed public key. Thanks to the Go Ethereum team and the OSS-Fuzz project for reporting this. Thanks to Rémy Oudompheng and Robert Griesemer for their help developing and validating the fix. This issue is CVE-2020-28362 and Go issue golang.org/issue/42552. - cmd/go: arbitrary code execution at build time through cgo The go command may execute arbitrary code at build time when cgo is in use. This may occur when running go get on a malicious package, or any other command that builds untrusted code. This can be caused by malicious gcc flags specified via a #cgo directive, or by a malicious symbol name in a linked object file. These issues are CVE-2020-28367 and CVE-2020-28366, and Go issues golang.org/issue/42556 and golang.org/issue/42559 respectively. |
| 2020-11-08 21:12:31 by Benny Siegert | Files touched by this commit (2) |
Log message: Update go114 to 1.14.11 go1.14.11 (released 2020/11/05) includes fixes to the runtime, and the net/http and time packages. See the Go 1.14.11 milestone on our issue tracker for details. |
| 2020-10-15 14:01:14 by Benny Siegert | Files touched by this commit (3) |
Log message: Update go114 to 1.14.10. go1.14.9 (released 2020/09/09) includes fixes to the compiler, linker, runtime, documentation, and the net/http and testing packages. See the Go 1.14.9 milestone on our issue tracker for details. go1.14.10 (released 2020/10/14) includes fixes to the compiler, runtime, and the plugin and testing packages. See the Go 1.14.10 milestone on our issue tracker for details. |
| 2020-09-03 09:03:27 by Benny Siegert | Files touched by this commit (3) |
Log message: Update go114 to 1.14.8. go1.14.8 (released 2020/09/01) includes security fixes to the net/http/cgi and net/http/fcgi packages. See the Go 1.14.8 milestone on our issue tracker for details. |
| 2020-08-31 20:13:29 by Thomas Klausner | Files touched by this commit (3631) |
Log message: *: bump PKGREVISION for perl-5.32. |
