debian/0000755000000000000000000000000012231165673007174 5ustar debian/watch0000644000000000000000000000016411700437606010224 0ustar version=3 http://search.cpan.org/dist/Crypt-SSLeay/ .+/Crypt-SSLeay-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ debian/libcrypt-ssleay-perl.examples0000644000000000000000000000000511700437606015013 0ustar eg/* debian/rules0000755000000000000000000000003611700437606010251 0ustar #!/usr/bin/make -f %: dh $@ debian/libcrypt-ssleay-perl.docs0000644000000000000000000000000511700437606014125 0ustar TODO debian/copyright0000644000000000000000000000247411700437606011134 0ustar Format-Specification: http://anonscm.debian.org/viewvc/dep/web/deps/dep5.mdwn?view=markup&pathrev=135 Maintainer: A. Sinan Unur Source: http://search.cpan.org/dist/Crypt-SSLeay/ Name: Crypt-SSLeay Files: * Copyright: 2010, A. Sinan Unur 2006-2007, David Landgren 1999-2003, Joshua Chamas 1998, Gisle Aas License: Artistic or GPL-1+ Files: debian/* Copyright: 2001, 2002, 2003, Javier Fernandez-Sanguino Pen~a 2003, 2004, Stephen Zander 2004, 2005, 2007, 2008, 2009, Noèl Köthe 2005, Joshua Kwan 2012, gregor herrmann License: Artistic or GPL-1+ License: Artistic This program is free software; you can redistribute it and/or modify it under the terms of the Artistic License, which comes with Perl. . On Debian systems, the complete text of the Artistic License can be found in `/usr/share/common-licenses/Artistic'. License: GPL-1+ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 1, or (at your option) any later version. . On Debian systems, the complete text of version 1 of the GNU General Public License can be found in `/usr/share/common-licenses/GPL-1'. debian/source/0000755000000000000000000000000011700437606010472 5ustar debian/source/format0000644000000000000000000000001411700437606011700 0ustar 3.0 (quilt) debian/patches/0000755000000000000000000000000011700437606010621 5ustar debian/patches/series0000644000000000000000000000001511700437606012032 0ustar nossl2.patch debian/patches/nossl2.patch0000644000000000000000000000162011700437606013061 0ustar Description: adjust to openssl 1.0.0 Origin: upstream bugtracker: Bug: https://rt.cpan.org/Public/Bug/Display.html?id=70565 Bug-Debian: http://bugs.debian.org/623253 Author: MSCHOUT [...] cpan.org Reviewed-by: gregor herrmann Last-Update: 2012-01-02 diff --git a/SSLeay.xs b/SSLeay.xs index 9df9f58..8c26155 100644 --- a/SSLeay.xs +++ b/SSLeay.xs @@ -129,9 +129,15 @@ SSL_CTX_new(packname, ssl_version) ctx = SSL_CTX_new(SSLv3_client_method()); } else { +#ifndef OPENSSL_NO_SSL2 /* v2 is the default */ ctx = SSL_CTX_new(SSLv2_client_method()); +#else + /* v3 is the default */ + ctx = SSL_CTX_new(SSLv3_client_method()); +#endif } + SSL_CTX_set_options(ctx,SSL_OP_ALL|0); SSL_CTX_set_default_verify_paths(ctx); SSL_CTX_set_verify(ctx, SSL_VERIFY_NONE, NULL); debian/compat0000644000000000000000000000000211700437606010370 0ustar 8 debian/control0000644000000000000000000000257011700437606010601 0ustar Source: libcrypt-ssleay-perl Section: perl Priority: optional Maintainer: Debian Perl Group Uploaders: gregor herrmann Standards-Version: 3.9.2 Vcs-Git: git://git.debian.org/pkg-perl/packages/crypt-ssleay.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/crypt-ssleay.git Build-Depends: debhelper (>= 8), perl, libssl-dev, libtest-pod-coverage-perl, libtest-pod-perl, openssl Homepage: http://search.cpan.org/dist/Crypt-SSLeay/ Package: libcrypt-ssleay-perl Architecture: any Depends: ${misc:Depends}, ${shlibs:Depends}, ${perl:Depends} Description: OpenSSL support for LWP This perl module provides support for the HTTPS protocol under LWP, so that an LWP::UserAgent can make HTTPS GET & HEAD & POST requests. Please see perldoc LWP for more information on POST requests. . The Crypt::SSLeay package contains Net::SSL, which is automatically loaded by LWP::Protocol::https on HTTPS requests, and provides the necessary SSL glue for that module to work via these deprecated modules: Crypt::SSLeay::CTX, Crypt::SSLeay::Conn and Crypt::SSLeay::X509. . Work on Crypt::SSLeay has been continued only to provide HTTPS support for the LWP - libwww perl libraries. If you want access to the OpenSSL API via perl, check out Sampo's Net::SSLeay (available in Debian as the libnet-ssleay-perl package). debian/changelog0000644000000000000000000001211012231165673011041 0ustar libcrypt-ssleay-perl (0.58-1build1) trusty; urgency=low * Rebuild for Perl 5.18. -- Colin Watson Mon, 21 Oct 2013 09:54:19 +0100 libcrypt-ssleay-perl (0.58-1) unstable; urgency=low * Takeover for the Debian Perl Group with maintainer's permisson (cf. #623253). * debian/control: Added: Vcs-Git field (source stanza); Vcs-Browser field (source stanza); ${misc:Depends} to Depends: field. Changed: Maintainer set to Debian Perl Group (was: Noèl Köthe ). * Add /me to Uploaders. * Rename source package to libcrypt-ssleay-perl. * Add debian/watch. * New upstream release. * Switch to "3.0 (quilt)" source format. * Use tiny debian/rules and debhelper compat level 8. * Add patch nossl2.patch (compatibility with openssl 1.0.0.). (Closes: #623253) * Add libtest-pod-perl, libtest-pod-coverage-perl to Build-Depends-Indep. * Install examples via dh_installexamples; don't install README (text version of the POD); install TODO. (Closes: #466055) * debian/copyright: DEP5 formatting, updated upstream information, point to GPL-1 instead of symlink. * Remove version from build dependencies. * Bump Standards-Version to 3.9.2 (no further changes). * Remove unneeded runtime dependencies, sort build dependencies. * Rewrite short description. * Capitalize HTTPS in description. (Closes: #622393) -- gregor herrmann Tue, 03 Jan 2012 00:34:17 +0100 crypt-ssleay (0.57-2) unstable; urgency=low * debian/control updated Standards-Version (no changes needed) * debian/control debian/compat updated compat level (lintian warning) * debian/control remove URL in description because we now have the Homepage: -- Noèl Köthe Fri, 24 Jul 2009 10:45:37 +0200 crypt-ssleay (0.57-1) unstable; urgency=low * new upstream release from 2007-09-17 * debian/control updated Standards-Version * debian/control added Homepage field * fix debian-rules-ignores-make-clean-error lintian error * added two example testscripts from the source package (closes: #466055) -- Noèl Köthe Sun, 23 Mar 2008 14:59:38 +0100 crypt-ssleay (0.55-1) unstable; urgency=low * new upstream release from 2007-06-01 * updated Standards-Version without changes * corrected PWD lintian warning -- Noèl Köthe Mon, 18 Jun 2007 17:10:31 +0200 crypt-ssleay (0.51-5) unstable; urgency=low * Thanks for this "we dont inform mainatiner about this NMU":( Closes: #334938, #334935 -- Noèl Köthe Sun, 23 Oct 2005 15:33:32 +0200 crypt-ssleay (0.51-4.1) unstable; urgency=high * Non-maintainer upload. * Use SSL_library_init() before doing anything. closes: #334938, #334935 -- Joshua Kwan Sat, 22 Oct 2005 23:53:44 -0700 crypt-ssleay (0.51-4) unstable; urgency=low * added missing ${shlibs:Depends}; Thanks Matej (closes: Bug#333782) * updated Standards-Version -- Noèl Köthe Thu, 13 Oct 2005 21:51:30 +0200 crypt-ssleay (0.51-3) unstable; urgency=low * fixed typo in description (closes: Bug#300000) -- Noèl Köthe Thu, 24 Mar 2005 18:00:37 +0100 crypt-ssleay (0.51-2) unstable; urgency=low * new maintainer. took from qa (closes: Bug#279755) * added homepage to description -- Noèl Köthe Sun, 07 Nov 2004 01:34:18 +0100 crypt-ssleay (0.51-1) unstable; urgency=low * New upstream release -- Stephen Zander Tue, 2 Mar 2004 00:46:34 -0800 crypt-ssleay (0.49-1) unstable; urgency=low * New maintainer * New upstream release. * All NMU changes merged into CVS, Closes: #99388, #102354, #162465 -- Stephen Zander Mon, 24 Feb 2003 06:33:56 -0800 crypt-ssleay (0.45-1) unstable; urgency=low * New upstream release * Added Perl copyright statement (Closes: #157530) -- Javier Fernandez-Sanguino Pen~a Mon, 20 Jan 2003 21:23:58 +0100 crypt-ssleay (0.29-3) unstable; urgency=low * Applied Brendan O'Dea's patch (thanks!) which adapts to perl properly and following policy (Closes: #162017, #114597) -- Javier Fernandez-Sanguino Pen~a Wed, 25 Sep 2002 11:13:04 +0200 crypt-ssleay (0.29-2) unstable; urgency=low * Added build-depends for debhelper (Closes: #111982) -- Javier Fernandez-Sanguino Pen~a Tue, 11 Sep 2001 23:35:17 +0200 crypt-ssleay (0.29-1) unstable; urgency=low * New upstream release (Closes: #99388, #102354) * Fixed lintian problems. -- Javier Fernandez-Sanguino Pen~a Sun, 9 Sep 2001 03:11:04 +0200 crypt-ssleay (0.23-2) unstable; urgency=low * Fixed dependancies (Closes: #95546, #108214) -- Javier Fernandez-Sanguino Pen~a Sat, 11 Aug 2001 12:46:02 +0200 crypt-ssleay (0.23-1) unstable; urgency=low * Initial Release. * (Almost) Lintian clean, don't know how to fix the only warning given, though. -- Javier Fernandez-Sanguino Pen~a Mon, 9 Apr 2001 12:13:56 +0200