git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
* Problems with "git svn clone"
@ 2016-10-17 21:03 K Richard Pixley
  2016-10-19 20:41 ` Eric Wong
  0 siblings, 1 reply; 5+ messages in thread
From: K Richard Pixley @ 2016-10-17 21:03 UTC (permalink / raw)
  To: git

I'm trying to create a git-svn repository with:

git svn clone --username=pixleyr --stdlayout --branches branches --branches branches2 svn://mumble.com/mumble/mumble

but the command dies about 11seconds in with:

         A       src/kernel/ppc/2.4.26-pre5-moto-pq3-2004_06_04-0/drivers/usb/serial/belkin_sa.h

         A       src/kernel/ppc/2.4.26-pre5-moto-pq3-2004_06_04-0/drivers/usb/serial/keyspan_usa28_fw.h

error: git-svn died of signal 11

This seems awfully early and blatant for a core dump.  What can I do to
get this running?

Initially discovered on git-2.7.4, (ubuntu-16.04), but also reproduced
on freshly built top of tree git-2.10.1.445.g3cdd5d1.

--rich



________________________________
- CONFIDENTIAL-

This email and any files transmitted with it are confidential, and may also be legally privileged. If you are not the intended recipient, you may not review, use, copy, or distribute this message. If you receive this email in error, please notify the sender immediately by reply email and then delete this email.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Problems with "git svn clone"
  2016-10-17 21:03 Problems with "git svn clone" K Richard Pixley
@ 2016-10-19 20:41 ` Eric Wong
  2016-10-19 20:49   ` K Richard Pixley
  0 siblings, 1 reply; 5+ messages in thread
From: Eric Wong @ 2016-10-19 20:41 UTC (permalink / raw)
  To: K Richard Pixley; +Cc: git

K Richard Pixley <cnp637@zebra.com> wrote:
> error: git-svn died of signal 11
> 
> This seems awfully early and blatant for a core dump.  What can I do to
> get this running?

Can you show us a backtrace?  Thanks.

> Initially discovered on git-2.7.4, (ubuntu-16.04), but also reproduced
> on freshly built top of tree git-2.10.1.445.g3cdd5d1.

This could be a problem with the SVN Perl libraries, and should
be fixed in newer versions (not sure if it's made it to distros,
yet):

https://public-inbox.org/git/0BCA1E695085C645B9CD4A27DD59F6FA39AAD5CF@GBWGCEUHUBD0101.rbsres07.net/T/

Seems like it is fixed in latest Debian, maybe it needs to trickle
into Ubuntu: https://bugs.debian.org/780246

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Problems with "git svn clone"
  2016-10-19 20:41 ` Eric Wong
@ 2016-10-19 20:49   ` K Richard Pixley
  2016-10-20  0:49     ` Eric Wong
  0 siblings, 1 reply; 5+ messages in thread
From: K Richard Pixley @ 2016-10-19 20:49 UTC (permalink / raw)
  To: Eric Wong; +Cc: git

On 10/19/16 13:41 , Eric Wong wrote:
> K Richard Pixley <cnp637@zebra.com> wrote:
>> error: git-svn died of signal 11
>>
>> This seems awfully early and blatant for a core dump.  What can I do to
>> get this running?
> Can you show us a backtrace?  Thanks.
There is none.  I ran it in gdb and bt produced no results.  Nor did the
thread send bt command.
>> Initially discovered on git-2.7.4, (ubuntu-16.04), but also reproduced
>> on freshly built top of tree git-2.10.1.445.g3cdd5d1.
> This could be a problem with the SVN Perl libraries, and should
> be fixed in newer versions (not sure if it's made it to distros,
> yet):
>
> https://public-inbox.org/git/0BCA1E695085C645B9CD4A27DD59F6FA39AAD5CF@GBWGCEUHUBD0101.rbsres07.net/T/
>
> Seems like it is fixed in latest Debian, maybe it needs to trickle
> into Ubuntu: https://bugs.debian.org/780246
Thanks.  I'll try adding that.

Er... which debian would that be?  testing?  Or sid?

--rich


________________________________
- CONFIDENTIAL-

This email and any files transmitted with it are confidential, and may also be legally privileged. If you are not the intended recipient, you may not review, use, copy, or distribute this message. If you receive this email in error, please notify the sender immediately by reply email and then delete this email.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Problems with "git svn clone"
  2016-10-19 20:49   ` K Richard Pixley
@ 2016-10-20  0:49     ` Eric Wong
  2016-10-21 16:33       ` K Richard Pixley
  0 siblings, 1 reply; 5+ messages in thread
From: Eric Wong @ 2016-10-20  0:49 UTC (permalink / raw)
  To: K Richard Pixley; +Cc: git

K Richard Pixley <cnp637@zebra.com> wrote:
> On 10/19/16 13:41 , Eric Wong wrote:
> >K Richard Pixley <cnp637@zebra.com> wrote:
> >>error: git-svn died of signal 11
> >>
> >>This seems awfully early and blatant for a core dump.  What can I do to
> >>get this running?
> >Can you show us a backtrace?  Thanks.
> There is none.  I ran it in gdb and bt produced no results.  Nor did the
> thread send bt command.

You probably need to install the debug package(s) for subversion.
In case it's a different bug, maybe the debug package for Perl, too.

> >>Initially discovered on git-2.7.4, (ubuntu-16.04), but also reproduced
> >>on freshly built top of tree git-2.10.1.445.g3cdd5d1.
> >This could be a problem with the SVN Perl libraries, and should
> >be fixed in newer versions (not sure if it's made it to distros,
> >yet):
> >
> >https://public-inbox.org/git/0BCA1E695085C645B9CD4A27DD59F6FA39AAD5CF@GBWGCEUHUBD0101.rbsres07.net/T/
> >
> >Seems like it is fixed in latest Debian, maybe it needs to trickle
> >into Ubuntu: https://bugs.debian.org/780246
> Thanks.  I'll try adding that.
> 
> Er... which debian would that be?  testing?  Or sid?

It looks like it (1.9.4-3) has trickled into stretch (testing)
by now:

	https://packages.debian.org/src:subversion

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Problems with "git svn clone"
  2016-10-20  0:49     ` Eric Wong
@ 2016-10-21 16:33       ` K Richard Pixley
  0 siblings, 0 replies; 5+ messages in thread
From: K Richard Pixley @ 2016-10-21 16:33 UTC (permalink / raw)
  To: Eric Wong; +Cc: git

Thank you.

Running on debian stretch/testing it got past the 11 second mark and has
been running for a day now.  I expect it will take days, perhaps longer,
so we'll see.

--rich


________________________________
- CONFIDENTIAL-

This email and any files transmitted with it are confidential, and may also be legally privileged. If you are not the intended recipient, you may not review, use, copy, or distribute this message. If you receive this email in error, please notify the sender immediately by reply email and then delete this email.

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2016-10-21 16:33 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-10-17 21:03 Problems with "git svn clone" K Richard Pixley
2016-10-19 20:41 ` Eric Wong
2016-10-19 20:49   ` K Richard Pixley
2016-10-20  0:49     ` Eric Wong
2016-10-21 16:33       ` K Richard Pixley

Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

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 read-only IMAP folder(s) and NNTP newsgroup(s).