You are not logged in.

#1 2003-12-04 00:45:56

ianneub
Member
From: HB, CA, USA
Registered: 2003-09-03
Posts: 25
Website

rdiff-backup

http://rdiff-backup.stanford.edu/

Cool backup program that depends on python. It can make incremental backups very easily.


cool sig line

Offline

#2 2004-09-06 15:21:17

delmonico
Member
Registered: 2004-06-27
Posts: 82

Re: rdiff-backup

I know the request is old but I couldnt find this pkg either, so here it is:

librsync:

pkgname=librsync
pkgver=0.9.6
pkgrel=1 
pkgdesc="librsync is a free software library that implements the rsync remote-delta algorithm."
url="http://librsync.sourceforge.net/" 
license="GPL" 
depends="popt"
source=(http://heanet.dl.sourceforge.net/sourceforge/librsync/$pkgname-$pkgver.tar.gz) 
md5sums=(b2e7fb16f1e8f66f8397928dcc0436c8)

build() { 
  cd $startdir/src/$pkgname-$pkgver 
  ./configure --prefix=$startdir/pkg/usr
  make
  make install
}

rdiff-backup:

pkgname=rdiff-backup
pkgver=0.12.7
pkgrel=1 
pkgdesc="rdiff-backup backs up one directory to another, possibly over a network."
url="http://rdiff-backup.stanford.edu/" 
license="GPL" 
depends=(python librsync)
source=(http://rdiff-backup.stanford.edu/$pkgname-$pkgver.tar.gz) 
md5sums=(12fb0085861483eab379cb578fa9c849)

build() { 
  cd $startdir/src/$pkgname-$pkgver 
  python setup.py install --prefix=$startdir/pkg/usr
}

del

Offline

#3 2004-09-07 15:51:35

delmonico
Member
Registered: 2004-06-27
Posts: 82

Re: rdiff-backup

There was no problem with my package, the problem was that the rdiff-backup version on the server was 0.13.3 (installed with mandrakes urpmi) which seems to be incompatible with 0.12.x. So here is rdiff-backup-devel:

pkgname=rdiff-backup-devel
pkgver=0.13.4
pkgrel=1
pkgdesc="rdiff-backup backs up one directory to another, possibly over a network."
url="http://rdiff-backup.stanford.edu/"
license="GPL"
depends=(python librsync)
source=(http://rdiff-backup.stanford.edu/rdiff-backup-$pkgver.tar.gz)
md5sums=(43a5e98751371fb1852fb2ebeed38e77)

build() {
  cd $startdir/src/rdiff-backup-$pkgver
  python setup.py install --prefix=$startdir/pkg/usr

Offline

Board footer

Powered by FluxBB