From a6f1bff43facd5be9d41186cf4c14737c08c632a Mon Sep 17 00:00:00 2001 From: ben Date: Fri, 19 Jul 2002 06:04:52 +0000 Subject: rdiff-backup script not exec'able until installed git-svn-id: http://svn.savannah.nongnu.org/svn/rdiff-backup/trunk@165 2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109 --- rdiff-backup/CHANGELOG | 3 ++- rdiff-backup/README | 10 ++++++++-- rdiff-backup/TODO | 3 --- rdiff-backup/dist/makedist | 2 +- 4 files changed, 11 insertions(+), 7 deletions(-) diff --git a/rdiff-backup/CHANGELOG b/rdiff-backup/CHANGELOG index 51c5330..2d924d2 100644 --- a/rdiff-backup/CHANGELOG +++ b/rdiff-backup/CHANGELOG @@ -3,7 +3,8 @@ New in v0.9.4 (2002/07/25) Man page now correctly included in rpm. - +Installation script does not have exec permissions until it is +installed (thanks Jason Piterak). New in v0.9.3 (2002/07/15) diff --git a/rdiff-backup/README b/rdiff-backup/README index e33d77b..7cfbace 100644 --- a/rdiff-backup/README +++ b/rdiff-backup/README @@ -4,6 +4,10 @@ Thank you for trying rdiff-backup. To install, run: python setup.py install +The build process can be also be run separately: + + python setup.py build + The default prefix is /usr, so files are put in /usr/bin, /usr/share/man/, etc. An alternate prefix can be specified using the --prefix= option. For example: @@ -14,8 +18,10 @@ The default prefix is /usr, so files are put in /usr/bin, REQUIREMENTS: Remember that you must have Python 2.2 or later and librsync 0.9.5.1 -or later installed. To download, see http://www.python.org and -http://sourceforge.net/projects/librsync/ respectively. +or later installed. For Python, see http://www.python.org. The +rdiff-backup homepage at http://rdiff-backup.stanford.edu/ should have +a recent version of librsync; otherwise see the librsync homepage at +http://sourceforge.net/projects/librsync/. For remote operation, rdiff-backup should be in installed and in the PATH on remote system(s) (see man page for more information). diff --git a/rdiff-backup/TODO b/rdiff-backup/TODO index 72ded47..8541e73 100644 --- a/rdiff-backup/TODO +++ b/rdiff-backup/TODO @@ -5,9 +5,6 @@ If not resuming, don't crash on badly written checkpoint_data. If don't recover hardlink support and hardlink support on, don't resume. -Make rdiff-backup not runnable from starting directory to avoid -confusion. (Jason Piterak) - Fix crash that can occur when exception is found in the middle of a file (duplicate by backing up /proc remotely). (John Goerzen) diff --git a/rdiff-backup/dist/makedist b/rdiff-backup/dist/makedist index c5610b5..409bd99 100755 --- a/rdiff-backup/dist/makedist +++ b/rdiff-backup/dist/makedist @@ -107,7 +107,7 @@ def MakeTar(): VersionedCopy(DistDir + "/setup.py", "%s/setup.py" % (tardir,)) os.chmod(os.path.join(tardir, "setup.py"), 0755) - os.chmod(os.path.join(tardir, "rdiff-backup"), 0755) + os.chmod(os.path.join(tardir, "rdiff-backup"), 0644) CopyMan(os.path.join(tardir, "rdiff-backup.1"), Version) os.system("tar -cvzf %s %s" % (tarfile, tardir)) shutil.rmtree(tardir) -- cgit v1.2.1