From 709c4d66e0b107ca606941b988bad717c0b45d9b Mon Sep 17 00:00:00 2001 From: Denys Dmytriyenko Date: Tue, 17 Mar 2009 14:32:59 -0400 Subject: rename packages/ to recipes/ per earlier agreement See links below for more details: http://thread.gmane.org/gmane.comp.handhelds.openembedded/21326 http://thread.gmane.org/gmane.comp.handhelds.openembedded/21816 Signed-off-by: Denys Dmytriyenko Acked-by: Mike Westerhof Acked-by: Philip Balister Acked-by: Khem Raj Acked-by: Marcin Juszkiewicz Acked-by: Koen Kooi Acked-by: Frans Meulenbroeks --- recipes/rdiff-backup/rdiff-backup.inc | 41 ++++++++++++++++++++++++++++++ recipes/rdiff-backup/rdiff-backup_1.0.4.bb | 2 ++ recipes/rdiff-backup/rdiff-backup_1.1.5.bb | 5 ++++ 3 files changed, 48 insertions(+) create mode 100644 recipes/rdiff-backup/rdiff-backup.inc create mode 100644 recipes/rdiff-backup/rdiff-backup_1.0.4.bb create mode 100644 recipes/rdiff-backup/rdiff-backup_1.1.5.bb (limited to 'recipes/rdiff-backup') diff --git a/recipes/rdiff-backup/rdiff-backup.inc b/recipes/rdiff-backup/rdiff-backup.inc new file mode 100644 index 0000000000..d268736df8 --- /dev/null +++ b/recipes/rdiff-backup/rdiff-backup.inc @@ -0,0 +1,41 @@ +DESCRIPTION = "A python application that backs up one directory to \ +another, possibly over a network. It combines the best features of a \ +mirror and an incremental backup. The target directory ends up a copy \ +of the source directory, but extra reverse diffs are stored in a \ +special subdirectory of that target directory, so you can still \ +recover files lost some time ago. It is also able to preserve \ +subdirectories, hard links, dev files, permissions, uid/gid \ +ownership, modification times, extended attributes, acls, and \ +resource forks." +HOMEPAGE = "http://www.nongnu.org/rdiff-backup/" +SECTION = "network" +LICENSE = "GPL" +DEPENDS = "librsync" +RDEPENDS_${PN} = "zlib python-re python-io python-lang python-datetime \ + python-pickle python-shell python-compression python-unixadmin \ + python-netclient" + +SRC_URI = "http://savannah.nongnu.org/download/rdiff-backup/rdiff-backup-${PV}.tar.gz" + +inherit distutils + +# +# Without this the python interpreter path points to the staging area. +# +do_compile() { + BUILD_SYS=${BUILD_SYS} HOST_SYS=${HOST_SYS} \ + ${STAGING_BINDIR_NATIVE}/python setup.py build --executable=${bindir}/python || \ + oefatal "python setup.py build execution failed." +} + +# +# The default do_install sets install-data to ${D}/${datadir} which +# ends up with documentation in /usr/share/share/... instead of +# /usr/share/... Modify the install data directory here to get it +# into the correct place. +# +do_install() { + BUILD_SYS=${BUILD_SYS} HOST_SYS=${HOST_SYS} \ + ${STAGING_BINDIR_NATIVE}/python setup.py install --prefix=${D}/${prefix} --install-data=${D}/${prefix} || \ + oefatal "python setup.py install execution failed." +} diff --git a/recipes/rdiff-backup/rdiff-backup_1.0.4.bb b/recipes/rdiff-backup/rdiff-backup_1.0.4.bb new file mode 100644 index 0000000000..836363ddf7 --- /dev/null +++ b/recipes/rdiff-backup/rdiff-backup_1.0.4.bb @@ -0,0 +1,2 @@ +require rdiff-backup.inc +PR = "r1" diff --git a/recipes/rdiff-backup/rdiff-backup_1.1.5.bb b/recipes/rdiff-backup/rdiff-backup_1.1.5.bb new file mode 100644 index 0000000000..6b67289b0b --- /dev/null +++ b/recipes/rdiff-backup/rdiff-backup_1.1.5.bb @@ -0,0 +1,5 @@ +require rdiff-backup.inc +PR = "r1" + +# 1.1.x added the use of sha which we get from python-crypt +RDEPENDS_${PN} += "python-crypt" -- cgit 1.2.3-korg