File: control

package info (click to toggle)
libsru-perl 1.01-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 236 kB
  • ctags: 68
  • sloc: perl: 836; makefile: 2
file content (48 lines) | stat: -rw-r--r-- 2,000 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
Source: libsru-perl
Section: perl
Priority: optional
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Ben Webb <bjwebb67@googlemail.com>, 
 Florian Schlichting <fsfs@debian.org>
Build-Depends: debhelper (>= 8)
Build-Depends-Indep: libcgi-application-perl,
 libclass-accessor-perl,
 libcql-parser-perl (>= 1.12),
 libtest-exception-perl,
 liburi-perl,
 libxml-libxml-perl,
 libxml-simple-perl,
 perl (>= 5.15.2)
Standards-Version: 3.9.4
Homepage: https://metacpan.org/release/SRU/
Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libsru-perl.git
Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libsru-perl.git

Package: libsru-perl
Architecture: all
Depends: ${misc:Depends}, ${perl:Depends},
 libcgi-application-perl,
 libclass-accessor-perl,
 libcql-parser-perl (>= 1.12),
 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.