Re: SVN Access violation crash

2013-01-31 Thread Thorsten Schöning
Guten Tag Mark Peters, am Mittwoch, 30. Januar 2013 um 23:37 schrieben Sie: C:\src-trunk-cpp\boingowifi\win8\buildsvn ci -m Increment project build number. --username dev --password GoBoingo ..\project\BoingoWiFinder\BoingoWiFinder\MainPage.xaml.cs This application has halted due to an

[OPW] Introducing the 2013 Apache Subversion Intern

2013-01-31 Thread Gabriela Gibson
Hi everyone, I am the current Gnome Outreach Program for Women intern for the Apache Subversion project, sponsored by Elego, Berlin, Germany. OPW is a GNOME Woman initiative that aims to inspire women to contribute to Free Software projects. A short introduction to my official goals for the

Re: [OPW] Introducing the 2013 Apache Subversion Intern

2013-01-31 Thread Nico Kadel-Garcia
On Thu, Jan 31, 2013 at 7:24 AM, Gabriela Gibson gabriela.gib...@gmail.com wrote: Hi everyone, I am the current Gnome Outreach Program for Women intern for the Apache Subversion project, sponsored by Elego, Berlin, Germany. OPW is a GNOME Woman initiative that aims to inspire women to

svn info does not work with symlink to different working copy

2013-01-31 Thread Michael Kaufmann
Hi all, I am using Subverison 1.7.8. On my disk are two Subversion working copies (from different repositories), and one working copy contains a symlink to the other: /modules/test/dir/file.dat /sources/test/modules - ../../modules/test/ Unfortunately svn info does not work with an absolute

Re: [OPW] Introducing the 2013 Apache Subversion Intern

2013-01-31 Thread C. Michael Pilato
On 01/31/2013 07:54 AM, Nico Kadel-Garcia wrote: Although, there is something disturbing about the descriptionGnome Woman initiative. It's difficult not to picture short women with red caps and well groomed beards, one on every lawn in a suburb, mandated by their local housing association. (My

FreeBSD project and subversion.

2013-01-31 Thread Alfred Perlstein
FreeBSD has moved to Subversion a few years ago and it's worked very, very well for us. The one area where we are having issues is merging code from project branches back into trunk. The typical workflow is: 1) create project branch. 2) code code code. 3) sync from HEAD (this works

Re: FreeBSD project and subversion.

2013-01-31 Thread Stefan Sperling
On Thu, Jan 31, 2013 at 10:37:14AM -0500, Alfred Perlstein wrote: FreeBSD has moved to Subversion a few years ago and it's worked very, very well for us. Thanks! That's encouraging to hear. The one area where we are having issues is merging code from project branches back into trunk. The

Default values for args to svn_cmdline_create_auth_baton

2013-01-31 Thread Ryan Vordermann
Hi, My name is Ryan. I'm not subscribed to this list so I would appreciate being CC'ed on responses I'm working on a utility that uses the svn client api. Right now it works, but I want to add support for usernames and passwords. I do not (yet) want to support any of the other security

RE: svn:externals - process question

2013-01-31 Thread Andrew Reedick
As you've discovered, externals *always* pull in the HEAD revision unless you specifically add a revision number to the svn:externals property. Needless to say, rogue svn:externals are bad for build reproducibility and tagging. Options are: Audit the svn:externals (either manually, via a

software distribution with subversion

2013-01-31 Thread Jason Keltz
Hi. I am faced with a problem where I need to distribute a directory containing about 60 GB worth of software on a Linux file server to about 100 systems. The software must be localized on those systems and not shared out over NFS. On a regular basis, software may be added or removed from

RE: software distribution with subversion

2013-01-31 Thread Bob Archer
I am faced with a problem where I need to distribute a directory containing about 60 GB worth of software on a Linux file server to about 100 systems. The software must be localized on those systems and not shared out over NFS. On a regular basis, software may be added or removed from the

file externals inside directory externals trouble in 1.6 not 1.7 ?

