[Date Prev][Date Next][Thread Prev][Thread Next][Thread Index]
RE: [XaraXtreme-dev] XaraLX-0.7r1717.tar.bz2 disappeared
- From: "Graeme Robinson" <GraemeR@xxxxxxxx>
- Date: Tue, 5 Sep 2006 10:38:15 +0100
- Subject: RE: [XaraXtreme-dev] XaraLX-0.7r1717.tar.bz2 disappeared
> My apologies. I thought 1717 was the release version, but of
> course that's 1692. It's clearly important we keep these
> around, but that's not the point in question.
Those are copied to another static name that I announce on dev that
don't get cleaned up.
Currently:
-rw-r--r-- 1 root root 25588884 Apr 3 16:51 XaraLXSrc-0.4r762.tar.gz
-rw-r--r-- 1 root root 25737093 Apr 12 16:54 XaraLXSrc-0.4r798.tar.gz
-rw-r--r-- 1 root root 23509155 May 25 17:37 XaraLXSrc-0.5r1175.tar.bz2
-rw-r--r-- 1 root root 26069197 May 25 17:37 XaraLXSrc-0.5r1175.tar.gz
-rw-r--r-- 1 root root 31057898 Jul 14 14:02 XaraLXSrc-0.6r1441.tar.bz2
-rw-r--r-- 1 root root 35899217 Jul 14 14:02 XaraLXSrc-0.6r1441.tar.gz
-rw-r--r-- 1 root root 27537685 Aug 11 11:44 XaraLXSrc-0.7r1692.tar.bz2
-rw-r--r-- 1 root root 30281689 Aug 11 11:44 XaraLXSrc-0.7r1692.tar.gz
>
> Graeme wrote:
> > - Run a checkout of a specific version from svn which will always
> > have all the versions (svn checkout -r 1717 svn://svn.xara.com .)
>
> This would seem the most obvious solution, but I'm trying to
> remember what additional steps are required to make the
> source tarball out of an svn checkout. I /think/ just
> "./autogen.sh", yes?
>
> Alex
The script does pretty much...
# Get latest version
svn co svn://svn.xara.com/xara/Trunk/XaraLX .
# Clean up
find . -name "\.svn" -exec rm {} \;
rm -rf bin video
# Autogen
./autogen.sh
The svn route will take longer and use more bandwidth than simply
keeping your own copy of what you need.
Graeme