File: control

package info (click to toggle)
libsru-perl 1.01-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 240 kB
  • sloc: perl: 836; makefile: 2
file content (50 lines) | stat: -rw-r--r-- 2,222 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
Source: libsru-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Florian Schlichting <fsfs@debian.org>
Section: perl
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper-compat (= 13)
Build-Depends-Indep: libcgi-application-perl,
                     libcgi-pm-perl | perl (<< 5.19),
                     libclass-accessor-perl,
                     libcql-parser-perl,
                     libtest-exception-perl,
                     liburi-perl,
                     libxml-libxml-perl,
                     libxml-simple-perl,
                     perl
Standards-Version: 3.9.6
Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libsru-perl
Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libsru-perl.git
Homepage: https://metacpan.org/release/SRU

Package: libsru-perl
Architecture: all
Depends: ${misc:Depends},
         ${perl:Depends},
         libcgi-application-perl,
         libclass-accessor-perl,
         libcql-parser-perl,
         liburi-perl,
         libxml-libxml-perl,
         libxml-simple-perl
Description: framework for Search and Retrieval by URL
 The SRU package provides a framework for working with the Search and
 Retrieval by URL (SRU) protocol developed by the Library of Congress. SRU
 defines a web service for searching databases containing metadata and
 objects. SRU often goes under the name SRW which is a SOAP version of the
 protocol. You can think of SRU as a RESTful version of SRW, since all the
 requests are simple URLs instead of XML documents being sent via some sort of
 transport layer.
 .
 You might be interested in SRU if you want to provide a generic API for
 searching a data repository and a mechanism for returning metadata records.
 SRU defines three verbs: explain, scan and searchRetrieve which define the
 requests and responses in a SRU interaction.
 .
 This set of modules attempts to provide a framework for building an SRU
 service. The distribution is made up of two sets of Perl modules: modules in
 the SRU::Request::* namespace which represent the three types of requests;
 and modules in the SRU::Response::* namespace which represent the various
 responses.