golang-github-wk8-go-ordered-map_2.1.8-1_amd64.changes (click to toggle) | |
---|---|
Format: | 1.8 |
Date: | Thu, 16 Jan 2025 22:52:50 +0100 |
Source: | golang-github-wk8-go-ordered-map |
Binary: | golang-github-wk8-go-ordered-map-dev |
Architecture: | source all |
Version: | 2.1.8-1 |
Distribution: | unstable |
Urgency: | medium |
Maintainer: | Debian Go Packaging Team <team+pkg-go@tracker.debian.org> |
Changed-By: | Simon Josefsson <simon@josefsson.org> |
Description: | golang-github-wk8-go-ordered-map-dev - Optimal implementation of ordered maps for Golang (Go library) |
Closes: | 1093249 |
Changes: | golang-github-wk8-go-ordered-map (2.1.8-1) unstable; urgency=medium * Initial release (Closes: #1093249) |
Files: | fe6e1930f96c01090f202a5af8d088df 2891 golang optional golang-github-wk8-go-ordered-map_2.1.8-1.dsc a0d1f3bbaf2bfdaaf5010c84bfb6f155 20796 golang optional golang-github-wk8-go-ordered-map_2.1.8.orig.tar.gz 2f84cd9ada89c7dfce60544e88e31893 2804 golang optional golang-github-wk8-go-ordered-map_2.1.8-1.debian.tar.xz b205ae262a4f7157fd9abe34f0360c34 14780 golang optional golang-github-wk8-go-ordered-map-dev_2.1.8-1_all.deb c8a463bae8a511701f7f6aeae260cba6 6980 golang optional golang-github-wk8-go-ordered-map_2.1.8-1_amd64.buildinfo |
golang-github-wk8-go-ordered-map_2.1.8-1.dsc (click to toggle) | |
---|---|
Format: | 3.0 (quilt) |
Source: | golang-github-wk8-go-ordered-map |
Binary: | golang-github-wk8-go-ordered-map-dev |
Architecture: | all |
Version: | 2.1.8-1 |
Maintainer: | Debian Go Packaging Team <team+pkg-go@tracker.debian.org> |
Uploaders: | Simon Josefsson <simon@josefsson.org>, |
Homepage: | https://github.com/wk8/go-ordered-map |
Standards-Version: | 4.7.0 |
Vcs-Browser: | https://salsa.debian.org/go-team/packages/golang-github-wk8-go-ordered-map |
Vcs-Git: | https://salsa.debian.org/go-team/packages/golang-github-wk8-go-ordered-map.git |
Testsuite: | autopkgtest-pkg-go |
Build-Depends: | debhelper-compat (=13), dh-sequence-golang, golang-any, golang-github-bahlo-generic-list-go-dev, golang-github-buger-jsonparser-dev, golang-github-mailru-easyjson-dev, golang-github-stretchr-testify-dev, golang-gopkg-yaml.v3-dev |
Package-List: | golang-github-wk8-go-ordered-map-dev deb golang optional arch=all |
Files: | a0d1f3bbaf2bfdaaf5010c84bfb6f155 20796 golang-github-wk8-go-ordered-map_2.1.8.orig.tar.gz 2f84cd9ada89c7dfce60544e88e31893 2804 golang-github-wk8-go-ordered-map_2.1.8-1.debian.tar.xz |
Go-Import-Path: | github.com/wk8/go-ordered-map |
README.source for golang-github-wk8-go-ordered-map_2.1.8-1.dsc (click to toggle) | |
---|---|
No README.source in this package |
control file for golang-github-wk8-go-ordered-map-dev_2.1.8-1_all.deb (click to toggle) | |
---|---|
Package: | golang-github-wk8-go-ordered-map-dev |
Source: | golang-github-wk8-go-ordered-map |
Version: | 2.1.8-1 |
Architecture: | all |
Maintainer: | Debian Go Packaging Team <team+pkg-go@tracker.debian.org> |
Installed-Size: | 78 |
Depends: | golang-github-bahlo-generic-list-go-dev, golang-github-buger-jsonparser-dev, golang-github-mailru-easyjson-dev, golang-github-stretchr-testify-dev, golang-gopkg-yaml.v3-dev |
Section: | golang |
Priority: | optional |
Multi-Arch: | foreign |
Homepage: | https://github.com/wk8/go-ordered-map |
Description: | Optimal implementation of ordered maps for Golang (Go library) Golang Ordered Maps . Same as regular maps, but also remembers the order in which keys were inserted, akin to Python's collections.OrderedDicts: https://docs.python.org/3.7/library/collections.html#ordereddict-objects . It offers the following features: . * optimal runtime performance (all operations are constant time) * optimal memory usage (only one copy of values, no unnecessary memory allocation) * allows iterating from newest or oldest keys indifferently, without memory copy, allowing to break the iteration, and in time linear to the number of keys iterated over rather than the total length of the ordered map * supports any generic types for both keys and values. If you're running go < 1.18, you can use version 1 (https://github.com/wk8/go- ordered-map/tree/v1) that takes and returns generic interface{}s instead of using generics * idiomatic API, akin to that of container/list (https://golang.org/pkg/container/list) * support for JSON and YAML marshalling . Documentation . The full documentation is available on pkg.go.dev: https://pkg.go.dev/github.com/wk8/go-ordered-map/v2 |
contents of golang-github-wk8-go-ordered-map-dev_2.1.8-1_all.deb (click to toggle) | |
---|---|
drwxr-xr-x root/root 0 2025-01-16 21:52 ./ drwxr-xr-x root/root 0 2025-01-16 21:52 ./usr/ drwxr-xr-x root/root 0 2025-01-16 21:52 ./usr/share/ drwxr-xr-x root/root 0 2025-01-16 21:52 ./usr/share/doc/ drwxr-xr-x root/root 0 2025-01-16 21:52 ./usr/share/doc/golang-github-wk8-go-ordered-map-dev/ -rw-r--r-- root/root 175 2025-01-16 21:52 ./usr/share/doc/golang-github-wk8-go-ordered-map-dev/changelog.Debian.gz -rw-r--r-- root/root 473 2023-06-27 17:54 ./usr/share/doc/golang-github-wk8-go-ordered-map-dev/changelog.gz -rw-r--r-- root/root 1461 2025-01-16 21:52 ./usr/share/doc/golang-github-wk8-go-ordered-map-dev/copyright drwxr-xr-x root/root 0 2025-01-16 21:52 ./usr/share/gocode/ drwxr-xr-x root/root 0 2025-01-16 21:52 ./usr/share/gocode/src/ drwxr-xr-x root/root 0 2025-01-16 21:52 ./usr/share/gocode/src/github.com/ drwxr-xr-x root/root 0 2025-01-16 21:52 ./usr/share/gocode/src/github.com/wk8/ drwxr-xr-x root/root 0 2025-01-16 21:52 ./usr/share/gocode/src/github.com/wk8/go-ordered-map/ -rw-r--r-- root/root 1440 2025-01-16 21:52 ./usr/share/gocode/src/github.com/wk8/go-ordered-map/example_test.go -rw-r--r-- root/root 345 2025-01-16 21:52 ./usr/share/gocode/src/github.com/wk8/go-ordered-map/go.mod -rw-r--r-- root/root 2135 2025-01-16 21:52 ./usr/share/gocode/src/github.com/wk8/go-ordered-map/go.sum -rw-r--r-- root/root 4515 2025-01-16 21:52 ./usr/share/gocode/src/github.com/wk8/go-ordered-map/json.go -rw-r--r-- root/root 3846 2025-01-16 21:52 ./usr/share/gocode/src/github.com/wk8/go-ordered-map/json_fuzz_test.go -rw-r--r-- root/root 8778 2025-01-16 21:52 ./usr/share/gocode/src/github.com/wk8/go-ordered-map/json_test.go -rw-r--r-- root/root 8837 2025-01-16 21:52 ./usr/share/gocode/src/github.com/wk8/go-ordered-map/orderedmap.go -rw-r--r-- root/root 8732 2025-01-16 21:52 ./usr/share/gocode/src/github.com/wk8/go-ordered-map/orderedmap_test.go drwxr-xr-x root/root 0 2025-01-16 21:52 ./usr/share/gocode/src/github.com/wk8/go-ordered-map/testdata/ drwxr-xr-x root/root 0 2025-01-16 21:52 ./usr/share/gocode/src/github.com/wk8/go-ordered-map/testdata/fuzz/ drwxr-xr-x root/root 0 2025-01-16 21:52 ./usr/share/gocode/src/github.com/wk8/go-ordered-map/testdata/fuzz/FuzzRoundTripJSON/ -rw-r--r-- root/root 39 2025-01-16 21:52 ./usr/share/gocode/src/github.com/wk8/go-ordered-map/testdata/fuzz/FuzzRoundTripJSON/62c005f96216d8ba8f62ac0799dfc1a6893e68418238a831ee79cd9c39b4cfc6 -rw-r--r-- root/root 29 2025-01-16 21:52 ./usr/share/gocode/src/github.com/wk8/go-ordered-map/testdata/fuzz/FuzzRoundTripJSON/8093511184ad3e258aa13b957e75ff26c7fae64672dae0c0bc0a9fa5b61a05e7 -rw-r--r-- root/root 2252 2025-01-16 21:52 ./usr/share/gocode/src/github.com/wk8/go-ordered-map/utils_test.go -rw-r--r-- root/root 1454 2025-01-16 21:52 ./usr/share/gocode/src/github.com/wk8/go-ordered-map/yaml.go -rw-r--r-- root/root 2461 2025-01-16 21:52 ./usr/share/gocode/src/github.com/wk8/go-ordered-map/yaml_fuzz_test.go -rw-r--r-- root/root 7389 2025-01-16 21:52 ./usr/share/gocode/src/github.com/wk8/go-ordered-map/yaml_test.go |
copyright of golang-github-wk8-go-ordered-map-dev_2.1.8-1_all.deb (click to toggle) | |
---|---|
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Source: https://github.com/wk8/go-ordered-map Upstream-Name: go-ordered-map Files: * Copyright: 2019-2023 Jean Rouge <rougej+github@gmail.com> (25 commits) 2020 Sergey Vilgelm <sergey.vilgelm@ibm.com> (2 commits) 2022 Albert Wolszon <albert.wolszon@leancode.pl> (5 commits) 2022 Pierre Fenoll <pierrefenoll@gmail.com> (6 commits) 2022 xiegeo <george@xiegeo.com> (2 commits) 2023 Manuel Odendahl <wesen@ruinwesen.com> (5 commits) License: Apache-2.0 Files: debian/* Copyright: 2025 Simon Josefsson <simon@josefsson.org> License: Apache-2.0 Comment: Debian packaging is licensed under the same terms as upstream License: Apache-2.0 Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at . https://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. Comment: On Debian systems, the complete text of the Apache version 2.0 license can be found in "/usr/share/common-licenses/Apache-2.0". |
Timestamp: 27.01.2025 / 10:14:20 (UTC)