Your message dated Mon, 1 Dec 2008 14:55:23 GMT
with message-id <[EMAIL PROTECTED]>
and subject line libvcp-perl has been removed from Debian, closing #311362
has caused the Debian Bug report #311362,
regarding libvcp-perl: "svk mirror" fails if cwd is NFS mounted
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)


-- 
311362: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=311362
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: libvcp-perl
Version: 0.9-20050110-1
Severity: important
Tags: patch

The VCP/Driver.pm creates temp files in the current working directory.
They should be created on a local file system. Creating temp files on
a NFS mounted directory will most probably fail, according to "man File::Temp",
and I can confirm that. I think it's appropriate to use/tmp instead.

The command "svk mirror" fails when mirroring a cvs repository and the
current working directory is NFS mounted. It's fixed with the following patch.

/Mikael Magnusson

--- Driver.pm.orig      2005-04-21 22:21:47.000000000 +0200
+++ Driver.pm   2005-05-31 15:50:02.471911399 +0200
@@ -955,11 +955,12 @@
 my $log_fh = lg_fh;
 {

-my $cached_in_fh  = tempfile( "vcp_XXXX" );
+my $temp_dir = '/tmp';
+my $cached_in_fh  = tempfile( "vcp_XXXX", DIR => $temp_dir );
 my $cached_in_fd  = fileno $cached_in_fh;
-my $cached_out_fh = tempfile( "vcp_XXXX" );
+my $cached_out_fh = tempfile( "vcp_XXXX", DIR => $temp_dir );
 my $cached_out_fd = fileno $cached_out_fh;
-my $cached_err_fh = tempfile( "vcp_XXXX" );
+my $cached_err_fh = tempfile( "vcp_XXXX", DIR => $temp_dir );
 my $cached_err_fd = fileno $cached_err_fh;

 my $null_fn = File::Spec->devnull;;


-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (900, 'testing'), (150, 'unstable'), (100, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.10-1-k7
Locale: LANG=sv_SE.UTF-8, LC_CTYPE=sv_SE.UTF-8 (charmap=UTF-8)

Versions of packages libvcp-perl depends on:
ii  libipc-run3-perl              0.01-1     perl IPC::Run3 - Run a subprocess 
ii  libregexp-shellish-perl       0.93-1     Shell-like regular expressions
ii  libtext-diff-perl             0.35-2     Perform diffs on files and record 
ii  libxml-autowriter-perl        0.38-1     perl XML::AutoWriter - DOCTYPE bas
ii  libxml-parser-perl            2.34-4     Perl module for parsing XML files
ii  perl                          5.8.4-8    Larry Wall's Practical Extraction 

-- no debconf information


--- End Message ---
--- Begin Message ---
Version: 0.9-20050110-1+rm

The libvcp-perl package has been removed from Debian testing, unstable and
experimental, so I am now closing the bugs that were still opened
against it.

For more information about this package's removal, read
http://bugs.debian.org/507041 . That bug might give the reasons why
this package was removed, and suggestions of possible replacements.

Don't hesitate to reply to this mail if you have any question.

Thank you for your contribution to Debian.

--
Marco Rodrigues
http://Marco.Tondela.org


--- End Message ---

Reply via email to