File: control

package info (click to toggle)
golang-github-apparentlymart-go-userdirs 0.0~git20200915.b0c018a-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 184 kB
  • sloc: makefile: 2
file content (38 lines) | stat: -rw-r--r-- 1,734 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
28
29
30
31
32
33
34
35
36
37
38
Source: golang-github-apparentlymart-go-userdirs
Section: devel
Priority: optional
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Uploaders: Thorsten Alteholz <debian@alteholz.de>
Build-Depends: debhelper-compat (= 13),
               dh-golang,
               golang-any,
               golang-github-google-go-cmp-dev
Standards-Version: 4.6.1
Homepage: https://github.com/apparentlymart/go-userdirs
Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-apparentlymart-go-userdirs
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-apparentlymart-go-userdirs.git
XS-Go-Import-Path: github.com/apparentlymart/go-userdirs
Testsuite: autopkgtest-pkg-go
Rules-Requires-Root: no

Package: golang-github-apparentlymart-go-userdirs-dev
Architecture: all
Depends: ${misc:Depends},
         golang-github-google-go-cmp-dev
Multi-Arch: foreign
Description: finding user-specific application data directories
 This package contains a small library for building suitable paths for
 storing and locating application-specific, user-specific configuration
 files, data files, and cache files.
 .
 The library is based on similar principles as the XDG specification,
 namely:
  - There are one or more directories to search for configuration files,
    one of which is preferred and used for creating new configuration
    files.
  - There are one or more directories to search for data files, one of
    which is preferred and used for creating new data files.
  - There is exactly one cache directory, which can be used for transient
    files that the application is able to recreate if lost.
 The exact locations of these directories will depend on operating
 system and system configuration.