File: control

package info (click to toggle)
erlang-p1-xmpp 1.5.2-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 4,072 kB
  • sloc: erlang: 68,111; ansic: 9,373; makefile: 87
file content (59 lines) | stat: -rw-r--r-- 2,517 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
Source: erlang-p1-xmpp
Maintainer: Ejabberd Packaging Team <ejabberd@packages.debian.org>
Uploaders: Philipp Huebner <debalance@debian.org>
Section: libs
Priority: optional
Rules-Requires-Root: no
Build-Depends: debhelper-compat (= 13),
               dh-rebar,
               erlang-base (>= 1:19.2),
               erlang-eunit,
               erlang-idna (>= 6.0.0),
               erlang-p1-xml (>= 1.1.45),
               erlang-p1-stringprep (>= 1.0.24),
               erlang-p1-tls (>= 1.1.11),
               erlang-p1-utils (>= 1.0.21),
               erlang-p1-zlib (>= 1.0.9),
               erlang-syntax-tools,
               erlang-unicode-util-compat (>= 0.3.1),
               libexpat1-dev
Standards-Version: 4.5.1
Vcs-Browser: https://salsa.debian.org/ejabberd-packaging-team/erlang-p1-xmpp
Vcs-Git: https://salsa.debian.org/ejabberd-packaging-team/erlang-p1-xmpp.git
Homepage: https://github.com/processone/xmpp

Package: erlang-p1-xmpp
Architecture: any
Depends: ${shlibs:Depends},
         ${misc:Depends},
         erlang-base (>= 1:19.2) | ${erlang-abi:Depends},
         ${erlang:Depends},
         erlang-idna (>= 6.0.0),
         erlang-p1-xml (>= 1.1.45),
         erlang-p1-stringprep (>= 1.0.24),
         erlang-p1-tls (>= 1.1.11),
         erlang-unicode-util-compat (>= 0.3.1),
         erlang-p1-utils (>= 1.0.21),
         erlang-p1-zlib (>= 1.0.9)
Multi-Arch: allowed
Description: Erlang/Elixir XMPP parsing and serialization library
 This library provides comprehensive representation of XMPP elements as
 well as tools to work with them. Every such element is represented by an
 Erlang record. Most of the library's code is auto generated and thus
 considered to be bug free and efficient.
 .
 The approach is very similar to ASN.1, Google Protocol Buffers or Apache
 Thrift: an XML element is transformed into internal language structure
 (an Erlang record in this case) - the process known as "decoding". During
 decoding, validation is also performed, thus well-typed structures are
 generated, potentially decreasing bugs related to handcrafted parsing. A
 reverse process known as "encoding" is applied for transforming an
 Erlang record into an XML element.
 .
 This package should be used along with erlang-p1-xml, because it is
 only able to decode from and encode to structures generated by that
 library (that is, xmlel() elements).
 .
 This library was written for ejabberd which still uses it.
 It was split off into its own project to follow
 Erlang/OTP guidelines.