File: control

package info (click to toggle)
libbytesize 2.7-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 760 kB
  • sloc: python: 1,874; ansic: 990; sh: 665; makefile: 262
file content (83 lines) | stat: -rw-r--r-- 3,078 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
Source: libbytesize
Section: libs
Priority: optional
Maintainer: Utopia Maintenance Team <pkg-utopia-maintainers@lists.alioth.debian.org>
Uploaders: Martin Pitt <mpitt@debian.org>
Build-Depends: debhelper-compat (= 13),
               dh-python,
               python3:any,
               libpcre2-dev,
               libgmp-dev,
               libmpfr-dev,
               gettext,
               libpython3-dev,
               libglib2.0-dev,
               gtk-doc-tools
Standards-Version: 4.6.1
Homepage: https://github.com/storaged-project/libbytesize
Vcs-Git: https://salsa.debian.org/utopia-team/libbytesize.git
Vcs-Browser: https://salsa.debian.org/utopia-team/libbytesize

Package: libbytesize1
Architecture: any
Multi-Arch: same
Depends: ${misc:Depends},
         ${shlibs:Depends},
         libbytesize-common (= ${source:Version})
Description: library for common operations with sizes in bytes
 Many projects need to work with sizes in bytes (be it sizes of storage
 space, memory,...) and all of them need to deal with the same issues
 like:
 .
  * How to get a human-readable string for the given size?
  * How to store the given size so that no significant information is lost?
  * How to handle sizes bigger than MAXUINT64?
  * How to interpret sizes entered by users according to their locale and
    typing conventions?
  * How to deal with the decimal/binary units (MB vs. MiB) ambiguity?
 .
 This library aims to be as much generally usable as possible, small, fast and
 be easily interfaced from other languages.

Package: libbytesize-common
Architecture: all
Multi-Arch: foreign
Depends: ${shlibs:Depends},
         ${misc:Depends},
Description: library for common operations with sizes in bytes - translations
 This package contains localization files used by libbytesize.

Package: libbytesize-dev
Section: libdevel
Architecture: any
Multi-Arch: same
Depends: libbytesize1 (= ${binary:Version}),
         ${misc:Depends}
Description: library for common operations with sizes in bytes - development
 This package ships the header pkg-config files needed for building things
 against the libbytesize library.

Package: python3-bytesize
Section: python
Architecture: any
Depends: libbytesize1 (= ${binary:Version}),
         ${python3:Depends},
         ${shlibs:Depends},
         ${misc:Depends},
         python3-six
Description: Python 3 bindings for libbytesize
 Many projects need to work with sizes in bytes (be it sizes of storage
 space, memory,...) and all of them need to deal with the same issues
 like:
 .
  * How to get a human-readable string for the given size?
  * How to store the given size so that no significant information is lost?
  * How to handle sizes bigger than MAXUINT64?
  * How to interpret sizes entered by users according to their locale and
    typing conventions?
  * How to deal with the decimal/binary units (MB vs. MiB) ambiguity?
 .
 This library aims to be as much generally usable as possible, small, fast and
 be easily interfaced from other languages.
 .
 This package contains bindings for libbytesize in Python3.