c5ef90
Name:		perl-Net-SSLeay
c5ef90
Version:	1.55
07b87a
Release:	4%{?dist}
c5ef90
Summary:	Perl extension for using OpenSSL
c5ef90
Group:		Development/Libraries
c5ef90
License:	OpenSSL
c5ef90
URL:		http://search.cpan.org/dist/Net-SSLeay/
c5ef90
Source0:	http://search.cpan.org/CPAN/authors/id/M/MI/MIKEM/Net-SSLeay-%{version}.tar.gz
07b87a
# Add ECDHE support, in upstream 1.56, bug #1316379
07b87a
Patch0:         Net-SSLeay-1.55-Add-support-for-the-basic-operations-necessary-to-su.patch
c5ef90
BuildRoot:	%{_tmppath}/%{name}-%{version}-%{release}-root-%(id -nu)
c5ef90
BuildRequires:	openssl, openssl-devel
c5ef90
# =========== Module Build ===========================
c5ef90
BuildRequires:	perl(Cwd)
c5ef90
BuildRequires:	perl(ExtUtils::MakeMaker)
c5ef90
BuildRequires:	perl(File::Path)
c5ef90
BuildRequires:	perl(lib)
c5ef90
# =========== Module Runtime =========================
c5ef90
BuildRequires:	perl(AutoLoader)
c5ef90
BuildRequires:	perl(Carp)
c5ef90
BuildRequires:	perl(Exporter)
c5ef90
BuildRequires:	perl(MIME::Base64)
c5ef90
BuildRequires:	perl(Socket)
c5ef90
BuildRequires:	perl(XSLoader)
c5ef90
# =========== Test Suite =============================
c5ef90
BuildRequires:	perl(File::Spec)
c5ef90
BuildRequires:	perl(IO::Handle)
c5ef90
BuildRequires:	perl(Test::Exception)
c5ef90
# Test::Kwalitee => Module::CPANTS::Analyze => Net::HTTP => IO::Socket::SSL => Net::SSLeay
c5ef90
# Net::SSLeay in RHEL-7 cannot BR: Test::Kwalitee from EPEL-7
c5ef90
%if 0%{!?perl_bootstrap:1} && 0%{?rhel} < 7
c5ef90
BuildRequires:	perl(Test::Kwalitee)
c5ef90
%endif
c5ef90
BuildRequires:	perl(Test::More)
c5ef90
BuildRequires:	perl(Test::NoWarnings)
c5ef90
BuildRequires:	perl(Test::Pod)
c5ef90
BuildRequires:	perl(Test::Pod::Coverage)
c5ef90
BuildRequires:	perl(Test::Warn)
c5ef90
BuildRequires:	perl(threads)
c5ef90
Requires:	perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
c5ef90
Requires:	perl(MIME::Base64)
c5ef90
Requires:	perl(XSLoader)
c5ef90
c5ef90
# Don't "provide" private Perl libs or the redundant unversioned perl(Net::SSLeay) provide
c5ef90
%global __provides_exclude ^(perl\\(Net::SSLeay\\)$|SSLeay\\.so)
c5ef90
c5ef90
%description
c5ef90
This module offers some high level convenience functions for accessing
c5ef90
web pages on SSL servers (for symmetry, same API is offered for
c5ef90
accessing http servers, too), a sslcat() function for writing your own
c5ef90
clients, and finally access to the SSL API of SSLeay/OpenSSL package
c5ef90
so you can write servers or clients for more complicated applications.
c5ef90
c5ef90
%prep
c5ef90
%setup -q -n Net-SSLeay-%{version}
07b87a
%patch0 -p1
c5ef90
c5ef90
# Fix permissions in examples to avoid bogus doc-file dependencies
c5ef90
chmod -c 644 examples/*
c5ef90
c5ef90
# Remove redundant unversioned provide if we don't have rpm 4.9 or later
c5ef90
%global provfilt /bin/sh -c "%{__perl_provides} | grep -Fvx 'perl(Net::SSLeay)'"
c5ef90
%define __perl_provides %{provfilt}
c5ef90
c5ef90
%build
c5ef90
PERL_MM_USE_DEFAULT=1 perl Makefile.PL \
c5ef90
	INSTALLDIRS=vendor \
c5ef90
	OPTIMIZE="%{optflags}"
c5ef90
make %{?_smp_mflags}
c5ef90
c5ef90
%install
c5ef90
rm -rf %{buildroot}
c5ef90
make pure_install DESTDIR=%{buildroot}
c5ef90
find %{buildroot} -type f -name .packlist -exec rm -f {} ';'
c5ef90
find %{buildroot} -type f -name '*.bs' -empty -exec rm -f {} ';'
c5ef90
%{_fixperms} %{buildroot}
c5ef90
c5ef90
# Remove script we don't want packaged
c5ef90
rm -f %{buildroot}%{perl_vendorarch}/Net/ptrtstrun.pl
c5ef90
c5ef90
%check
c5ef90
make test
c5ef90
c5ef90
%clean
c5ef90
rm -rf %{buildroot}
c5ef90
c5ef90
%files
c5ef90
%doc Changes Credits QuickRef README examples/
c5ef90
%{perl_vendorarch}/auto/Net/
c5ef90
%dir %{perl_vendorarch}/Net/
c5ef90
%{perl_vendorarch}/Net/SSLeay/
c5ef90
%{perl_vendorarch}/Net/SSLeay.pm
c5ef90
%doc %{perl_vendorarch}/Net/SSLeay.pod
c5ef90
%{_mandir}/man3/Net::SSLeay.3pm*
c5ef90
%{_mandir}/man3/Net::SSLeay::Handle.3pm*
c5ef90
c5ef90
%changelog
07b87a
* Thu Mar 10 2016 Jitka Plesnikova <jplesnik@redhat.com> - 1.55-4
07b87a
- Add ECDHE support (bug #1316379)
07b87a
baa9e8
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 1.55-3
baa9e8
- Mass rebuild 2014-01-24
baa9e8
baa9e8
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 1.55-2
baa9e8
- Mass rebuild 2013-12-27
baa9e8
c5ef90
* Sat Jun  8 2013 Paul Howarth <paul@city-fan.org> - 1.55-1
c5ef90
- update to 1.55
c5ef90
  - added support for TLSV1_1 and TLSV1_2 methods with SSL_CTX_tlsv1_1_new(),
c5ef90
    SSL_CTX_tlsv1_2_new(), TLSv1_1_method() and TLSv1_2_method(), where
c5ef90
    available in the underlying openssl
c5ef90
  - added CRL support functions X509_CRL_get_ext(), X509_CRL_get_ext_by_NID(),
c5ef90
    X509_CRL_get_ext_count()
c5ef90
  - fixed a problem that could cause content with a value of '0' to be
c5ef90
    incorrectly encoded by do_httpx3 and friends (CPAN RT#85417)
c5ef90
  - added support for SSL_get_tlsa_record_byname() required for DANE support in
c5ef90
    openssl-1.0.2 and later
c5ef90
  - testing with openssl-1.0.2-stable-SNAP-20130521
c5ef90
  - added X509_NAME_new and X509_NAME_hash
c5ef90
c5ef90
* Sat Mar 23 2013 Paul Howarth <paul@city-fan.org> - 1.54-1
c5ef90
- update to 1.54
c5ef90
  - added support for SSL_export_keying_material where present (i.e. in OpenSSL
c5ef90
    1.0.1 and later)
c5ef90
  - changed t/handle/external/50_external.t to use www.airspayce.com instead of
c5ef90
    perldition.org, who no longer have an https server
c5ef90
  - patch to fix a crash: P_X509_get_crl_distribution_points on an X509
c5ef90
    certificate with values in the CDP extension that do not have an ia5 string
c5ef90
    would cause a segmentation fault when accessed
c5ef90
  - change in t/local/32_x509_get_cert_info.t to not use
c5ef90
    Net::SSLeay::ASN1_INTEGER_get, since it works differently on 32 and 64 bit
c5ef90
    platforms
c5ef90
  - updated author and distribution location details to airspayce.com
c5ef90
  - improvement to test 07_sslecho.t so that if set_cert_and_key fails we can
c5ef90
    tell why
c5ef90
c5ef90
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.52-2
c5ef90
- rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
c5ef90
c5ef90
* Wed Jan  9 2013 Paul Howarth <paul@city-fan.org> - 1.52-1
c5ef90
- update to 1.52
c5ef90
  - rebuild package with gnu format tar, to prevent problems with unpacking on
c5ef90
    other systems such as old Solaris
c5ef90
c5ef90
* Fri Dec 14 2012 Paul Howarth <paul@city-fan.org> - 1.51-1
c5ef90
- update to 1.51
c5ef90
  - fixed a problem where SSL_set_SSL_CTX is not available with
c5ef90
    OpenSSL < 0.9.8f (CPAN RT#81940)
c5ef90
- fix bogus date in spec changelog
c5ef90
c5ef90
* Thu Dec 13 2012 Paul Howarth <paul@city-fan.org> - 1.50-1
c5ef90
- update to 1.50
c5ef90
  - fixed a problem where t/handle/external/50_external.t would crash if any of
c5ef90
    the test sites were not contactable
c5ef90
  - now builds on VMS, added README.VMS
c5ef90
  - fixed a few compiler warnings in SSLeay.xs; most of them are just
c5ef90
    signed/unsigned pointer mismatches but there is one that actually fixes
c5ef90
    returning what would be an arbitrary value off the stack from
c5ef90
    get_my_thread_id if it happened to be called in a non-threaded build
c5ef90
  - added SSL_set_tlsext_host_name, SSL_get_servername, SSL_get_servername_type,
c5ef90
    SSL_CTX_set_tlsext_servername_callback for server side Server Name
c5ef90
    Indication (SNI) support
c5ef90
  - fixed a problem with C++ comments preventing builds on AIX and HPUX
c5ef90
  - perdition.org not available for tests, changed to www.open.com.au
c5ef90
  - added SSL_FIPS_mode_set
c5ef90
  - improvements to test suite so it succeeds with and without FIPS mode
c5ef90
    enabled
c5ef90
  - added documentation, warning not to pass UTF-8 data in the content
c5ef90
    argument to post_https
c5ef90
c5ef90
* Tue Sep 25 2012 Paul Howarth <paul@city-fan.org> - 1.49-1
c5ef90
- update to 1.49
c5ef90
  - fixed problem where on some platforms test t/local/07_tcpecho.t would bail
c5ef90
    out if it could not bind port 1212; it now tries a number of ports to bind
c5ef90
    to until successful
c5ef90
  - improvements to unsigned casting
c5ef90
  - improvements to Net::SSLeay::read to make it easier to use with
c5ef90
    non-blocking IO: it modifies Net::SSLeay::read() to return the result from
c5ef90
    SSL_read() as the second return value, if Net::SSLeay::read() is called in
c5ef90
    list context (its behavior should be unchanged if called in scalar or void
c5ef90
    context)
c5ef90
  - fixed a problem where t/local/kwalitee.t fails with
c5ef90
    Module::CPANTS::Analyse 0.86
c5ef90
  - fixed a number of typos
c5ef90
  - fixed a compiler warning from Compiling with gcc-4.4 and -Wall
c5ef90
  - Fixed problems with get_https4: documentation was wrong, $header_ref was
c5ef90
    not correctly set and $server_cert was not returned
c5ef90
  - fixed a problem that could cause a Perl exception about no blength method
c5ef90
    on undef (CPAN RT#79309)
c5ef90
  - added documentation about how to mitigate various SSL/TLS vulnerabilities
c5ef90
  - SSL_MODE_* are now available as constants
c5ef90
- drop upstreamed pod encoding patch
c5ef90
c5ef90
* Mon Aug 20 2012 Paul Howarth <paul@city-fan.org> - 1.48-6
c5ef90
- fix POD encoding (CPAN RT#78281)
c5ef90
- classify buildreqs by usage
c5ef90
- BR:/R: perl(XSLoader)
c5ef90
c5ef90
* Mon Aug 13 2012 Petr Pisar <ppisar@redhat.com> - 1.48-5
c5ef90
- specify all dependencies
c5ef90
c5ef90
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.48-4
c5ef90
- rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
c5ef90
c5ef90
* Tue Jul 10 2012 Petr Pisar <ppisar@redhat.com> - 1.48-3
c5ef90
- perl 5.16 re-rebuild of bootstrapped packages
c5ef90
c5ef90
* Wed Jun 13 2012 Petr Pisar <ppisar@redhat.com> - 1.48-2
c5ef90
- perl 5.16 rebuild
c5ef90
c5ef90
* Wed Apr 25 2012 Paul Howarth <paul@city-fan.org> - 1.48-1
c5ef90
- update to 1.48
c5ef90
  - removed unneeded Debian_CPANTS.txt from MANIFEST
c5ef90
  - fixed incorrect documentation about the best way to call CTX_set_options
c5ef90
  - fixed problem that caused "Undefined subroutine utf8::encode" in
c5ef90
    t/local/33_x509_create_cert.t (on perl 5.6.2)
c5ef90
  - in examples and pod documentation, changed #!/usr/local/bin/perl
c5ef90
    to #!/usr/bin/perl
c5ef90
  - t/local/06_tcpecho.t now tries a number of ports to bind to until
c5ef90
    successful
c5ef90
- no longer need to fix shellbangs in examples
c5ef90
c5ef90
* Thu Apr 19 2012 Paul Howarth <paul@city-fan.org> - 1.47-3
c5ef90
- simplify Test::Kwalitee conditional
c5ef90
c5ef90
* Thu Apr 19 2012 Marcela Mašláňová <mmaslano@redhat.com> - 1.47-2
c5ef90
- make module Kwalitee conditional
c5ef90
c5ef90
* Wed Apr  4 2012 Paul Howarth <paul@city-fan.org> - 1.47-1
c5ef90
- update to 1.47
c5ef90
  - fixed overlong lines and spelling errors in pod
c5ef90
  - fixed extra "garbage" files in 1.46 tarball
c5ef90
  - fixed incorrect fail reports on some 64 bit platforms
c5ef90
  - fix to avoid FAIL reports from cpantesters with missing openssl
c5ef90
  - use my_snprintf from ppport.h to prevent link failures with perl 5.8 and
c5ef90
    earlier when compiled with MSVC
c5ef90
c5ef90
* Tue Apr  3 2012 Paul Howarth <paul@city-fan.org> - 1.46-1
c5ef90
- update to 1.46 (see Changes file for details)
c5ef90
- BR: openssl as well as openssl-devel, needed for building
c5ef90
- no longer need help to find openssl
c5ef90
- upstream no longer shipping TODO
c5ef90
- drop %%defattr, redundant since rpm 4.4
c5ef90
c5ef90
* Sat Feb 25 2012 Paul Howarth <paul@city-fan.org> - 1.45-1
c5ef90
- update to 1.45 (see Changes file for full details)
c5ef90
  - added thread safety and dynamic locking, which should complete thread
c5ef90
    safety work, making Net::SSLeay completely thread-safe
c5ef90
  - lots of improved documentation
c5ef90
- BR: perl(Test::Pod::Coverage)
c5ef90
- install Net/SSLeay.pod as %%doc
c5ef90
c5ef90
* Thu Jan 12 2012 Paul Howarth <paul@city-fan.org> - 1.42-2
c5ef90
- use DESTDIR rather than PERL_INSTALL_ROOT
c5ef90
- use %%{_fixperms} macro rather than our own chmod incantation
c5ef90
- BR: perl(AutoLoader), perl(Exporter), perl(Socket)
c5ef90
c5ef90
* Mon Oct  3 2011 Paul Howarth <paul@city-fan.org> - 1.42-1
c5ef90
- update to 1.42
c5ef90
  - fixed incorrect documentation of how to enable CRL checking
c5ef90
  - fixed incorrect letter in Sebastien in Credits
c5ef90
  - changed order of the Changes file to be reverse chronological
c5ef90
  - fixed a compile error when building on Windows with MSVC6
c5ef90
- drop UTF8 patch, no longer needed
c5ef90
c5ef90
* Sun Sep 25 2011 Paul Howarth <paul@city-fan.org> - 1.41-1
c5ef90
- update to 1.41
c5ef90
  - fixed incorrect const signatures for 1.0 that were causing warnings; now
c5ef90
    have clean compile with 0.9.8a through 1.0.0
c5ef90
- BR: perl(Carp)
c5ef90
c5ef90
* Fri Sep 23 2011 Paul Howarth <paul@city-fan.org> - 1.40-1
c5ef90
- update to 1.40
c5ef90
  - fixed incorrect argument type in call to SSL_set1_param
c5ef90
  - fixed a number of issues with pointer sizes; removed redundant pointer cast
c5ef90
    tests from t/
c5ef90
  - added Perl version requirements to SSLeay.pm
c5ef90
c5ef90
* Wed Sep 21 2011 Paul Howarth <paul@city-fan.org> - 1.39-1
c5ef90
- update to 1.39
c5ef90
  - downgraded Module::Install to 0.93 since 1.01 was causing problems in the
c5ef90
    Makefile
c5ef90
c5ef90
* Fri Sep 16 2011 Paul Howarth <paul@city-fan.org> - 1.38-1
c5ef90
- update to 1.38
c5ef90
  - fixed a problem with various symbols that only became available in OpenSSL
c5ef90
    0.9.8 such as X509_VERIFY_PARAM and X509_POLICY_NODE, causing build
c5ef90
    failures with older versions of OpenSSL (CPAN RT#71013)
c5ef90
c5ef90
* Fri Sep 16 2011 Paul Howarth <paul@city-fan.org> - 1.37-1
c5ef90
- update to 1.37
c5ef90
  - added X509_get_fingerprint
c5ef90
  - added support for SSL_CTX_set1_param, SSL_set1_param and selected
c5ef90
    X509_VERIFY_PARAM_* OBJ_* functions
c5ef90
  - fixed the prototype for randomize()
c5ef90
  - fixed an uninitialized value warning in $Net::SSLeay::proxyauth
c5ef90
  - allow net-ssleay to compile if SSLV2 is not present
c5ef90
  - fixed a problem where sslcat (and possibly other functions) expect RSA
c5ef90
    keys and will not load DSA keys for client certificates
c5ef90
  - removed SSL_CTX_v2_new and SSLv2_method() for OpenSSL 1.0 and later
c5ef90
  - added CTX_use_PKCS12_file
c5ef90
- this release by MIKEM => update source URL
c5ef90
c5ef90
* Tue Jul 19 2011 Petr Sabata <contyk@redhat.com> - 1.36-7
c5ef90
- Perl mass rebuild
c5ef90
c5ef90
* Thu Jul 14 2011 Paul Howarth <paul@city-fan.org> - 1.36-6
c5ef90
- BR: perl(Test::Kwalitee) if we're not bootstrapping
c5ef90
- explicitly BR: pkgconfig
c5ef90
- use a patch rather than a scripted iconv to fix the character encoding
c5ef90
- modernize provides filter
c5ef90
- stop running the tests in verbose mode
c5ef90
- nobody else likes macros for commands
c5ef90
c5ef90
* Wed Jul 13 2011 Iain Arnell <iarnell@gmail.com> - 1.36-5
c5ef90
- drop obsolete BRs Array::Compare, Sub::Uplevel, Tree::DAG_Node
c5ef90
c5ef90
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.36-4
c5ef90
- rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
c5ef90
c5ef90
* Tue Dec 21 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.36-3
c5ef90
- rebuild to fix problems with vendorarch/lib (#661697)
c5ef90
c5ef90
* Tue May 04 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.36-2
c5ef90
- mass rebuild with perl-5.12.0
c5ef90
c5ef90
* Sun Jan 31 2010 Paul Howarth <paul@city-fan.org> - 1.36-1
c5ef90
- update to 1.36 (see Changes for details)
c5ef90
- drop svn patches
c5ef90
c5ef90
* Mon Dec  7 2009 Stepan Kasal <skasal@redhat.com> - 1.35-8
c5ef90
- rebuild against perl 5.10.1
c5ef90
c5ef90
* Sat Aug 22 2009 Paul Howarth <paul@city-fan.org> - 1.35-7
c5ef90
- update to svn trunk (rev 252), needed due to omission of MD2 functionality
c5ef90
  from OpenSSL 1.0.0 (CPAN RT#48916)
c5ef90
c5ef90
* Fri Aug 21 2009 Tomas Mraz <tmraz@redhat.com> - 1.35-6
c5ef90
- rebuilt with new openssl
c5ef90
c5ef90
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.35-5
c5ef90
- rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
c5ef90
c5ef90
* Sun Mar  8 2009 Paul Howarth <paul@city-fan.org> - 1.35-4
c5ef90
- filter out unwanted provides for perl shared objects
c5ef90
- run tests in verbose mode
c5ef90
c5ef90
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.35-3
c5ef90
- rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
c5ef90
c5ef90
* Sat Jan 17 2009 Tomas Mraz <tmraz@redhat.com> - 1.35-2
c5ef90
- rebuild with new openssl
c5ef90
c5ef90
* Mon Jul 28 2008 Paul Howarth <paul@city-fan.org> - 1.35-1
c5ef90
- update to 1.35
c5ef90
- drop flag and patch for enabling/disabling external tests - patch now upstream
c5ef90
- external hosts patch no longer needed as we don't do external tests
c5ef90
- filter out unversioned provide for perl(Net::SSLeay)
c5ef90
- use the distro openssl flags rather than guessing them
c5ef90
c5ef90
* Wed Feb 27 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.32-5
c5ef90
- rebuild for perl 5.10 (again)
c5ef90
c5ef90
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.32-4
c5ef90
- autorebuild for GCC 4.3
c5ef90
c5ef90
* Thu Jan 31 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.32-3
c5ef90
- rebuild for new perl
c5ef90
c5ef90
* Wed Dec  5 2007 Paul Howarth <paul@city-fan.org> - 1.32-2
c5ef90
- rebuild with new openssl
c5ef90
c5ef90
* Wed Nov 28 2007 Paul Howarth <paul@city-fan.org> - 1.32-1
c5ef90
- update to 1.32, incorporate new upstream URLs
c5ef90
- cosmetic spec changes suiting new maintainer's preferences
c5ef90
- fix argument order for find with -depth
c5ef90
- remove patch for CVE-2005-0106, fixed upstream in 1.30 (#191351)
c5ef90
  (http://rt.cpan.org/Public/Bug/Display.html?id=19218)
c5ef90
- remove test patch, no longer needed
c5ef90
- re-encode Credits as UTF-8
c5ef90
- include TODO as %%doc
c5ef90
- add buildreqs perl(Array::Compare), perl(MIME::Base64), perl(Sub::Uplevel),
c5ef90
  perl(Test::Exception), perl(Test::NoWarnings), perl(Test::Pod),
c5ef90
  perl(Test::Warn), perl(Tree::DAG_Node)
c5ef90
- add patch needed to disable testsuite non-interactively
c5ef90
- run test suite but disable external tests by default; external tests can be
c5ef90
  enabled by using rpmbuild --with externaltests
c5ef90
- add patch to change hosts connected to in external tests
c5ef90
c5ef90
* Fri Nov 16 2007 Parag Nemade <panemade@gmail.com> - 1.30-7
c5ef90
- Merge Review (#226272) Spec cleanup
c5ef90
c5ef90
* Tue Nov  6 2007 Stepan Kasal <skasal@redhat.com> - 1.30-6
c5ef90
- fix a typo in description (#231756, #231757)
c5ef90
c5ef90
* Tue Oct 16 2007 Tom "spot" Callaway <tcallawa@redhat.com> - 1.30-5.1
c5ef90
- correct license tag
c5ef90
- add BR: perl(ExtUtils::MakeMaker)
c5ef90
c5ef90
* Tue Aug 21 2007 Warren Togami <wtogami@redhat.com> - 1.30-5
c5ef90
- rebuild
c5ef90
c5ef90
* Fri Jul 14 2006 Warren Togami <wtogami@redhat.com> - 1.30-4
c5ef90
- import into FC6
c5ef90
c5ef90
* Tue Feb 28 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.30-3
c5ef90
- Rebuild for FC5 (perl 5.8.8).
c5ef90
c5ef90
* Fri Jan 27 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.30-2
c5ef90
- CVE-2005-0106: patch from Mandriva
c5ef90
  http://wwwnew.mandriva.com/security/advisories?name=MDKSA-2006:023
c5ef90
c5ef90
* Sun Jan 15 2006 Ville Skyttä <ville.skytta at iki.fi> - 1.30-1
c5ef90
- 1.30.
c5ef90
- Optionally run the test suite during build with "--with tests".
c5ef90
c5ef90
* Wed Nov  9 2005 Ville Skyttä <ville.skytta at iki.fi> - 1.26-3
c5ef90
- Rebuild for new OpenSSL.
c5ef90
- Cosmetic cleanups.
c5ef90
c5ef90
* Wed Apr  6 2005 Michael Schwendt <mschwendt[AT]users.sf.net> - 1.26-2
c5ef90
- rebuilt
c5ef90
c5ef90
* Mon Dec 20 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:1.26-1
c5ef90
- Drop fedora.us release prefix and suffix.
c5ef90
c5ef90
* Mon Oct 25 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:1.26-0.fdr.2
c5ef90
- Convert manual page to UTF-8.
c5ef90
c5ef90
* Tue Oct 12 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:1.26-0.fdr.1
c5ef90
- Update to unofficial 1.26 from Peter Behroozi, adds get1_session(),
c5ef90
  enables session caching with IO::Socket::SSL (bug 1859, bug 1860).
c5ef90
- Bring outdated test14 up to date (bug 1859, test suite still not enabled).
c5ef90
c5ef90
* Sun Jul 11 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:1.25-0.fdr.4
c5ef90
- Rename to perl-Net-SSLeay, provide perl-Net_SSLeay for compatibility
c5ef90
  with the rest of the world.
c5ef90
c5ef90
* Wed Jul  7 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:1.25-0.fdr.3
c5ef90
- Bring up to date with current fedora.us Perl spec template.
c5ef90
- Include examples in docs.
c5ef90
c5ef90
* Sun Feb  8 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:1.25-0.fdr.2
c5ef90
- Reduce directory ownership bloat.
c5ef90
c5ef90
* Fri Oct 17 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:1.25-0.fdr.1
c5ef90
- First build.