~ubuntu-branches/ubuntu/precise/libio-socket-ssl-perl/precise

« back to all changes in this revision

Viewing changes to debian/control

  • Committer: Bazaar Package Importer
  • Author(s): Florian Ragwitz
  • Date: 2005-08-11 19:33:45 UTC
  • mfrom: (1.2.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20050811193345-vt5akfba47n86u5z
Tags: 0.97-1
* New upstream version.
* New Maintainer (Closes: #322099).
* Changed Section from interpreters to perl because it's more accurate.
* Removed dependency on openssl. I don't see why it's needed. Net::SSLeay is
  used as the interface to libssl.
* Removed Conflicts: and Replaces: libnet-socketssl-perl. It's not in the
  archive anymore.
* Using debhelper 4.
* Updated standards version.
* Rewrote debian/rules.
* Updated copyright.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
Source: libio-socket-ssl-perl
2
 
Section: interpreters
 
2
Section: perl
3
3
Priority: optional
4
 
Maintainer: Davide Puricelli (evo) <evo@debian.org>
5
 
Standards-Version: 3.5.8.0
6
 
Build-Depends-Indep: debhelper (>= 3.0.5), perl (>= 5.8.0)
 
4
Maintainer: Florian Ragwitz <rafl@debianforum.de>
 
5
Build-Depends: debhelper (>= 4.0.2)
 
6
Build-Depends-Indep: perl (>= 5.8.0-7), libnet-ssleay-perl (>= 1.21)
 
7
Standards-Version: 3.6.2
7
8
 
8
9
Package: libio-socket-ssl-perl
9
10
Architecture: all
10
 
Depends: ${perl:Depends}, openssl, libnet-ssleay-perl
11
 
Replaces: libnet-socketssl-perl
12
 
Conflicts: libnet-socketssl-perl
13
 
Description: Class implementing an object oriented interface to SSL sockets
14
 
 The class is a descendent of IO::Socket::INET and provides a subset
15
 
 of the base class's interface methods.
 
11
Depends: ${perl:Depends}, libnet-ssleay-perl (>= 1.21)
 
12
Description: Perl module implementing object oriented interface to SSL sockets
 
13
 This module is a true drop-in replacement for IO::Socket::INET that
 
14
 uses SSL to encrypt data before it is transferred to a remote server
 
15
 or client.  IO::Socket::SSL supports all the extra features that one
 
16
 needs to write a full-featured SSL client or server application:
 
17
 multiple SSL contexts, cipher selection, certificate verification, and
 
18
 SSL version selection.  As an extra bonus, it works perfectly with
 
19
 mod_perl.