close 357617 1.3.0-3 thanks Peter Samuelson <[EMAIL PROTECTED]> writes: > [Marc 'HE' Brockschmidt] >> Package: libsvn-core-perl >> Version: 1.2.3dfsg1-3 > First question, have you tried 1.3.0-3? I'm not saying it's > necessarily fixed, but I'd appreciate if you could try it.
I've managed to dig out a x86 box. Ths is the script (attached) on my system: | [EMAIL PROTECTED]:~$ dpkg -l libsvn-core-perl | grep ^ii | ii libsvn-core-perl 1.2.3dfsg1-3 perl bindings for Subversion (aka. svn) | [EMAIL PROTECTED]:~$ perl t.pl | Permission denied: Can't open 'tmp': Permission denied at t.pl line 20 | [EMAIL PROTECTED]:~$ This is the same script, on the updated x86 box: | [EMAIL PROTECTED]:~$ dpkg -l libsvn-core-perl | grep ^ii | ii libsvn-core-perl 1.3.0-3 perl bindings for Subversion (aka. svn) | [EMAIL PROTECTED]:~$ perl t.pl | [EMAIL PROTECTED]:~$ Marc -- Fachbegriffe der Informatik - Einfach erklärt 62: professionelles Arbeiten Tetris ist nicht auf der Festplatte (Sebastian Kokemohr-Schmidt)
#!/usr/bin/perl -w use strict; use SVN::Client; use File::Temp qw(tempdir); my $repo = "svn://svn.debian.org/pkg-subversion/"; my $tempdir = tempdir ( "test.XXXXXX", DIR => "/tmp/", CLEANUP => 1); my $cwd_tmpdir = tempdir("tmp.XXXXXX", DIR => $tempdir, CLEANUP => 1); my $co_tmpdir = tempdir("svn-co.XXXXXX", DIR => $tempdir, CLEANUP => 1); chdir $cwd_tmpdir; chmod 0, $cwd_tmpdir; my $ctx = new SVN::Client(); $ctx->checkout($repo, $co_tmpdir, 'HEAD', 0); $ctx->merge($repo, 'HEAD', $repo, 500, $co_tmpdir, 1, 1, 0, 0);
pgptmtK4Jz2M6.pgp
Description: PGP signature