2013-01-31 Thread Ward Willats
Hello. I setup some directory and file externs to prune the boost C++ library tree for our projects. Like this: http://repo/boost/boost_dir/ boost/boost_dir/ http://repo/boost/boostfile.cpp boost/boost_file.cpp (only a lot more complicated) That is, I used directory externals to create

Re: software distribution with subversion

2013-01-31 Thread Les Mikesell
On Thu, Jan 31, 2013 at 4:10 PM, Jason Keltz j...@cse.yorku.ca wrote: I am faced with a problem where I need to distribute a directory containing about 60 GB worth of software on a Linux file server to about 100 systems. The software must be localized on those systems and not shared out over

Re: software distribution with subversion

2013-01-31 Thread Jason Keltz
On 31/01/2013 6:06 PM, Bob Archer wrote: I am faced with a problem where I need to distribute a directory containing about 60 GB worth of software on a Linux file server to about 100 systems. The software must be localized on those systems and not shared out over NFS. On a regular basis,

Re: software distribution with subversion

2013-01-31 Thread Ryan Schmidt
On Jan 31, 2013, at 20:05, Jason Keltz wrote: On 31/01/2013 6:06 PM, Bob Archer wrote: What you need to do could work. I assume this software in order to run can build built or whatever during your nightly update on each client? You keep saying rsyncing ... you wouldn't use that. You

Re: software distribution with subversion

2013-01-31 Thread Jason Keltz
On 31/01/2013 6:40 PM, Les Mikesell wrote: On Thu, Jan 31, 2013 at 4:10 PM, Jason Keltz j...@cse.yorku.ca wrote: I am faced with a problem where I need to distribute a directory containing about 60 GB worth of software on a Linux file server to about 100 systems. The software must be localized

Re: software distribution with subversion

2013-01-31 Thread Jason Keltz
On 31/01/2013 9:13 PM, Ryan Schmidt wrote: On Jan 31, 2013, at 20:05, Jason Keltz wrote: On 31/01/2013 6:06 PM, Bob Archer wrote: What you need to do could work. I assume this software in order to run can build built or whatever during your nightly update on each client? You keep saying

Re: software distribution with subversion

2013-01-31 Thread Nico Kadel-Garcia
On Thu, Jan 31, 2013 at 9:18 PM, Jason Keltz j...@cse.yorku.ca wrote: On 31/01/2013 9:13 PM, Ryan Schmidt wrote: Subversion is not a software distribution tool; it is a document and revision management system. Use a different tool. As someone else said, rsync seems like a good tool for this

Apache Subversion 1.7.7 - svn log issues

2013-01-31 Thread Ramachandran Raghavendran
Hi, I performed the very first commit into a repository and I'm running the svn log command at the file level (svn log -v --xml --stop-on-copy @URL PATH, where PATH represents a file). However this syntax lists all the changes to the URL. Have anybody encountered this behaviour . is this

Re: software distribution with subversion

2013-01-31 Thread Les Mikesell
On Thu, Jan 31, 2013 at 8:14 PM, Jason Keltz j...@cse.yorku.ca wrote: I'd think it is exactly the problem that rsync is intended to handle. rsync is great when you want to sync the contents from one machine to another machine in one direction.. (unison if you need dual direction sync...)

Re: software distribution with subversion

2013-01-31 Thread Les Mikesell
On Thu, Jan 31, 2013 at 8:18 PM, Jason Keltz j...@cse.yorku.ca wrote: See my email to Les... If only the rsync server could save a copy of the file checksums when it runs, it would probably decrease the sync time by half and save a whole lot of disk activity... If you don't use the

Re: Unable to login

2013-01-31 Thread vishwajeet singh
On Fri, Feb 1, 2013 at 11:28 AM, Navneet Kanwat navne...@sumtotalsystems.com wrote: Hi, I was confused with my svn username and password. I was not aware that if I put them wrong It’ll start showing exceptions. Please suggest me the next step. I tried entering the link

Re: Unable to login

2013-01-31 Thread Jeyanthan I
On Friday 01 February 2013 11:28 AM, Navneet Kanwat wrote: Hi, I was confused with my svn username and password. I was not aware that if I put them wrong It’ll start showing exceptions. Please suggest me the next step. I tried entering the link