| ... |
... |
@@ -7,9 +7,9 @@ Build-Depends: |
|
7
|
7
|
debhelper (>= 11),
|
|
8
|
8
|
dh-python,
|
|
9
|
9
|
libxml2-utils,
|
|
10
|
|
- python-all (>= 2.6.6-3~),
|
|
|
10
|
+ python,
|
|
|
11
|
+ python3,
|
|
11
|
12
|
Standards-Version: 4.1.3
|
|
12
|
|
-X-Python-Version: >= 2.5
|
|
13
|
13
|
Homepage: https://xcb.freedesktop.org
|
|
14
|
14
|
Vcs-Git: https://salsa.debian.org/xorg-team/proto/xcb-proto.git
|
|
15
|
15
|
Vcs-Browser: https://salsa.debian.org/xorg-team/proto/xcb-proto
|
| ... |
... |
@@ -41,7 +41,7 @@ Section: python |
|
41
|
41
|
Architecture: all
|
|
42
|
42
|
Multi-Arch: foreign
|
|
43
|
43
|
Depends: ${python:Depends}, ${misc:Depends}
|
|
44
|
|
-Description: X C Binding - protocol binding generator
|
|
|
44
|
+Description: X C Binding - protocol binding generator (Python 2)
|
|
45
|
45
|
python-xcbgen generates the X protocol C language bindings from XML
|
|
46
|
46
|
descriptions.
|
|
47
|
47
|
.
|
| ... |
... |
@@ -55,3 +55,23 @@ Description: X C Binding - protocol binding generator |
|
55
|
55
|
* Thread support: access XCB from multiple threads, with no explicit locking
|
|
56
|
56
|
* Easy creation of new extensions: automatically generates interface from
|
|
57
|
57
|
machine-parsable protocol descriptions
|
|
|
58
|
+
|
|
|
59
|
+Package: python3-xcbgen
|
|
|
60
|
+Section: python
|
|
|
61
|
+Architecture: all
|
|
|
62
|
+Multi-Arch: foreign
|
|
|
63
|
+Depends: ${python3:Depends}, ${misc:Depends}
|
|
|
64
|
+Description: X C Binding - protocol binding generator (Python 3)
|
|
|
65
|
+ python3-xcbgen generates the X protocol C language bindings from XML
|
|
|
66
|
+ descriptions.
|
|
|
67
|
+ .
|
|
|
68
|
+ The XCB library provides an interface to the X Window System protocol,
|
|
|
69
|
+ designed to replace the Xlib interface. XCB provides several advantages over
|
|
|
70
|
+ Xlib:
|
|
|
71
|
+ .
|
|
|
72
|
+ * Size: small library and lower memory footprint
|
|
|
73
|
+ * Latency hiding: batch several requests and wait for the replies later
|
|
|
74
|
+ * Direct protocol access: one-to-one mapping between interface and protocol
|
|
|
75
|
+ * Thread support: access XCB from multiple threads, with no explicit locking
|
|
|
76
|
+ * Easy creation of new extensions: automatically generates interface from
|
|
|
77
|
+ machine-parsable protocol descriptions
|