diff options
author | ben <ben@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109> | 2002-07-19 05:54:31 +0000 |
---|---|---|
committer | ben <ben@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109> | 2002-07-19 05:54:31 +0000 |
commit | bfd3ffac7c5c88585c543322f5c8c091bcf396ae (patch) | |
tree | ec43a6a5ed1491ca29524bb8d0ed909bf61f758e /rdiff-backup/dist | |
parent | d7ffb1778afe0aa59f07d085cc9f9c2b178950c4 (diff) | |
download | rdiff-backup-bfd3ffac7c5c88585c543322f5c8c091bcf396ae.tar.gz |
Added man page to RPM, makerpm no longer requires root
git-svn-id: http://svn.savannah.nongnu.org/svn/rdiff-backup/trunk@163 2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109
Diffstat (limited to 'rdiff-backup/dist')
-rwxr-xr-x | rdiff-backup/dist/makerpm | 19 | ||||
-rw-r--r-- | rdiff-backup/dist/rdiff-backup.spec | 1 |
2 files changed, 14 insertions, 6 deletions
diff --git a/rdiff-backup/dist/makerpm b/rdiff-backup/dist/makerpm index 1fa2c32..8f59f65 100755 --- a/rdiff-backup/dist/makerpm +++ b/rdiff-backup/dist/makerpm @@ -18,10 +18,17 @@ i386rpm = base+".i386.rpm" source_rpm = base+".src.rpm" tarfile = "-".join(base.split("-")[:-1]) + ".tar.gz" -assert not os.system("install -o root -g root -m 644 %s " - "/usr/src/redhat/SOURCES" % (tarfile,)) +# These assume the rpm root directory $HOME/rpm. The +# nonstandard location allows for building by non-root user. +assert not os.system("cp %s $HOME/rpm/SOURCES" % (tarfile,)) assert not os.system("rpm -ba --sign -vv --target i386 " + specfile) -assert not os.system("install -o ben -g ben -m 644 " - "/usr/src/redhat/RPMS/i386/%s ." % i386rpm) -assert not os.system("install -o ben -g ben -m 644 " - "/usr/src/redhat/SRPMS/%s ." % source_rpm) +assert not os.system("cp $HOME/rpm/RPMS/i386/%s ." % i386rpm) +assert not os.system("cp $HOME/rpm/SRPMS/%s ." % source_rpm) + +# Old root RPM instructions +#assert not os.system("install -o root -g root -m 644 %s " +# "/usr/src/redhat/SOURCES" % (tarfile,)) +#assert not os.system("install -o ben -g ben -m 644 " +# "/usr/src/redhat/RPMS/i386/%s ." % i386rpm) +#assert not os.system("install -o ben -g ben -m 644 " +# "/usr/src/redhat/SRPMS/%s ." % source_rpm) diff --git a/rdiff-backup/dist/rdiff-backup.spec b/rdiff-backup/dist/rdiff-backup.spec index 586fdd5..68b24b9 100644 --- a/rdiff-backup/dist/rdiff-backup.spec +++ b/rdiff-backup/dist/rdiff-backup.spec @@ -36,6 +36,7 @@ python2 setup.py install --prefix=$RPM_BUILD_ROOT/usr %defattr(-,root,root) /usr/bin/rdiff-backup /usr/share/doc/rdiff-backup-%{version} +/usr/share/man/man1 /usr/lib |