File: control

package info (click to toggle)
libtwitter-api-perl 1.0006-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 424 kB
  • sloc: perl: 2,868; makefile: 7
file content (85 lines) | stat: -rw-r--r-- 3,556 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
Source: libtwitter-api-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: gregor herrmann <gregoa@debian.org>
Section: perl
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper-compat (= 13),
               libmodule-build-tiny-perl,
               perl
Build-Depends-Indep: libcpanel-json-xs-perl <!nocheck>,
                     libhtml-parser-perl <!nocheck>,
                     libhttp-message-perl <!nocheck>,
                     libhttp-thin-perl <!nocheck>,
                     libio-socket-ssl-perl <!nocheck>,
                     libjson-maybexs-perl <!nocheck>,
                     libmodule-runtime-perl <!nocheck>,
                     libmoo-perl <!nocheck>,
                     libmoox-aliases-perl <!nocheck>,
                     libmoox-traits-perl <!nocheck>,
                     libnamespace-clean-perl <!nocheck>,
                     libref-util-perl <!nocheck>,
                     libscalar-list-utils-perl <!nocheck>,
                     libsub-exporter-progressive-perl <!nocheck>,
                     libtest-fatal-perl <!nocheck>,
                     libtest-pod-perl <!nocheck>,
                     libtest-spec-perl <!nocheck>,
                     libtest-warnings-perl <!nocheck>,
                     libthrowable-perl <!nocheck>,
                     libtry-tiny-perl <!nocheck>,
                     liburi-perl <!nocheck>,
                     liburl-encode-perl <!nocheck>,
                     libwww-form-urlencoded-xs-perl <!nocheck>,
                     libwww-oauth-perl <!nocheck>
Standards-Version: 4.6.0
Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libtwitter-api-perl
Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libtwitter-api-perl.git
Homepage: https://metacpan.org/release/Twitter-API
Rules-Requires-Root: no

Package: libtwitter-api-perl
Architecture: all
Depends: ${misc:Depends},
         ${perl:Depends},
         libhtml-parser-perl,
         libhttp-message-perl,
         libhttp-thin-perl,
         libio-socket-ssl-perl,
         libjson-maybexs-perl,
         libmodule-runtime-perl,
         libmoo-perl,
         libmoox-aliases-perl,
         libmoox-traits-perl,
         libnamespace-clean-perl,
         libref-util-perl,
         libsub-exporter-progressive-perl,
         libthrowable-perl,
         libtry-tiny-perl,
         liburi-perl,
         liburl-encode-perl,
         libwww-oauth-perl
Recommends: libcpanel-json-xs-perl,
            libwww-form-urlencoded-xs-perl
Description: Twitter REST API library for Perl
 Twitter::API provides an interface to the Twitter REST API for perl.
 .
 Features:
 .
  * full support for all Twitter REST API endpoints
  * not dependent on a new distribution for new endpoint support
  * optionally specify access tokens per API call
  * error handling via an exception object that captures the full
    request/response context
  * full support for OAuth handshake and Xauth authentication
 .
 Additional features are available via optional traits:
 .
  * convenient methods for API endpoints with simplified argument
    handling via ApiMethods
  * normalized booleans (Twitter likes 'true' and 'false', except when
    it doesn't) via NormalizeBooleans
  * automatic decoding of HTML entities via DecodeHtmlEntities
  * automatic retry on transient errors via RetryOnError
  * "the whole enchilada" combines all the above traits via Enchilada
  * app-only (OAuth2) support via AppAuth
  * automatic rate limiting via RateLimiting