Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

go1.14-doc-1.14.2-lp152.1.1 RPM for armv7hl

From OpenSuSE Ports Leap 15.2 for armv7hl

Name: go1.14-doc Distribution: openSUSE Leap 15.2
Version: 1.14.2 Vendor: openSUSE
Release: lp152.1.1 Build date: Tue May 26 19:53:51 2020
Group: Documentation/Other Build host: obs-arm-6
Size: 3953655 Source RPM: go1.14-1.14.2-lp152.1.1.src.rpm
Packager: https://bugs.opensuse.org
Url: http://golang.org
Summary: Go documentation
Go examples and documentation.

Provides

Requires

License

BSD-3-Clause

Changelog

* Thu Apr 09 2020 Jeff Kowalczyk <jkowalczyk@suse.com>
  - go1.14.2 (released 2020-04-08) includes fixes to cgo, the go command,
    the runtime, os/exec, and testing packages.
    Refs boo#1164903 go1.14 release tracking
    * go#38156 doc: BuildNameToCertificate deprecated in go 1.14 not mentioned in the release notes
    * go#38118 runtime/pprof: lostProfileEvent stack breaks gentraceback guarantee
    * go#38083 cmd/go/internal/test: data race in (*runCache).builderRunTest
    * go#38072 runtime: timer self-deadlock due to preemption point
    * go#38051 runtime: loops forever on sched_yield sometimes(timer related)
    * go#38005 runtime: "pipe failed with -89" at program startup(mipsle only), timer related netpoll init.
    * go#37970 runtime/pprof: panic: runtime error: index out of range [-1]
    * go#37968 runtime: fatal error: found bad pointer in Go heap (incorrect use of unsafe or cgo?)
    * go#37959 testing: data race between parallel panicking and normal subtest
    * go#37931 cmd/go: explain automatic vendoring in 'go help modules'
    * go#37928 runtime: GC pacing exhibits strange behavior with a low GOGC
    * go#37800 cmd/go: 'Access is denied' when renaming module cache directory
    * go#37699 PowerRegisterSuspendResumeNotification error on Azure App Services with go 1.13.7
    * go#37622 cmd/cgo: fails to generate certain types with Go 1.14
    * go#37480 runtime: "fatal error: unexpected signal" 0xC0000005 on Windows for a small program with a large allocation
    * go#37471 os/exec: environForSysProcAttr is never called as sysattr.Env is never nil
* Fri Mar 20 2020 Jeff Kowalczyk <jkowalczyk@suse.com>
  - go1.14.1 (released 2020-03-19) includes fixes to the go command,
    tools, and the runtime.
    Refs boo#1164903 go1.14 release tracking
    * go#37905 cmd/compile: -d=checkptr should not reject unaligned pointers to non-pointer data
    * go#37833 runtime: sometimes 100% CPU spin during init phase in Go 1.14 with preemptive scheduler
    * go#37822 cmd/go: module's "go" version should be included in cache key
    * go#37807 runtime: mlock of signal stack failed: 12
    * go#37782 runtime: crash on 1.14 with unexpected return pc, fatal error: unknown caller pc
    * go#37721 reflect: MakeMap() and not native map type wrong behavior
    * go#37671 cmd/go: tests that panic or exit are marked as passing when -json flag is used
    * go#37667 runtime: asyncPreempt should not try to save floating-point context for softfloat MIPS targets
    * go#37630 doc: missing documentation of quoting the URL of url.Errors in go1.14 release notes
    * go#37613 runtime: Go 1.14.rc1 3-5% performance regression from 1.13 during protobuf marshalling
    * go#37494 time: racy Timer access should either work or throw, not panic
    * go#37478 SIGILL: illegal instruction on any go tool under macOS
    * go#37447 runtime/pprof: inline frames may not use combined location
    * go#37343 cmd/trace: requires HTML imports, which doesn't work on any major browser anymore
