X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=README.md;h=31bb2bfefb79e379d88408b1b9e295c0c5e1f4ff;hb=e662e6790e1a1275b6d44d71afeec32178aee295;hp=91a8264777d01c8ce29499a11e9ade709622c482;hpb=017af24d11d45541dd20d48568588650cc5ed598;p=bup.git diff --git a/README.md b/README.md index 91a8264..31bb2bf 100644 --- a/README.md +++ b/README.md @@ -71,7 +71,7 @@ Reasons you might want to avoid bup for you, but we don't know why. It is also missing some probably-critical features. - - It requires python >= 2.5, a C compiler, and an installed git + - It requires python >= 2.6, a C compiler, and an installed git version >= 1.5.3.1. It also requires par2 if you want fsck to be able to generate the information needed to recover from some types of corruption. @@ -86,6 +86,9 @@ Reasons you might want to avoid bup Notable changes introduced by a release ======================================= + - Changes in 0.29.1 as compared to 0.29 + - Changes in 0.29 as compared to 0.28.1 + - Changes in 0.28.1 as compared to 0.28 - Changes in 0.28 as compared to 0.27.1 - Changes in 0.27.1 as compared to 0.27 @@ -98,7 +101,7 @@ From source - Check out the bup source code using git: - git clone git://github.com/bup/bup + git clone https://github.com/bup/bup - Install the required python libraries (including the development libraries). @@ -108,8 +111,8 @@ From source apt-get build-dep bup - Otherwise try this (substitute python2.6-dev or python2.5-dev if - you have an older system): + Otherwise try this (substitute python2.6-dev if you have an older + system): apt-get install python2.7-dev python-fuse apt-get install python-pyxattr python-pylibacl @@ -149,13 +152,13 @@ From source may fail. Running something like this before "make test" should sidestep the problem: - cd "$(/bin/pwd)" + cd "$(pwd -P)" - You can install bup via "make install", and override the default destination with DESTDIR and PREFIX. Files are normally installed to "$DESTDIR/$PREFIX" where DESTDIR is - empty by default, and PREFIX is set to /usr. So if you wanted to + empty by default, and PREFIX is set to /usr/local. So if you wanted to install bup to /opt/bup, you might do something like this: make install DESTDIR=/opt/bup PREFIX=''