File: control

package info (click to toggle)
golang-github-facebookgo-atomicfile 0.0~git20151019.2de1f20-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 68 kB
  • sloc: makefile: 2
file content (27 lines) | stat: -rw-r--r-- 1,136 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
Source: golang-github-facebookgo-atomicfile
Section: devel
Priority: optional
Maintainer: Debian Go Packaging Team <pkg-go-maintainers@lists.alioth.debian.org>
Uploaders: Eric Dorland <eric@debian.org>
Build-Depends: debhelper-compat (= 12),
               dh-golang,
               golang-any
Standards-Version: 4.5.0.2
Rules-Requires-Root: no
Homepage: https://github.com/facebookgo/atomicfile
Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-facebookgo-atomicfile
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-facebookgo-atomicfile.git
XS-Go-Import-Path: github.com/facebookgo/atomicfile
Testsuite: autopkgtest-pkg-go

Package: golang-github-facebookgo-atomicfile-dev
Architecture: all
Multi-Arch: foreign
Depends: ${shlibs:Depends},
         ${misc:Depends}
Description: Provides an atomically written/replaced file
 Package atomicfile provides the ability to write a file with an eventual
 rename on Close (using os.Rename). This allows for a file to always be
 in a consistent state and never represent an in-progress write.
 .
 NOTE: `os.Rename` may not be atomic on your operating system.