I am using my Bubba as a mirror server for our company Subversion SVN Repository. The latest version that I can get via apt-get install subversion is v1.4.2 but the Debian website shows that v1.5.1 is available as stable under Lenny. (see http://packages.debian.org/search?keywo ... on&exact=1)
Is it possible for me to get this later version now, or do I have to upgrade my whole Bubba install to Lenny, or what??
Any advice gratefully received.
Paul
Please note the new address for this forum : forum.excito.org. The old address redirects here but I don't know for how long. Thanks !
New user's registration have been closed due to high spamming and low trafic on this forum. Please contact forum admins directly if you need an account. Thanks !
Upgrading Bubba to use latest Subversion SVN package
Re: Upgrading Bubba to use latest Subversion SVN package
Thankfully Subversion 1.5.1 is in the etch-backports repository, and it works fine with bubba2. To install, add this line
to
and these lines
to
then
should do the trick.
Jon
Code: Select all
deb http://www.backports.org/debian etch-backports main contrib non-free
Code: Select all
/etc/apt/sources.list
Code: Select all
Package: subversion
Pin: release a=etch-backports
Pin-Priority: 1001
Code: Select all
/etc/apt/preferences
then
Code: Select all
apt-get install subversion
Jon
Last edited by jonj1 on 08 Sep 2009, 11:52, edited 1 time in total.
Re: Upgrading Bubba to use latest Subversion SVN package
Hi Jon,
I just returned from 2 weeks vacation (not ignoring you!) and will try your suggestion,
many thanks
Paul
I just returned from 2 weeks vacation (not ignoring you!) and will try your suggestion,
many thanks
Paul
-
- Posts: 10
- Joined: 04 May 2007, 05:28
Re: Upgrading Bubba to use latest Subversion SVN package
Hi Jon,
Did you mean to say that both:
and:
should be posted to:
Doesn't seem to fit the format of /etc/apt/sources.list.
Thanks for any advice you can give. Trying to get SVN going on the old bubba for my personal work.
Cheers.
Did you mean to say that both:
Code: Select all
deb http://www.backports.org/debian etch-backports main contrib non-free
Code: Select all
Package: subversion
Pin: release a=etch-backports
Pin-Priority: 1001
Code: Select all
/etc/apt/sources.list
Thanks for any advice you can give. Trying to get SVN going on the old bubba for my personal work.
Cheers.
Re: Upgrading Bubba to use latest Subversion SVN package
The pinning should be done in /etc/apt/preferencesafriendcalledben wrote:Hi Jon,
Did you mean to say that both:
and:Code: Select all
deb http://www.backports.org/debian etch-backports main contrib non-free
should be posted to:Code: Select all
Package: subversion Pin: release a=etch-backports Pin-Priority: 1001
Doesn't seem to fit the format of /etc/apt/sources.list.Code: Select all
/etc/apt/sources.list
Thanks for any advice you can give. Trying to get SVN going on the old bubba for my personal work.
Cheers.
/Carl
Re: Upgrading Bubba to use latest Subversion SVN package
Thanks for pointing that out, I'll update the earlier post.carl wrote:The pinning should be done in /etc/apt/preferences
Jon