* Tue Mar 03 2020 Jeff Kowalczyk <jkowalczyk@suse.com>
  - Packaging sync accumulated changes from go1.12
    Refs boo#1164903 go1.14 release tracking
  - Use gcc9 by default by updating define gcc_go_version 9 (was 8)
    * drop unneeded patch gcc8-go.patch
  - Fix broken go_api evaluation (1.12 < 1.5, when evaluated as floats),
    let RPM evaluate the expression, drop no longer required bc.
  - Own the gdbinit.d directory, avoid the build dependency on gdb.
  - Add %ifarch %arm aarch64 BuildRequires: binutils-gold to fix
    /usr/lib64/go/{version}/pkg/tool/linux_arm64/link: running gcc failed: exit status 1
    collect2: fatal error: cannot find 'ld'-
* Tue Feb 25 2020 Jeff Kowalczyk <jkowalczyk@suse.com>
  - go1.14 (released 2020-02-25) is a major release of Go.
    go1.14.x minor releases will be provided through February 2021.
    https://github.com/golang/go/wiki/Go-Release-Cycle
    Most changes are in the implementation of the toolchain, runtime,
    and libraries. As always, the release maintains the Go 1 promise
    of compatibility. We expect almost all Go programs to continue to
    compile and run as before.
    Refs boo#1164903 go1.14 release tracking
    * See release notes https://golang.org/doc/go1.14. Excerpts
      relevant to OBS environment and for SUSE/openSUSE follow:
    * Module support in the go command is now ready for production
      use, and we encourage all users to migrate to Go modules for
      dependency management.
    * RISC-V experimental support for 64-bit RISC-V on Linux
      (GOOS=linux, GOARCH=riscv64). Be aware that performance,
      assembly syntax stability, and possibly correctness are a work
      in progress.
    * When the main module contains a top-level vendor directory and
      its go.mod file specifies go 1.14 or higher, the go command now
      defaults to -mod=vendor for operations that accept that flag. A
      new value for that flag, -mod=mod, causes the go command to
      instead load modules from the module cache (as when no vendor
      directory is present).
    * When -mod=vendor is set (explicitly or by default), the go
      command now verifies that the main module's vendor/modules.txt
      file is consistent with its go.mod file.
    * go list -m no longer silently omits transitive dependencies
      that do not provide packages in the vendor directory. It now
      fails explicitly if -mod=vendor is set and information is
      requested for a module not mentioned in vendor/modules.txt.
    * The go get command no longer accepts the -mod flag. Previously,
      the flag's setting either was ignored or caused the build to
      fail.
    * mod=readonly is now set by default when the go.mod file is
      read-only and no top-level vendor directory is present.
    * modcacherw is a new flag that instructs the go command to leave
      newly-created directories in the module cache at their default
      permissions rather than making them read-only. The use of this
      flag makes it more likely that tests or other tools will
      accidentally add files not included in the module's verified
      checksum. However, it allows the use of rm -rf (instead of go
      clean -modcache) to remove the module cache.
    * modfile=file is a new flag that instructs the go command to
      read (and possibly write) an alternate go.mod file instead of
      the one in the module root directory. A file named go.mod must
      still be present in order to determine the module root
      directory, but it is not accessed. When -modfile is specified,
      an alternate go.sum file is also used: its path is derived from
      the -modfile flag by trimming the .mod extension and appending
      .sum.
