8
0
forked from pool/perl-HTTP-DAV
OBS User unknown
2009-02-27 13:06:55 +00:00
committed by Git OBS Bridge
parent a4b57498cc
commit 9948ad451d
4 changed files with 42 additions and 9 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:440f505141484022cd6a2d5da38de800544ef12e6a58b8de6c471240fa2502bd
size 74040

3
HTTP-DAV-0.36.tar.bz2 Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:17f3408198b709c491fbf4fdd94d1045c5c0667c8c35785c88a5491d8147eef1
size 75613

View File

@@ -1,3 +1,20 @@
-------------------------------------------------------------------
Fri Feb 27 11:34:13 CET 2009 - anicka@suse.cz
- update to 0.36
* Fixed RT #19616 (http://rt.cpan.org/Public/Bug/Display.html?id=19616),
LWP::UserAgent::redirect_ok() is not changed anymore. We're subclassing
it from HTTP::DAV::UserAgent and overriding redirect_ok() there.
* Fixed RT #42877 (http://rt.cpan.org/Public/Bug/Display.html?id=42877),
HTTP::DAV::UserAgent::credentials() has been modified to behave like
LWP::UserAgent::credentials(), otherwise basic authentication breakages
can occur.
* Fixed a problem with C<-depth> argument to C<HTTP::DAV::propfind()> that
could lead to massive performance degradation, especially when running
C<propfind()> against large folders.
C<-depth> was set to 1 even when passed as zero.
- fix permissions, ends of lines and perl dependency
-------------------------------------------------------------------
Tue Jan 20 15:53:14 CET 2009 - anicka@suse.cz

View File

@@ -1,5 +1,5 @@
#
# spec file for package perl-HTTP-DAV (Version 0.35)
# spec file for package perl-HTTP-DAV (Version 0.36)
#
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
@@ -20,13 +20,13 @@
Url: http://www.cpan.org/modules/by-module/HTTP/
Name: perl-HTTP-DAV
BuildRequires: perl-XML-DOM perl-XML-Parser perl-libwww-perl
BuildRequires: dos2unix perl-XML-DOM perl-XML-Parser perl-libwww-perl
License: Artistic License
Group: Development/Libraries/Perl
Requires: perl-libwww-perl
Requires: perl-libwww-perl perl = %{perl_version}
AutoReqProv: on
Summary: A WebDAV client library for Perl5
Version: 0.35
Version: 0.36
Release: 1
Source: HTTP-DAV-%{version}.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build
@@ -44,7 +44,10 @@ Authors:
%prep
%setup -q -n HTTP-DAV-%{version}
# ---------------------------------------------------------------------------
chmod a-x README Changes MANIFEST
dos2unix README Changes MANIFEST
chmod a-x DAV/*.pm DAV.pm
dos2unix DAV/*.pm DAV.pm
%build
perl Makefile.PL
@@ -52,7 +55,6 @@ make
%check
make test
# ---------------------------------------------------------------------------
%install
make DESTDIR=$RPM_BUILD_ROOT install_vendor
@@ -73,6 +75,20 @@ make DESTDIR=$RPM_BUILD_ROOT install_vendor
/var/adm/perl-modules/%{name}
%changelog
* Fri Feb 27 2009 anicka@suse.cz
- update to 0.36
* Fixed RT #19616 (http://rt.cpan.org/Public/Bug/Display.html?id=19616),
LWP::UserAgent::redirect_ok() is not changed anymore. We're subclassing
it from HTTP::DAV::UserAgent and overriding redirect_ok() there.
* Fixed RT #42877 (http://rt.cpan.org/Public/Bug/Display.html?id=42877),
HTTP::DAV::UserAgent::credentials() has been modified to behave like
LWP::UserAgent::credentials(), otherwise basic authentication breakages
can occur.
* Fixed a problem with C<-depth> argument to C<HTTP::DAV::propfind()> that
could lead to massive performance degradation, especially when running
C<propfind()> against large folders.
C<-depth> was set to 1 even when passed as zero.
- fix permissions, ends of lines and perl dependency
* Tue Jan 20 2009 anicka@suse.cz
- update to 0.35
* Fixed getting single or multiple files directly to \*STDOUT.