* [PATCH] git-svn: Update git-svn to use the ability to place temporary files within repository directory
@ 2008-11-12 14:33 Marten Svanfeldt (dev)
2008-11-12 16:38 ` [PATCH fixed] " Marten Svanfeldt (dev)
2008-11-13 9:41 ` [PATCH] " Eric Wong
0 siblings, 2 replies; 3+ messages in thread
From: Marten Svanfeldt (dev) @ 2008-11-12 14:33 UTC (permalink / raw)
To: msysgit, git; +Cc: normalperson
This fixes git-svn within msys where Perl will provide temporary files
with path such as /tmp while the git suit expects native Windows paths.
Signed-off-by: Marten Svanfeldt <developer@svanfeldt.com>
---
git-svn.perl | 9 +++++----
1 files changed, 5 insertions(+), 4 deletions(-)
diff --git a/git-svn.perl b/git-svn.perl
index ef6d773..f09f981 100755
--- a/git-svn.perl
+++ b/git-svn.perl
@@ -3312,11 +3312,11 @@ sub change_file_prop {
sub apply_textdelta {
my ($self, $fb, $exp) = @_;
- my $fh = Git::temp_acquire('svn_delta');
+ my $fh = $_repository->temp_acquire('svn_delta');
# $fh gets auto-closed() by SVN::TxDelta::apply(),
# (but $base does not,) so dup() it for reading in close_file
open my $dup, '<&', $fh or croak $!;
- my $base = Git::temp_acquire('git_blob');
+ my $base = $_repository->temp_acquire('git_blob');
if ($fb->{blob}) {
print $base 'link ' if ($fb->{mode_a} == 120000);
my $size = $::_repository->cat_blob($fb->{blob}, $base);
@@ -3357,7 +3357,8 @@ sub close_file {
warn "$path has mode 120000",
" but is not a link\n";
} else {
- my $tmp_fh = Git::temp_acquire('svn_hash');
+ my $tmp_fh = $_repository->temp_acquire(
+ 'svn_hash');
my $res;
while ($res = sysread($fh, my $str, 1024)) {
my $out = syswrite($tmp_fh, $str, $res);
@@ -3745,7 +3746,7 @@ sub change_file_prop {
sub _chg_file_get_blob ($$$$) {
my ($self, $fbat, $m, $which) = @_;
- my $fh = Git::temp_acquire("git_blob_$which");
+ my $fh = $_repository->temp_acquire("git_blob_$which");
if ($m->{"mode_$which"} =~ /^120/) {
print $fh 'link ' or croak $!;
$self->change_file_prop($fbat,'svn:special','*');
--
1.6.0.3.1437.g6c121.dirty
^ permalink raw reply related [flat|nested] 3+ messages in thread* [PATCH fixed] git-svn: Update git-svn to use the ability to place temporary files within repository directory
2008-11-12 14:33 [PATCH] git-svn: Update git-svn to use the ability to place temporary files within repository directory Marten Svanfeldt (dev)
@ 2008-11-12 16:38 ` Marten Svanfeldt (dev)
2008-11-13 9:41 ` [PATCH] " Eric Wong
1 sibling, 0 replies; 3+ messages in thread
From: Marten Svanfeldt (dev) @ 2008-11-12 16:38 UTC (permalink / raw)
To: msysgit, git; +Cc: normalperson
This fixes git-svn within msys where Perl will provide temporary files with path
such as /tmp while the git suit expects native Windows paths.
Signed-off-by: Marten Svanfeldt <developer@svanfeldt.com>
---
Somehow I managed to screw up the last patch when getting it ready for
submission. This patch is a fixed version that actually works.
git-svn.perl | 9 +++++----
1 files changed, 5 insertions(+), 4 deletions(-)
diff --git a/git-svn.perl b/git-svn.perl
index ef6d773..23ceaff 100755
--- a/git-svn.perl
+++ b/git-svn.perl
@@ -3312,11 +3312,11 @@ sub change_file_prop {
sub apply_textdelta {
my ($self, $fb, $exp) = @_;
- my $fh = Git::temp_acquire('svn_delta');
+ my $fh = $::_repository->temp_acquire('svn_delta');
# $fh gets auto-closed() by SVN::TxDelta::apply(),
# (but $base does not,) so dup() it for reading in close_file
open my $dup, '<&', $fh or croak $!;
- my $base = Git::temp_acquire('git_blob');
+ my $base = $::_repository->temp_acquire('git_blob');
if ($fb->{blob}) {
print $base 'link ' if ($fb->{mode_a} == 120000);
my $size = $::_repository->cat_blob($fb->{blob}, $base);
@@ -3357,7 +3357,8 @@ sub close_file {
warn "$path has mode 120000",
" but is not a link\n";
} else {
- my $tmp_fh = Git::temp_acquire('svn_hash');
+ my $tmp_fh = $::_repository->temp_acquire(
+ 'svn_hash');
my $res;
while ($res = sysread($fh, my $str, 1024)) {
my $out = syswrite($tmp_fh, $str, $res);
@@ -3745,7 +3746,7 @@ sub change_file_prop {
sub _chg_file_get_blob ($$$$) {
my ($self, $fbat, $m, $which) = @_;
- my $fh = Git::temp_acquire("git_blob_$which");
+ my $fh = $::_repository->temp_acquire("git_blob_$which");
if ($m->{"mode_$which"} =~ /^120/) {
print $fh 'link ' or croak $!;
$self->change_file_prop($fbat,'svn:special','*');
--
1.6.0.3.1439.gc9385a
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH] git-svn: Update git-svn to use the ability to place temporary files within repository directory
2008-11-12 14:33 [PATCH] git-svn: Update git-svn to use the ability to place temporary files within repository directory Marten Svanfeldt (dev)
2008-11-12 16:38 ` [PATCH fixed] " Marten Svanfeldt (dev)
@ 2008-11-13 9:41 ` Eric Wong
1 sibling, 0 replies; 3+ messages in thread
From: Eric Wong @ 2008-11-13 9:41 UTC (permalink / raw)
To: Marten Svanfeldt (dev); +Cc: msysgit, git
"Marten Svanfeldt (dev)" <developer@svanfeldt.com> wrote:
> This fixes git-svn within msys where Perl will provide temporary files
> with path such as /tmp while the git suit expects native Windows paths.
Ah, I completely didn't understand the related Git.pm patch from you
until I saw this sentence above.
Can you update that other patch and clarify this statement so it
makes sense to UNIX-only folks?
| This fixes issues when the Perl in use uses a different format for paths
| than in use by native code in the git tools such as msysgit with msys-perl.
Thanks,
--
Eric Wong
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2008-11-13 9:43 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-11-12 14:33 [PATCH] git-svn: Update git-svn to use the ability to place temporary files within repository directory Marten Svanfeldt (dev)
2008-11-12 16:38 ` [PATCH fixed] " Marten Svanfeldt (dev)
2008-11-13 9:41 ` [PATCH] " Eric Wong
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).