* Thu Feb 06 2020 Jeff Kowalczyk <jkowalczyk@suse.com>
  - go1.14rc1 (released 2020/02/05) is a release candidate version of
    Go 1.14. It is cut from release-branch.go1.14 at the revision
    tagged go1.14rc1. go1.14rc1 is packaged before stable release of
    go1.14 to provide a preview of new default behavior for go
    modules. This early access is primarily intended to test use in
    offline OBS environment use with upstream go proxy infrastructure.
    * packaging: drop patch gcc9-rsp-clobber.patch now merged in go1.14
    * packaging: update version of LLVM compiler-rt
    * packaging: update _service definitions
    * packaging: update %doc entries rm devel/ add modules.md
    * doc: rename HTML element IDs to avoid duplicates
    * net: don't check LookupHost error in TestLookupNullByte
    * runtime: don't treat SIGURG as a bad signal
    * internal/bytealg: fix riscv64 offset names
    * doc: remove paragraph break for upgrading to modules
    * syscall: Revert "release a js.Func object in fsCall"
    * doc/go1.14: note that all changes to the standard library are minor
    * doc/go1.14: fix broken links
    * doc/go1.14: remove TODO about Solaris port

Files

/usr/share/doc/packages/go/1.14/articles
/usr/share/doc/packages/go/1.14/articles/go_command.html
/usr/share/doc/packages/go/1.14/articles/index.html
/usr/share/doc/packages/go/1.14/articles/race_detector.html
/usr/share/doc/packages/go/1.14/articles/wiki
/usr/share/doc/packages/go/1.14/articles/wiki/edit.html
/usr/share/doc/packages/go/1.14/articles/wiki/final-noclosure.go
/usr/share/doc/packages/go/1.14/articles/wiki/final-noerror.go
/usr/share/doc/packages/go/1.14/articles/wiki/final-parsetemplate.go
/usr/share/doc/packages/go/1.14/articles/wiki/final-template.go
/usr/share/doc/packages/go/1.14/articles/wiki/final.go
/usr/share/doc/packages/go/1.14/articles/wiki/final_test.go
/usr/share/doc/packages/go/1.14/articles/wiki/go.mod
/usr/share/doc/packages/go/1.14/articles/wiki/http-sample.go
/usr/share/doc/packages/go/1.14/articles/wiki/index.html
/usr/share/doc/packages/go/1.14/articles/wiki/notemplate.go
/usr/share/doc/packages/go/1.14/articles/wiki/part1-noerror.go
/usr/share/doc/packages/go/1.14/articles/wiki/part1.go
/usr/share/doc/packages/go/1.14/articles/wiki/part2.go
/usr/share/doc/packages/go/1.14/articles/wiki/part3-errorhandling.go
/usr/share/doc/packages/go/1.14/articles/wiki/part3.go
/usr/share/doc/packages/go/1.14/articles/wiki/test_Test.txt.good
/usr/share/doc/packages/go/1.14/articles/wiki/test_edit.good
/usr/share/doc/packages/go/1.14/articles/wiki/test_view.good
/usr/share/doc/packages/go/1.14/articles/wiki/view.html
/usr/share/doc/packages/go/1.14/articles/wiki/wiki_test.go
/usr/share/doc/packages/go/1.14/asm.html
/usr/share/doc/packages/go/1.14/cmd.html
/usr/share/doc/packages/go/1.14/codewalk
/usr/share/doc/packages/go/1.14/codewalk/codewalk.css
/usr/share/doc/packages/go/1.14/codewalk/codewalk.js
/usr/share/doc/packages/go/1.14/codewalk/codewalk.xml
/usr/share/doc/packages/go/1.14/codewalk/codewalk_test.go
/usr/share/doc/packages/go/1.14/codewalk/functions.xml
/usr/share/doc/packages/go/1.14/codewalk/markov.go
/usr/share/doc/packages/go/1.14/codewalk/markov.xml
/usr/share/doc/packages/go/1.14/codewalk/pig.go
/usr/share/doc/packages/go/1.14/codewalk/popout.png
/usr/share/doc/packages/go/1.14/codewalk/sharemem.xml
/usr/share/doc/packages/go/1.14/codewalk/urlpoll.go
/usr/share/doc/packages/go/1.14/contrib.html
/usr/share/doc/packages/go/1.14/contribute.html
/usr/share/doc/packages/go/1.14/debugging_with_gdb.html
/usr/share/doc/packages/go/1.14/diagnostics.html
/usr/share/doc/packages/go/1.14/editors.html
/usr/share/doc/packages/go/1.14/effective_go.html
/usr/share/doc/packages/go/1.14/gccgo_contribute.html
/usr/share/doc/packages/go/1.14/gccgo_install.html
/usr/share/doc/packages/go/1.14/go-logo-black.png
/usr/share/doc/packages/go/1.14/go-logo-blue.png
/usr/share/doc/packages/go/1.14/go-logo-white.png
/usr/share/doc/packages/go/1.14/go1.1.html
/usr/share/doc/packages/go/1.14/go1.10.html
/usr/share/doc/packages/go/1.14/go1.11.html
/usr/share/doc/packages/go/1.14/go1.12.html
/usr/share/doc/packages/go/1.14/go1.13.html
/usr/share/doc/packages/go/1.14/go1.14.html
/usr/share/doc/packages/go/1.14/go1.2.html
/usr/share/doc/packages/go/1.14/go1.3.html
/usr/share/doc/packages/go/1.14/go1.4.html
/usr/share/doc/packages/go/1.14/go1.5.html
/usr/share/doc/packages/go/1.14/go1.6.html
/usr/share/doc/packages/go/1.14/go1.7.html
/usr/share/doc/packages/go/1.14/go1.8.html
/usr/share/doc/packages/go/1.14/go1.9.html
/usr/share/doc/packages/go/1.14/go1.html
/usr/share/doc/packages/go/1.14/go1compat.html
/usr/share/doc/packages/go/1.14/go_faq.html
/usr/share/doc/packages/go/1.14/go_mem.html
/usr/share/doc/packages/go/1.14/go_spec.html
/usr/share/doc/packages/go/1.14/gopher
/usr/share/doc/packages/go/1.14/gopher/README
/usr/share/doc/packages/go/1.14/gopher/appenginegopher.jpg
/usr/share/doc/packages/go/1.14/gopher/appenginegophercolor.jpg
/usr/share/doc/packages/go/1.14/gopher/appenginelogo.gif
/usr/share/doc/packages/go/1.14/gopher/biplane.jpg
/usr/share/doc/packages/go/1.14/gopher/bumper.png
/usr/share/doc/packages/go/1.14/gopher/bumper192x108.png
/usr/share/doc/packages/go/1.14/gopher/bumper320x180.png
/usr/share/doc/packages/go/1.14/gopher/bumper480x270.png
/usr/share/doc/packages/go/1.14/gopher/bumper640x360.png
/usr/share/doc/packages/go/1.14/gopher/doc.png
/usr/share/doc/packages/go/1.14/gopher/favicon.svg
/usr/share/doc/packages/go/1.14/gopher/fiveyears.jpg
/usr/share/doc/packages/go/1.14/gopher/frontpage.png
/usr/share/doc/packages/go/1.14/gopher/gopherbw.png
/usr/share/doc/packages/go/1.14/gopher/gophercolor.png
/usr/share/doc/packages/go/1.14/gopher/gophercolor16x16.png
/usr/share/doc/packages/go/1.14/gopher/help.png
/usr/share/doc/packages/go/1.14/gopher/modelsheet.jpg
/usr/share/doc/packages/go/1.14/gopher/pencil
/usr/share/doc/packages/go/1.14/gopher/pencil/gopherhat.jpg
/usr/share/doc/packages/go/1.14/gopher/pencil/gopherhelmet.jpg
/usr/share/doc/packages/go/1.14/gopher/pencil/gophermega.jpg
/usr/share/doc/packages/go/1.14/gopher/pencil/gopherrunning.jpg
/usr/share/doc/packages/go/1.14/gopher/pencil/gopherswim.jpg
/usr/share/doc/packages/go/1.14/gopher/pencil/gopherswrench.jpg
/usr/share/doc/packages/go/1.14/gopher/pkg.png
/usr/share/doc/packages/go/1.14/gopher/project.png
/usr/share/doc/packages/go/1.14/gopher/ref.png
/usr/share/doc/packages/go/1.14/gopher/run.png
/usr/share/doc/packages/go/1.14/gopher/talks.png
/usr/share/doc/packages/go/1.14/help.html
/usr/share/doc/packages/go/1.14/ie.css
/usr/share/doc/packages/go/1.14/install-source.html
/usr/share/doc/packages/go/1.14/install.html
/usr/share/doc/packages/go/1.14/play
/usr/share/doc/packages/go/1.14/play/fib.go
/usr/share/doc/packages/go/1.14/play/hello.go
/usr/share/doc/packages/go/1.14/play/life.go
/usr/share/doc/packages/go/1.14/play/peano.go
/usr/share/doc/packages/go/1.14/play/pi.go
/usr/share/doc/packages/go/1.14/play/sieve.go
/usr/share/doc/packages/go/1.14/play/solitaire.go
/usr/share/doc/packages/go/1.14/play/tree.go
/usr/share/doc/packages/go/1.14/progs
/usr/share/doc/packages/go/1.14/progs/cgo1.go
/usr/share/doc/packages/go/1.14/progs/cgo2.go
/usr/share/doc/packages/go/1.14/progs/cgo3.go
/usr/share/doc/packages/go/1.14/progs/cgo4.go
/usr/share/doc/packages/go/1.14/progs/defer.go
/usr/share/doc/packages/go/1.14/progs/defer2.go
/usr/share/doc/packages/go/1.14/progs/eff_bytesize.go
/usr/share/doc/packages/go/1.14/progs/eff_qr.go
/usr/share/doc/packages/go/1.14/progs/eff_sequence.go
/usr/share/doc/packages/go/1.14/progs/eff_unused1.go
/usr/share/doc/packages/go/1.14/progs/eff_unused2.go
/usr/share/doc/packages/go/1.14/progs/error.go
/usr/share/doc/packages/go/1.14/progs/error2.go
/usr/share/doc/packages/go/1.14/progs/error3.go
/usr/share/doc/packages/go/1.14/progs/error4.go
/usr/share/doc/packages/go/1.14/progs/go1.go
/usr/share/doc/packages/go/1.14/progs/gobs1.go
/usr/share/doc/packages/go/1.14/progs/gobs2.go
/usr/share/doc/packages/go/1.14/progs/image_draw.go
/usr/share/doc/packages/go/1.14/progs/image_package1.go
/usr/share/doc/packages/go/1.14/progs/image_package2.go
/usr/share/doc/packages/go/1.14/progs/image_package3.go
/usr/share/doc/packages/go/1.14/progs/image_package4.go
/usr/share/doc/packages/go/1.14/progs/image_package5.go
/usr/share/doc/packages/go/1.14/progs/image_package6.go
/usr/share/doc/packages/go/1.14/progs/interface.go
/usr/share/doc/packages/go/1.14/progs/interface2.go
/usr/share/doc/packages/go/1.14/progs/json1.go
/usr/share/doc/packages/go/1.14/progs/json2.go
/usr/share/doc/packages/go/1.14/progs/json3.go
/usr/share/doc/packages/go/1.14/progs/json4.go
/usr/share/doc/packages/go/1.14/progs/json5.go
/usr/share/doc/packages/go/1.14/progs/run.go
/usr/share/doc/packages/go/1.14/progs/slices.go
/usr/share/doc/packages/go/1.14/progs/timeout1.go
/usr/share/doc/packages/go/1.14/progs/timeout2.go
/usr/share/doc/packages/go/1.14/share.png
/usr/share/doc/packages/go/1.14/tos.html


Generated by rpm2html 1.8.1

Fabrice Bellet, Tue Apr 9 12:39:17 2024