File: control

package info (click to toggle)
termbox 1.1.2%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 844 kB
  • sloc: python: 12,912; ansic: 1,717; makefile: 20
file content (91 lines) | stat: -rw-r--r-- 4,172 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
84
85
86
87
88
89
90
91
Source: termbox
Section: devel
Homepage: https://github.com/nsf/termbox
Priority: optional
Standards-Version: 4.3.0
Vcs-Git: https://salsa.debian.org/debian/termbox.git
Vcs-Browser: https://salsa.debian.org/debian/termbox
Maintainer: Mo Zhou <cdluminate@gmail.com>
Build-Depends:
	debhelper (>= 11~),
    dh-python,
	python3-all-dev,
	cython3,

Package: libtermbox-dev
Section: libdevel
Architecture: any
Multi-Arch: same
Depends: ${misc:Depends}, libtermbox1 (= ${binary:Version}),
Description: Library for writing text-based user interfaces (dev)
 Termbox is a library that provides minimalistic API which allows the
 programmer to write text-based user interfaces.
 .
 It is based on a very simple abstraction. The main idea is viewing terminals
 as a table of fixed-size cells and input being a stream of structured
 messages. Would be fair to say that the model is inspired by windows console
 API. The abstraction itself is not perfect and it may create problems in
 certain areas.  The most sensitive ones are copy & pasting and wide characters
 (mostly Chinese, Japanese, Korean (CJK) characters). When it comes to copy &
 pasting, the notion of cells is not really compatible with the idea of text.
 And CJK runes often require more than one cell to display them nicely. Despite
 the mentioned flaws, using such a simple model brings benefits in a form of
 simplicity. And KISS principle is important.
 .
 At this point one should realize, that CLI (command-line interfaces) aren't
 really a thing termbox is aimed at. But rather pseudo-graphical user
 interfaces.
 .
 This package ships with headers and static library.

Package: libtermbox1
Section: libs
Architecture: any
Multi-Arch: same
Depends: ${misc:Depends}, ${shlibs:Depends},
Description: Library for writing text-based user interfaces (lib)
 Termbox is a library that provides minimalistic API which allows the
 programmer to write text-based user interfaces.
 .
 It is based on a very simple abstraction. The main idea is viewing terminals
 as a table of fixed-size cells and input being a stream of structured
 messages. Would be fair to say that the model is inspired by windows console
 API. The abstraction itself is not perfect and it may create problems in
 certain areas.  The most sensitive ones are copy & pasting and wide characters
 (mostly Chinese, Japanese, Korean (CJK) characters). When it comes to copy &
 pasting, the notion of cells is not really compatible with the idea of text.
 And CJK runes often require more than one cell to display them nicely. Despite
 the mentioned flaws, using such a simple model brings benefits in a form of
 simplicity. And KISS principle is important.
 .
 At this point one should realize, that CLI (command-line interfaces) aren't
 really a thing termbox is aimed at. But rather pseudo-graphical user
 interfaces.
 .
 This package ships with shared object.

Package: python3-termbox
Section: python
Architecture: any
Multi-Arch: same
Depends: ${misc:Depends}, ${shlibs:Depends}, ${python3:Depends},
Description: Library for writing text-based user interfaces (Python)
 Termbox is a library that provides minimalistic API which allows the
 programmer to write text-based user interfaces.
 .
 It is based on a very simple abstraction. The main idea is viewing terminals
 as a table of fixed-size cells and input being a stream of structured
 messages. Would be fair to say that the model is inspired by windows console
 API. The abstraction itself is not perfect and it may create problems in
 certain areas.  The most sensitive ones are copy & pasting and wide characters
 (mostly Chinese, Japanese, Korean (CJK) characters). When it comes to copy &
 pasting, the notion of cells is not really compatible with the idea of text.
 And CJK runes often require more than one cell to display them nicely. Despite
 the mentioned flaws, using such a simple model brings benefits in a form of
 simplicity. And KISS principle is important.
 .
 At this point one should realize, that CLI (command-line interfaces) aren't
 really a thing termbox is aimed at. But rather pseudo-graphical user
 interfaces.
 .
 This package ships with Python3 binding of termbox.