OpenPKG CVS Repository
http://cvs.openpkg.org/
____________________________________________________________________________
Server: cvs.openpkg.org Name: Ralf S. Engelschall
Root: /v/openpkg/cvs Email: [EMAIL PROTECTED]
Module: openpkg-src Date: 16-Aug-2005 11:29:28
Branch: HEAD Handle: 2005081610292800
Modified files:
openpkg-src/vcheck vcheck.patch vcheck.spec
Log:
adjust to a more correct Perl syntax (it worked before because Perl is
very forgiving and does a lot of guessing what is meant)
Summary:
Revision Changes Path
1.2 +2 -2 openpkg-src/vcheck/vcheck.patch
1.18 +1 -1 openpkg-src/vcheck/vcheck.spec
____________________________________________________________________________
patch -p0 <<'@@ .'
Index: openpkg-src/vcheck/vcheck.patch
============================================================================
$ cvs diff -u -r1.1 -r1.2 vcheck.patch
--- openpkg-src/vcheck/vcheck.patch 9 Aug 2005 20:34:55 -0000 1.1
+++ openpkg-src/vcheck/vcheck.patch 16 Aug 2005 09:29:28 -0000 1.2
@@ -16,8 +16,8 @@
} else {
- local $_ = $ua->request($req);
+ local $_;
-+ delete %ENV->{FTP_PASSIVE}; $_ = $ua->request($req);
-+ $ENV{FTP_PASSIVE}=1; $_ = $ua->request($req) if($isftp and
$_->{_headers}->{content-length} == 0);
++ delete $ENV{FTP_PASSIVE}; $_ = $ua->request($req);
++ $ENV{FTP_PASSIVE}=1; $_ = $ua->request($req) if ($isftp and
$_->{_headers}->{content-length} == 0);
$xfersum += length($_->headers) + length $_->content;
$_->content
}
@@ .
patch -p0 <<'@@ .'
Index: openpkg-src/vcheck/vcheck.spec
============================================================================
$ cvs diff -u -r1.17 -r1.18 vcheck.spec
--- openpkg-src/vcheck/vcheck.spec 9 Aug 2005 20:34:55 -0000 1.17
+++ openpkg-src/vcheck/vcheck.spec 16 Aug 2005 09:29:28 -0000 1.18
@@ -33,7 +33,7 @@
Group: Network
License: Artistic
Version: 1.2.1
-Release: 20050809
+Release: 20050816
# list of sources
Source0:
http://www.tu-ilmenau.de/~gomar/stuff/vcheck/vcheck-%{version}.tar.gz
@@ .
______________________________________________________________________
The OpenPKG Project www.openpkg.org
CVS Repository Commit List [email protected]