From 2b0d6cda7a58b819b8be88d1f2331c98065a805c Mon Sep 17 00:00:00 2001
From: Emmanuel Seyman <emman...@seyman.fr>
Date: Thu, 24 Nov 2016 07:45:21 +0100
Subject: Package exists in RHEL 6

---
 .gitignore                            |  12 -
 dead.package                          |   1 +
 perl-SOAP-Lite-0.715-IO-modules.patch | 425 ----------------------------------
 perl-SOAP-Lite-0.716-test.patch       |  13 --
 perl-SOAP-Lite.spec                   | 259 ---------------------
 sources                               |   1 -
 6 files changed, 1 insertion(+), 710 deletions(-)
 delete mode 100644 .gitignore
 create mode 100644 dead.package
 delete mode 100644 perl-SOAP-Lite-0.715-IO-modules.patch
 delete mode 100644 perl-SOAP-Lite-0.716-test.patch
 delete mode 100644 perl-SOAP-Lite.spec
 delete mode 100644 sources

diff --git a/.gitignore b/.gitignore
deleted file mode 100644
index 2d0a5e0..0000000
--- a/.gitignore
+++ /dev/null
@@ -1,12 +0,0 @@
-SOAP-Lite-0.710.10.tar.gz
-/SOAP-Lite-0.713.tar.gz
-/SOAP-Lite-0.714.tar.gz
-/SOAP-Lite-0.715.tar.gz
-/SOAP-Lite-0.716.tar.gz
-/SOAP-Lite-1.06.tar.gz
-/SOAP-Lite-1.08.tar.gz
-/SOAP-Lite-1.09.tar.gz
-/SOAP-Lite-1.10.tar.gz
-/SOAP-Lite-1.11.tar.gz
-/SOAP-Lite-1.12.tar.gz
-/SOAP-Lite-1.13.tar.gz
diff --git a/dead.package b/dead.package
new file mode 100644
index 0000000..93e166e
--- /dev/null
+++ b/dead.package
@@ -0,0 +1 @@
+Package exists in RHEL 6
diff --git a/perl-SOAP-Lite-0.715-IO-modules.patch 
b/perl-SOAP-Lite-0.715-IO-modules.patch
deleted file mode 100644
index 8c7c9fc..0000000
--- a/perl-SOAP-Lite-0.715-IO-modules.patch
+++ /dev/null
@@ -1,425 +0,0 @@
-From e5091cc065b492cfaba9896cb488035e291555e6 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Petr=20=C5=A0abata?= <con...@redhat.com>
-Date: Thu, 2 Aug 2012 17:10:04 +0200
-Subject: [PATCH] Add IO::SessionDat and IO::SessionSet from SOAP::Lite 0.714
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-
-Signed-off-by: Petr Šabata <con...@redhat.com>
----
- lib/IO/SessionData.pm |  230 +++++++++++++++++++++++++++++++++++++++++++++++++
- lib/IO/SessionSet.pm  |  163 ++++++++++++++++++++++++++++++++++
- 2 files changed, 393 insertions(+), 0 deletions(-)
- create mode 100644 lib/IO/SessionData.pm
- create mode 100644 lib/IO/SessionSet.pm
-
-diff --git a/lib/IO/SessionData.pm b/lib/IO/SessionData.pm
-new file mode 100644
-index 0000000..de85382
---- /dev/null
-+++ b/lib/IO/SessionData.pm
-@@ -0,0 +1,230 @@
-+# ======================================================================
-+#
-+# Copyright (C) 2000 Lincoln D. Stein
-+# Slightly modified by Paul Kulchenko to work on multiple platforms
-+# Formatting changed to match the layout layed out in Perl Best Practices
-+# (by Damian Conway) by Martin Kutter in 2008
-+#
-+# ======================================================================
-+
-+package IO::SessionData;
-+
-+use strict;
-+use Carp;
-+use IO::SessionSet;
-+use vars '$VERSION';
-+$VERSION = 1.02;
-+
-+use constant BUFSIZE => 3000;
-+
-+BEGIN {
-+    my @names = qw(EWOULDBLOCK EAGAIN EINPROGRESS);
-+    my %WOULDBLOCK =
-+        (eval {require Errno}
-+            ? map {
-+                Errno->can($_)
-+                    ? (Errno->can($_)->() => 1)
-+                    : (),
-+                } @names
-+            : ()
-+        ),
-+        (eval {require POSIX}
-+            ? map {
-+                POSIX->can($_) && eval { POSIX->can($_)->() }
-+                ? (POSIX->can($_)->() => 1)
-+                    : ()
-+                } @names
-+            : ()
-+        );
-+
-+    sub WOULDBLOCK { $WOULDBLOCK{$_[0]+0} }
-+}
-+
-+# Class method: new()
-+# Create a new IO::SessionData object.  Intended to be called from within
-+# IO::SessionSet, not directly.
-+sub new {
-+    my $pack = shift;
-+    my ($sset,$handle,$writeonly) = @_;
-+    # make the handle nonblocking (but check for 'blocking' method first)
-+    # thanks to Jos Clijmans <jos.clijm...@recyfin.be>
-+    $handle->blocking(0) if $handle->can('blocking');
-+    my $self = bless {
-+        outbuffer   => '',
-+        sset        => $sset,
-+        handle      => $handle,
-+        write_limit => BUFSIZE,
-+        writeonly   => $writeonly,
-+        choker      => undef,
-+        choked      => 0,
-+    },$pack;
-+    $self->readable(1) unless $writeonly;
-+    return $self;
-+}
-+
-+# Object method: handle()
-+# Return the IO::Handle object corresponding to this IO::SessionData
-+sub handle {
-+    return shift->{handle};
-+}
-+
-+# Object method: sessions()
-+# Return the IO::SessionSet controlling this object.
-+sub sessions {
-+    return shift->{sset};
-+}
-+
-+# Object method: pending()
-+# returns number of bytes pending in the out buffer
-+sub pending {
-+    return length shift->{outbuffer};
-+}
-+
-+# Object method: write_limit([$bufsize])
-+# Get or set the limit on the size of the write buffer.
-+# Write buffer will grow to this size plus whatever extra you write to it.
-+sub write_limit {
-+    my $self = shift;
-+    return defined $_[0]
-+        ? $self->{write_limit} = $_[0]
-+        : $self->{write_limit};
-+}
-+
-+# set a callback to be called when the contents of the write buffer becomes 
larger
-+# than the set limit.
-+sub set_choke {
-+    my $self = shift;
-+    return defined $_[0]
-+        ? $self->{choker} = $_[0]
-+        : $self->{choker};
-+}
-+
-+# Object method: write($scalar)
-+# $obj->write([$data]) -- append data to buffer and try to write to handle
-+# Returns number of bytes written, or 0E0 (zero but true) if data queued but 
not
-+# written. On other errors, returns undef.
-+sub write {
-+    my $self = shift;
-+    return unless my $handle = $self->handle; # no handle
-+    return unless defined $self->{outbuffer}; # no buffer for queued data
-+
-+    $self->{outbuffer} .= $_[0] if defined $_[0];
-+
-+    my $rc;
-+    if ($self->pending) { # data in the out buffer to write
-+        local $SIG{PIPE}='IGNORE';
-+        # added length() to make it work on Mac. Thanks to Robin Fuller 
<rful...@broadjump.com>
-+        $rc = syswrite($handle,$self->{outbuffer},length($self->{outbuffer}));
-+
-+        # able to write, so truncate out buffer apropriately
-+        if ($rc) {
-+            substr($self->{outbuffer},0,$rc) = '';
-+        }
-+        elsif (WOULDBLOCK($!)) {  # this is OK
-+            $rc = '0E0';
-+        }
-+        else { # some sort of write error, such as a PIPE error
-+            return $self->bail_out($!);
-+        }
-+    }
-+    else {
-+        $rc = '0E0';   # nothing to do, but no error either
-+    }
-+
-+    $self->adjust_state;
-+
-+    # Result code is the number of bytes successfully transmitted
-+    return $rc;
-+}
-+
-+# Object method: read($scalar,$length [,$offset])
-+# Just like sysread(), but returns the number of bytes read on success,
-+# 0EO ("0 but true") if the read would block, and undef on EOF and other 
failures.
-+sub read {
-+    my $self = shift;
-+    return unless my $handle = $self->handle;
-+    my $rc = sysread($handle,$_[0],$_[1],$_[2]||0);
-+    return $rc if defined $rc;
-+    return '0E0' if WOULDBLOCK($!);
-+    return;
-+}
-+
-+# Object method: close()
-+# Close the session and remove it from the monitored list.
-+sub close {
-+    my $self = shift;
-+    unless ($self->pending) {
-+        $self->sessions->delete($self);
-+        CORE::close($self->handle);
-+    }
-+    else {
-+        $self->readable(0);
-+        $self->{closing}++;  # delayed close
-+    }
-+}
-+
-+# Object method: adjust_state()
-+# Called periodically from within write() to control the
-+# status of the handle on the IO::SessionSet's IO::Select sets
-+sub adjust_state {
-+    my $self = shift;
-+
-+    # make writable if there's anything in the out buffer
-+    $self->writable($self->pending > 0);
-+
-+    # make readable if there's no write limit, or the amount in the out
-+    # buffer is less than the write limit.
-+    $self->choke($self->write_limit <= $self->pending) if $self->write_limit;
-+
-+    # Try to close down the session if it is flagged
-+    # as in the closing state.
-+    $self->close if $self->{closing};
-+}
-+
-+# choke gets called when the contents of the write buffer are larger
-+# than the limit.  The default action is to inactivate the session for further
-+# reading until the situation is cleared.
-+sub choke {
-+    my $self = shift;
-+    my $do_choke = shift;
-+    return if $self->{choked} == $do_choke;  # no change in state
-+    if (ref $self->set_choke eq 'CODE') {
-+        $self->set_choke->($self,$do_choke);
-+    }
-+    else {
-+        $self->readable(!$do_choke);
-+    }
-+    $self->{choked} = $do_choke;
-+}
-+
-+# Object method: readable($flag)
-+# Flag the associated IO::SessionSet that we want to do reading on the handle.
-+sub readable {
-+    my $self = shift;
-+    my $is_active = shift;
-+    return if $self->{writeonly};
-+    $self->sessions->activate($self,'read',$is_active);
-+}
-+
-+# Object method: writable($flag)
-+# Flag the associated IO::SessionSet that we want to do writing on the handle.
-+sub writable {
-+    my $self = shift;
-+    my $is_active = shift;
-+    $self->sessions->activate($self,'write',$is_active);
-+}
-+
-+# Object method: bail_out([$errcode])
-+# Called when an error is encountered during writing (such as a PIPE).
-+# Default behavior is to flush all buffered outgoing data and to close
-+# the handle.
-+sub bail_out {
-+    my $self = shift;
-+    my $errcode = shift;           # save errorno
-+    delete $self->{outbuffer};     # drop buffered data
-+    $self->close;
-+    $! = $errcode;                 # restore errno
-+    return;
-+}
-+
-+1;
-diff --git a/lib/IO/SessionSet.pm b/lib/IO/SessionSet.pm
-new file mode 100644
-index 0000000..ae6e4fe
---- /dev/null
-+++ b/lib/IO/SessionSet.pm
-@@ -0,0 +1,163 @@
-+# ======================================================================
-+#
-+# Copyright (C) 2000 Lincoln D. Stein
-+# Formatting changed to match the layout layed out in Perl Best Practices
-+# (by Damian Conway) by Martin Kutter in 2008
-+#
-+# ======================================================================
-+
-+package IO::SessionSet;
-+
-+use strict;
-+use Carp;
-+use IO::Select;
-+use IO::Handle;
-+use IO::SessionData;
-+
-+use vars '$DEBUG';
-+$DEBUG = 0;
-+
-+# Class method new()
-+# Create a new Session set.
-+# If passed a listening socket, use that to
-+# accept new IO::SessionData objects automatically.
-+sub new {
-+    my $pack = shift;
-+    my $listen = shift;
-+    my $self = bless {
-+        sessions     => {},
-+        readers      => IO::Select->new(),
-+        writers      => IO::Select->new(),
-+        }, $pack;
-+    # if initialized with an IO::Handle object (or subclass)
-+    # then we treat it as a listening socket.
-+    if ( defined($listen) and $listen->can('accept') ) {
-+        $self->{listen_socket} = $listen;
-+        $self->{readers}->add($listen);
-+    }
-+    return $self;
-+}
-+
-+# Object method: sessions()
-+# Return list of all the sessions currently in the set.
-+sub sessions {
-+    return values %{shift->{sessions}}
-+};
-+
-+# Object method: add()
-+# Add a handle to the session set.  Will automatically
-+# create a IO::SessionData wrapper around the handle.
-+sub add {
-+    my $self = shift;
-+    my ($handle,$writeonly) = @_;
-+    warn "Adding a new session for $handle.\n" if $DEBUG;
-+    return $self->{sessions}{$handle} =
-+        $self->SessionDataClass->new($self,$handle,$writeonly);
-+}
-+
-+# Object method: delete()
-+# Remove a session from the session set.  May pass either a handle or
-+# a corresponding IO::SessionData wrapper.
-+sub delete {
-+    my $self = shift;
-+    my $thing = shift;
-+    my $handle = $self->to_handle($thing);
-+    my $sess = $self->to_session($thing);
-+    warn "Deleting session $sess handle $handle.\n" if $DEBUG;
-+    delete $self->{sessions}{$handle};
-+    $self->{readers}->remove($handle);
-+    $self->{writers}->remove($handle);
-+}
-+
-+# Object method: to_handle()
-+# Return a handle, given either a handle or a IO::SessionData object.
-+sub to_handle {
-+    my $self = shift;
-+    my $thing = shift;
-+    return $thing->handle if $thing->isa('IO::SessionData');
-+    return $thing if defined (fileno $thing);
-+    return;  # undefined value
-+}
-+
-+# Object method: to_session
-+# Return a IO::SessionData object, given either a handle or the object itself.
-+sub to_session {
-+    my $self = shift;
-+    my $thing = shift;
-+    return $thing if $thing->isa('IO::SessionData');
-+    return $self->{sessions}{$thing} if defined (fileno $thing);
-+    return;  # undefined value
-+}
-+
-+# Object method: activate()
-+# Called with parameters ($session,'read'|'write' [,$activate])
-+# If called without the $activate argument, will return true
-+# if the indicated handle is on the read or write IO::Select set.
-+# May use either a session object or a handle as first argument.
-+sub activate {
-+    my $self = shift;
-+    my ($thing,$rw,$act) = @_;
-+    croak 'Usage $obj->activate($session,"read"|"write" [,$activate])'
-+        unless @_ >= 2;
-+    my $handle = $self->to_handle($thing);
-+    my $select = lc($rw) eq 'read' ? 'readers' : 'writers';
-+    my $prior = defined $self->{$select}->exists($handle);
-+    if (defined $act && $act != $prior) {
-+        $self->{$select}->add($handle)        if $act;
-+        $self->{$select}->remove($handle) unless $act;
-+        warn $act ? 'Activating' : 'Inactivating',
-+            " handle $handle for ",
-+            $rw eq 'read' ? 'reading':'writing',".\n" if $DEBUG;
-+    }
-+    return $prior;
-+}
-+
-+# Object method: wait()
-+# Wait for I/O.  Handles writes automatically.  Returns a list of
-+# IO::SessionData objects ready for reading.
-+# If there is a listen socket, then will automatically do an accept()
-+# and return a new IO::SessionData object for that.
-+sub wait {
-+    my $self = shift;
-+    my $timeout = shift;
-+
-+    # Call select() to get the list of sessions that are ready for
-+    # reading/writing.
-+    warn "IO::Select->select() returned error: $!"
-+        unless my ($read,$write) =
-+            
IO::Select->select($self->{readers},$self->{writers},undef,$timeout);
-+
-+    # handle queued writes automatically
-+    foreach (@$write) {
-+        my $session = $self->to_session($_);
-+        warn "Writing pending data (",$session->pending+0," bytes) for $_.\n"
-+            if $DEBUG;
-+        my $rc = $session->write;
-+    }
-+
-+    # Return list of sessions that are ready for reading.
-+    # If one of the ready handles is the listen socket, then
-+    # create a new session.
-+    # Otherwise return the ready handles as a list of IO::SessionData objects.
-+    my @sessions;
-+    foreach (@$read) {
-+        if ($_ eq $self->{listen_socket}) {
-+            my $newhandle = $_->accept;
-+            warn "Accepting a new handle $newhandle.\n" if $DEBUG;
-+            my $newsess = $self->add($newhandle) if $newhandle;
-+            push @sessions,$newsess;
-+        }
-+        else {
-+            push @sessions,$self->to_session($_);
-+        }
-+    }
-+    return @sessions;
-+}
-+
-+# Class method: SessionDataClass
-+# Return the string containing the name of the session data
-+# wrapper class.  Subclass and override to use a different
-+# session data class.
-+sub SessionDataClass {  return 'IO::SessionData'; }
-+
-+1;
--- 
-1.7.7.6
-
diff --git a/perl-SOAP-Lite-0.716-test.patch b/perl-SOAP-Lite-0.716-test.patch
deleted file mode 100644
index 0fae97f..0000000
--- a/perl-SOAP-Lite-0.716-test.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff --git a/t/04-attach.t b/t/04-attach.t
-index 3258e89..6fb5650 100644
---- a/t/04-attach.t
-+++ b/t/04-attach.t
-@@ -20,7 +20,7 @@ BEGIN {
-     }
- }
- 
--BEGIN { plan tests => 15 }
-+BEGIN { plan tests => 18 }
- 
- my ( $a, $soap, $d, $s, $r, $serialized, $deserialized );
- 
diff --git a/perl-SOAP-Lite.spec b/perl-SOAP-Lite.spec
deleted file mode 100644
index 14400cd..0000000
--- a/perl-SOAP-Lite.spec
+++ /dev/null
@@ -1,259 +0,0 @@
-Name:       perl-SOAP-Lite
-Version:    0.716
-Release:    4%{?dist}
-Summary:    Client and server side SOAP implementation
-License:    GPL+ or Artistic
-Group:      Development/Libraries
-URL:        http://search.cpan.org/dist/SOAP-Lite/
-Source0:    
http://search.cpan.org/CPAN/authors/id/M/MK/MKUTTER/SOAP-Lite-%{version}.tar.gz
-# This shouldn't be needed with 0.717+ (#78489)
-Patch0:     perl-SOAP-Lite-0.715-IO-modules.patch
-Patch1:     perl-SOAP-Lite-0.716-test.patch
-BuildArch:  noarch
-
-# Core package
-BuildRequires:  perl
-BuildRequires:  perl(Class::Inspector)
-BuildRequires:  perl(constant)
-BuildRequires:  perl(MIME::Base64)
-BuildRequires:  perl(Scalar::Util)
-BuildRequires:  perl(Task::Weaken)
-BuildRequires:  perl(Test::More)
-BuildRequires:  perl(URI)
-BuildRequires:  perl(XML::Parser) >= 2.23
-# Optional
-BuildRequires:  perl(LWP::UserAgent)
-BuildRequires:  perl(Crypt::SSLeay)
-BuildRequires:  perl(MIME::Lite)
-BuildRequires:  perl(HTTP::Daemon)
-BuildRequires:  perl(Apache)
-BuildRequires:  perl(FCGI)
-BuildRequires:  perl(MIME::Parser)
-BuildRequires:  perl(Net::POP3)
-BuildRequires:  perl(IO::File)
-BuildRequires:  perl(IO::Socket::SSL)
-BuildRequires:  perl(Compress::Zlib)
-
-Requires:       perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
-Requires:       perl(Compress::Zlib)
-Requires:       perl(Encode)
-Requires:       perl(Errno)
-Requires:       perl(HTTP::Daemon)
-Requires:       perl(HTTP::Headers)
-Requires:       perl(HTTP::Request)
-Requires:       perl(LWP::UserAgent)
-Requires:       perl(MIME::Base64)
-Requires:       perl(MIME::Entity)
-Requires:       perl(MIME::Parser)
-Requires:       perl(POSIX)
-Requires:       perl(URI)
-Requires:       perl(XML::Parser)
-Requires:       perl(XML::Parser::Lite)
-
-# RPM 4.8 filters
-%{?filter_setup:
-%filter_from_requires /perl(My::/d
-%filter_from_provides /perl(My::/d
-%filter_from_provides /perl(LWP::Protocol)/d
-%?perl_default_filter
-}
-# RPM 4.9 filters
-%global __provides_exclude 
%{?__provides_exclude:%__provides_exclude|}perl\\(My::.*\\)
-%global __provides_exclude %__provides_exclude|perl\\(LWP::Protocol\\)
-%global __requires_exclude 
%{?_requires_exclude:%__requires_exclude|}perl\\(My::\\)
-
-%description
-SOAP::Lite is a collection of Perl modules which provides a simple and
-lightweight interface to the Simple Object Access Protocol (SOAP) both on
-client and server side.
-
-%prep
-%setup -q -n SOAP-Lite-%{version}
-%patch0 -p1
-%patch1 -p1
-find examples -type f -exec chmod ugo-x {} \;
-
-%build
-perl Makefile.PL --noprompt INSTALLDIRS=vendor
-make %{?_smp_mflags}
-
-%install
-make pure_install DESTDIR=%{buildroot}
-find %{buildroot} -type f -name .packlist -exec rm -f {} ';'
-chmod -R u+w %{buildroot}/*
-
-%check
-# PERL_PERTURB_KEYS=0 to work around CPAN RT#84168, fixed in 1.01.
-PERL_PERTURB_KEYS=0 make test
-
-%files
-%doc Changes README ReleaseNotes.txt examples
-%{_bindir}/*pl
-%{perl_vendorlib}/SOAP
-%{perl_vendorlib}/Apache
-%{perl_vendorlib}/IO
-%{perl_vendorlib}/UDDI
-%{perl_vendorlib}/XML
-%{perl_vendorlib}/XMLRPC
-%{_mandir}/man3/*
-%{_mandir}/man1/*
-
-%changelog
-* Fri Mar 06 2015 Emmanuel Seyman <emman...@seyman.fr> - 0.716-4
-- Build for EPEL6
-
-* Sun Aug 04 2013 Petr Pisar <ppi...@redhat.com> - 0.716-3
-- Perl 5.18 rebuild
-- Adjust tests for Perl 5.18 (CPAN RT#84168)
-
-* Sun Aug 04 2013 Fedora Release Engineering <rel-...@lists.fedoraproject.org> 
- 0.716-2
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
-
-* Mon May 13 2013 Petr Šabata <con...@redhat.com> - 0.716-1
-- 0.716 bugfix bump
-- Fixing historical bogus dates in changelog
-
-* Mon May 06 2013 Petr Pisar <ppi...@redhat.com> - 0.715-4
-- Fix sending a large object (bug #960011)
-
-* Thu Feb 14 2013 Fedora Release Engineering <rel-...@lists.fedoraproject.org> 
- 0.715-3
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
-
-* Thu Aug 02 2012 Petr Šabata <con...@redhat.com> - 0.715-2
-- Bundle 0.714 IO modules to fix dependency breakage
-  (confirmed as unintentional by upstream)
-
-* Thu Jul 19 2012 Petr Šabata <con...@redhat.com> - 0.715-1
-- 0.715 bump
-- Drop command macros
-
-* Fri Jun 29 2012 Petr Pisar <ppi...@redhat.com> - 0.714-3
-- Perl 5.16 rebuild
-
-* Fri Jan 13 2012 Fedora Release Engineering <rel-...@lists.fedoraproject.org> 
- 0.714-2
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
-
-* Mon Aug 22 2011 Petr Sabata <con...@redhat.com> - 0.714-1
-- 0.714 bump
-
-* Wed Aug 17 2011 Petr Sabata <con...@redhat.com> - 0.713-1
-- 0.713 bump
-- Drop all patches (included upstream)
-- Remove now obsolete defattr
-
-* Fri Jul 22 2011 Petr Sabata <con...@redhat.com> - 0.712-8
-- RPM 4.9 dependency filtering added
-- Add patch for XML::Parser::Lite from rt#68088; perl5.14 fix
-
-* Thu Jul 21 2011 Petr Sabata <con...@redhat.com> - 0.712-7
-- Perl mass rebuild
-
-* Wed Jul 20 2011 Petr Sabata <con...@redhat.com> - 0.712-6
-- Perl mass rebuild
-
-* Tue May 31 2011 Petr Sabata <con...@redhat.com> - 0.712-5
-- Filter LWP::Protocol from Provides (#709269)
-
-* Tue May 17 2011 Petr Sabata <psab...@redhat.com> - 0.712-4
-- Do not require Apache2::*; this introduces mod_perl/httpd dependencies
-  This is optional and needed only when running under mod_perl which provides
-  those modules. (#705084)
-- Use read() instead of sysread() under mod_perl (#663931), mod_perl patch
-
-* Fri Apr  8 2011 Petr Sabata <psab...@redhat.com> - 0.712-3
-- BuildArch: noarch
-
-* Wed Apr  6 2011 Petr Sabata <psab...@redhat.com> - 0.712-2
-- Fix Requires typos
-
-* Tue Apr  5 2011 Petr Sabata <psab...@redhat.com> - 0.712-1
-- 0.712 bump
-- Removing clean section
-- Removing 'defined hash' patch (included upstream)
-- Fixing BRs/Rs; hopefully I didn't omit anything
-
-* Wed Feb 09 2011 Fedora Release Engineering <rel-...@lists.fedoraproject.org> 
- 0.711-3
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
-
-* Tue Nov 23 2010 Marcela Mašláňová <mmasl...@redhat.com> - 0.711-2
-- add R: LWP::UserAgent and clean spec from buildroot
-
-* Thu Jun  3 2010 Marcela Mašláňová <mmasl...@redhat.com> - 0.711-1
-- update and apply fix from 
https://rt.cpan.org/Public/Bug/Display.html?id=52015
-
-* Thu May 13 2010 Ralf Corsépius <corse...@fedoraproject.org> - 0.710.10-4
-- BR: perl(version) (Fix perl-5.12.0 build breakdown).
-
-* Thu May 06 2010 Marcela Maslanova <mmasl...@redhat.com> - 0.710.10-3
-- Mass rebuild with perl-5.12.0
-
-* Mon Jan 18 2010 Stepan Kasal <ska...@redhat.com> - 0.710.10-2
-- limit BR perl(FCGI) to Fedora
-
-* Wed Oct  7 2009 Stepan Kasal <ska...@redhat.com> - 0.710.10-1
-- new upstream release
-- drop upstreamed patch
-- add missing build requires
-- use %%filter-* macros
-
-* Sun Jul 26 2009 Fedora Release Engineering <rel-...@lists.fedoraproject.org> 
- 0.710.08-4
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
-
-* Fri May  8 2009 Michael Schwendt <mschwe...@fedoraproject.org> - 0.710.08-3
-- Filter out perl(LWP::Protocol) Provides, which comes from a file
-  not stored in Perl's search path for modules (#472359).
-
-* Thu Feb 26 2009 Fedora Release Engineering <rel-...@lists.fedoraproject.org> 
- 0.710.08-2
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
-
-* Thu Dec 11 2008 Lubomir Rintel <lkund...@v3.sk> - 0.710.08-1
-- New upstream release
-- Enable tests
-- Include examples in documentation
-- Don't grab in dependencies of exotic transports (for the sake
-  of consistency with existing practice of Jabber transport)
-
-* Tue Sep 09 2008 Lubomir Rintel <lkund...@v3.sk> - 0.710.07-2
-- Re-add the nil patch
-
-* Tue Jun 24 2008 Mike McGrath <mmcgr...@redhat.com> - 0.710.07-1
-- Upstream released new version
-
-* Mon Mar  3 2008 Tom "spot" Callaway <tcall...@redhat.com> - 0.68-6
-- rebuild for new perl
-
-* Thu Oct 18 2007 Mike McGrath <mmcgr...@redhat.com> - 0.68-5
-- Fixed build requires
-
-* Tue Oct 16 2007 Tom "spot" Callaway <tcall...@redhat.com> - 0.68-4.1
-- correct license tag
-- add BR: perl(ExtUtils::MakeMaker)
-
-* Mon Mar 05 2007 Mike McGrath <mmcgr...@redhat.com> - 0.68-4
-- bogus reqs diff
-
-* Sat Jan 06 2007 Mike McGrath <imli...@gmail.com> - 0.68-3
-- Changed the way this package removes bogus reqs for EL4
-
-* Sun Sep 10 2006 Mike McGrath <imli...@gmail.com> - 0.68-1
-- Rebuild
-
-* Tue Jul 18 2006 Mike McGrath <imli...@gmail.com> - 0.68-1
-- New upstream source
-- Patch provided for <value><nil/></value> issues
-
-* Mon Mar 20 2006 Mike McGrath <imli...@gmail.com> - 0.67-2
-- Removed perl requirements that do not yet exist in Extras
-
-* Sat Mar 18 2006 Mike McGrath <imli...@gmail.com> - 0.67-1
-- New Owner and new spec file
-
-* Wed Oct 26 2005 Ville Skyttä <ville.skytta at iki.fi> - 0.60a-3
-- Fix build, doc permissions (#169821).
-
-* Wed Apr 06 2005 Hunter Matthews <t...@duke.edu> 0.60a-2
-- Review suggestions from José Pedro Oliveira
-
-* Fri Mar 18 2005 Hunter Matthews <t...@duke.edu> 0.60a-1
-- Initial packaging.
-
diff --git a/sources b/sources
deleted file mode 100644
index d4e747a..0000000
--- a/sources
+++ /dev/null
@@ -1 +0,0 @@
-d9cef5120d52745ecfd24a7622f08d2f  SOAP-Lite-0.716.tar.gz
-- 
cgit v0.12


        
http://pkgs.fedoraproject.org/cgit/perl-SOAP-Lite.git/commit/?h=el6&id=2b0d6cda7a58b819b8be88d1f2331c98065a805c
_______________________________________________
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org

Reply via email to