Re: upgrading source code in local repository

2011-08-02 Thread Ryan Schmidt
On Aug 1, 2011, at 05:31, Ulrich Eckhardt wrote: > On Friday 29 July 2011, Brecht Ameije wrote: >> I read the referred page in the book, indeed: the script svn_load_dirs.pl >> is exactly what I need. It implements the steps that I did by hand. > > There is one thing that took me a while to under

Re: Strange behavior on directory delete/commit

2011-08-02 Thread Ryan Schmidt
On Aug 2, 2011, at 07:11, Giulio Troccoli wrote: > On 02/08/11 07:40, Dominik Psenner wrote: >> >> having a fresh subversion repository doing this as preparation: >> >> $ mkdir foo/ >> $ svn add foo >> $ svn commit -m "test" >> Adding foo >> Revision X sent. >> $ rmdir foo >> $ svn st >> !

Re: Subversion transactions within post-commit

2011-08-02 Thread Nico Kadel-Garcia
On Tue, Aug 2, 2011 at 6:49 PM, Ray Rashif wrote: > On 3 August 2011 05:47, Nico Kadel-Garcia wrote: >> That's what "svn checkout" for initial setup, and "svn update" or "svn >> revert" of the local copy are for. > > We already have that working, I just outlined the current setup: > > http://file

Re: Subversion transactions within post-commit

2011-08-02 Thread Ray Rashif
On 3 August 2011 05:47, Nico Kadel-Garcia wrote: > That's what "svn checkout" for initial setup, and "svn update" or "svn > revert" of the local copy are for. We already have that working, I just outlined the current setup: http://files.foobar.org/ is a direct file mirror (less revision control;

Re: Subversion transactions within post-commit

2011-08-02 Thread Nico Kadel-Garcia
On Tue, Aug 2, 2011 at 5:00 PM, Ray Rashif wrote: > On 3 August 2011 04:37, David Weintraub wrote: >> NO! NO! NO! AUUUGGGHHH! >> >> Never update a repository with a hook.! That's why you're given the >> relatively safe "svnlook" command. It allows you to look, but not >> touch a repository. >> ..

Re: Subversion transactions within post-commit

2011-08-02 Thread Ray Rashif
On 3 August 2011 04:37, David Weintraub wrote: > NO! NO! NO! AUUUGGGHHH! > > Never update a repository with a hook.! That's why you're given the > relatively safe "svnlook" command. It allows you to look, but not > touch a repository. > ... > SNIP > ... Arrrgghhh damn it! Exactly what I feared. E

RE: Integration of SVN and Bugzilla 3.2

2011-08-02 Thread Wang, HarryX C
We are in the process of upgrading to v3.6 or later. Thank you for the information. Harry W. -Original Message- From: Thorsten Schöning [mailto:tschoen...@am-soft.de] Sent: Tuesday, August 02, 2011 12:16 AM To: users@ Subject: Re: Integration of SVN and Bugzilla 3.2 Guten Tag Nico K

Re: Subversion transactions within post-commit

2011-08-02 Thread David Weintraub
On Tue, Aug 2, 2011 at 4:03 PM, Ray Rashif wrote: > We have a _local_ checkout of the repository on our server, and our > post-commit hook needs to run svn-add, svn-rm and svn-ci commands in > that checkout. All of these commands run fine. For eg. (within the > post-commit script): NO! NO! NO! AU

Subversion transactions within post-commit

2011-08-02 Thread Ray Rashif
Hi list I've been stumped by this issue for months. I had never enough time to troubleshoot it, so I'm finally desperate after having spent an entire day trying to figure things out. We have a _local_ checkout of the repository on our server, and our post-commit hook needs to run svn-add, svn-rm

AW: Do svn:externals changes need to be committed to work?

2011-08-02 Thread André Hänsel
Stefan Sperling wrote: > > On Tue, Aug 02, 2011 at 03:54:23AM +0200, André Hänsel wrote: > > I am trying to add an svn:externals definition to a working copy. I > > set the property on a directory and ran svn update on that directory, > > but nothing is fetched. > > > > I found this article: > > h

Re: Svn Searcher

2011-08-02 Thread Michael Diers
On 2011-07-27 17:18, Phil Pinkerton wrote: > Anyone have experience installing and using Svn Searcher ? > > http://svn-search.sourceforge.net/ > > I have a client that would like to do Repository Searches. Other tools that offer repository indexing and searching: * Atlassian FishEye http://

RE: how to back svn repositories

2011-08-02 Thread Bob Archer
> hi,everyone. > > We have many svn repositories,more than 100,000 , but every > repository has less than 1024M. > > So,which svn backup strategies should I use ? I think there are three basic options... 1. Back up to tape... this is what we do. Yes, we possible lose intra day stuff but it is

Problems merging missed range

2011-08-02 Thread K.L.
Hi, I tried to reintegrate branch, but svn said that some files in branch miss range from trunk. Tried to fix but range merge seems not working with urls. So I backed up branch, deleted it, created with the same name and overrode with backup. Committed branch, reintegrated, merged with record-only

Re: Strange behavior on directory delete/commit

2011-08-02 Thread Giulio Troccoli
On 02/08/11 07:40, Dominik Psenner wrote: Hi, having a fresh subversion repository doing this as preparation: $ mkdir foo/ $ svn add foo $ svn commit -m "test" Adding foo Revision X sent. $ rmdir foo $ svn st ! foo $ svn delete foo D foo And finally this command fails: $ svn co

AW: Strange behavior on directory delete/commit

2011-08-02 Thread Becker, Thomas
You could also delete the directory directly in the repository using "svn delete -m ". This way you would avoid the problem of committing partial changes of your working copy. Regards, Thomas -Ursprüngliche Nachricht- Von: Dominik Psenner [mailto:dpsen...@gmail.com] Gesendet: Dienst

Strange behavior on directory delete/commit

2011-08-02 Thread Dominik Psenner
Hi, having a fresh subversion repository doing this as preparation: $ mkdir foo/ $ svn add foo $ svn commit -m "test" Adding foo Revision X sent. $ rmdir foo $ svn st ! foo $ svn delete foo D foo And finally this command fails: $ svn commit foo -m "fail" svn: entry "foo" has no URL

Re: how to back svn repositories

2011-08-02 Thread Nico Kadel-Garcia
On Tue, Aug 2, 2011 at 2:26 AM, Venkata Badipatla wrote: > Svnadmin dump utility is a correct strategy to be followed. As you are > telling many repos, you can write simple perl script which can create the > dump files for all the repos. OK, *now* I'm going to waggle my finger at you. I find thi

Re: how to back svn repositories

2011-08-02 Thread Nico Kadel-Garcia
On Tue, Aug 2, 2011 at 2:07 AM, zhiwei chen wrote: > hi,everyone. > We have many svn repositories,more than 100,000 , but every repository has > less than 1024M. > So,which svn backup strategies should I use ? Great bird of space, what are you running? Sourceforge? You're approaching 100 TB of re

Re: Read-Only file systems (Was: Worst Error Message?)

2011-08-02 Thread Daniel Shahaf
Daniel Shahaf wrote on Tue, Aug 02, 2011 at 13:25:18 +0300: > Though, there is a standing backport for svn_fs_verify() which would > break that... I'll follow up on dev@. Actually, a quick test tells me that it's possible to read an SQLite database that lives on a read-only mount. Naturally, tha

RE: Do svn:externals changes need to be committed to work?

2011-08-02 Thread Bert Huijben
> -Original Message- > From: Markus Schaber [mailto:m.scha...@3s-software.com] > Sent: dinsdag 2 augustus 2011 10:27 > To: André Hänsel; users@subversion.apache.org > Subject: AW: Do svn:externals changes need to be committed to work? > > Hi, André, > > Von: André Hänsel [mailto:an...@w

Re: Read-Only file systems (Was: Worst Error Message?)

2011-08-02 Thread Daniel Shahaf
Stefan Sperling wrote on Tue, Aug 02, 2011 at 10:22:23 +0200: > On Tue, Aug 02, 2011 at 10:09:06AM +0200, Markus Schaber wrote: > > > stsp: (re: users@) read only operations on a fsfs repository > > don't > > > obtain a lock (and don't need write access). Only commit and revprop > > > changes shou

RE: upgrading source code in local repository

2011-08-02 Thread Brecht Ameije
On Monday 1 Aug 2011, Ulrich Eckhardt wrote: > On Friday 29 July 2011, Brecht Ameije wrote: > > I read the referred page in the book, indeed: the script svn_load_dirs.pl > > is exactly what I need. It implements the steps that I did by hand. > > There is one thing that took me a while to understa

AW: Do svn:externals changes need to be committed to work?

2011-08-02 Thread Markus Schaber
Hi, André, Von: André Hänsel [mailto:an...@webkr.de] > I am trying to add an svn:externals definition to a working copy. I set > the property on a directory and ran svn update on that directory, but > nothing is fetched. > > I found this article: > http://blogs.gnome.org/johannes/2008/02/20/svnex

Re: Read-Only file systems (Was: Worst Error Message?)

2011-08-02 Thread Stefan Sperling
On Tue, Aug 02, 2011 at 10:09:06AM +0200, Markus Schaber wrote: > > stsp: (re: users@) read only operations on a fsfs repository > don't > > obtain a lock (and don't need write access). Only commit and revprop > > changes should need write access. (I don't know what is required for > bdb). > > We

Re: Do svn:externals changes need to be committed to work?

2011-08-02 Thread Stefan Sperling
On Tue, Aug 02, 2011 at 03:54:23AM +0200, André Hänsel wrote: > I am trying to add an svn:externals definition to a working copy. I set the > property on a directory and ran svn update on that directory, but nothing is > fetched. > > I found this article: > http://blogs.gnome.org/johannes/2008/02/

AW: Read-Only file systems (Was: Worst Error Message?)

2011-08-02 Thread Markus Schaber
Hi, Von: Stefan Sperling [mailto:s...@elego.de] > > It is written in SVN book that repository that uses FSFS should work > > on read-only media. > > Is it something that was broken recently? > > > > - see "Usable from a read-only mount" row in the table in the middle > > of > > > > http://svnbook

Re: Do svn:externals changes need to be committed to work?

2011-08-02 Thread Geoff Hoffman
Hey André, On Mon, Aug 1, 2011 at 6:54 PM, André Hänsel wrote: > I am trying to add an svn:externals definition to a working copy. I set the > property on a directory and ran svn update on that directory, but nothing > is > fetched. > One of my favorite topics. svn:externals is tricky to under

Re: Integration of SVN and Bugzilla 3.2

2011-08-02 Thread Thorsten Schöning
Guten Tag Nico Kadel-Garcia, am Montag, 1. August 2011 um 23:34 schrieben Sie: > Bugzilla is perl based, not even compiled. So anything is *possible*. > It's not built-in, but a fast Google search turns up this add-on: > http://freshmeat.net/projects/scmbug/ Depending on your needs, and Bug

Re: cannot create directory in /db/transactions/

2011-08-02 Thread Thorsten Schöning
Guten Tag Michael Chen, am Dienstag, 2. August 2011 um 03:04 schrieben Sie: > all seem right, but he cannot write into the directory, why? Do you have something like SELinux or AppArmor running? Mit freundlichen Grüßen, Thorsten Schöning -- Thorsten Schöning AM-SoFT IT-Systeme - Hameln | Pots