diff options
author | Marc Schiffbauer <mschiff@gentoo.org> | 2016-01-19 22:48:02 +0100 |
---|---|---|
committer | Marc Schiffbauer <mschiff@gentoo.org> | 2016-01-19 22:49:19 +0100 |
commit | 93106566a1e53bdad27e92321a693ac8e7718731 (patch) | |
tree | fc6c9833a3e9a3088902007a238a56c5842ad183 /app-backup | |
parent | dev-libs/libowfat: Mark ~hppa too. (diff) | |
download | gentoo-93106566a1e53bdad27e92321a693ac8e7718731.tar.gz gentoo-93106566a1e53bdad27e92321a693ac8e7718731.tar.bz2 gentoo-93106566a1e53bdad27e92321a693ac8e7718731.zip |
app-backup/obnam: Bump version to 1.19
Package-Manager: portage-2.2.26
Diffstat (limited to 'app-backup')
-rw-r--r-- | app-backup/obnam/Manifest | 1 | ||||
-rw-r--r-- | app-backup/obnam/obnam-1.19.ebuild | 51 |
2 files changed, 52 insertions, 0 deletions
diff --git a/app-backup/obnam/Manifest b/app-backup/obnam/Manifest index d960c2074498..0e1a3f36c89b 100644 --- a/app-backup/obnam/Manifest +++ b/app-backup/obnam/Manifest @@ -1,2 +1,3 @@ DIST obnam-1.17.tar.gz 362512 SHA256 d340bdf6a5ebbc7c0a039501832c78257c57caa701bd29f5ef6fb841f16cbcf9 SHA512 63926ee62c5dae90cd653cee69a793f43098ed91a3fdb4cff7af1ed98994f54807c3d2c6b1bc3995bbda9a3ce9b319fa2a8e0e9c841b597a92c677bb01f549f1 WHIRLPOOL 442eae740c29064a188566cfe48a4091de29f22f41a6fabf0917c186dc683f9c19233bc3dc30c7f7339e8e7efc77feca0cc1d928e81f32b0a88920ba4dbfde43 DIST obnam-1.18.2.tar.gz 361576 SHA256 515aa3eaf9946f5f7beee1e3285d2822e67a43d209b34e57bf0e1ea809551895 SHA512 f375a3e8769775b2b3d5679d68d031f13d950ac6b2d50231b791f9625384f830ccaee3434f18eacdbc95ed6de2d1e4b33b1adac39ad8b8f96842ecc8e4664f91 WHIRLPOOL 17afe8d35f455decb0bcec3f1708e4f74cf6d14ee8a60bb6f9c53d17341d8d298d042c769571f458093d994053a5a293356716e423844c3bd69356ae4838cf73 +DIST obnam-1.19.tar.gz 372386 SHA256 728629327fa3771e2046b926b025dcfdcbae33a77d946a4daed58b23f1f99153 SHA512 c0dfc8233a6b98d428475261d71b9878acf9bd0b7393ba50cd8c7ce6563ab4b92406c63a897d49b72b8506719e05631861f1fd7559164b13719ae7c76b800195 WHIRLPOOL f42920e3e9b322e4f7448d35035406fb35b7cfe4e91f302ea086f97f15b4c88a5d016e17855f7bff6d40250070f7e0428ecee52c47d63a90cefe9209922098a8 diff --git a/app-backup/obnam/obnam-1.19.ebuild b/app-backup/obnam/obnam-1.19.ebuild new file mode 100644 index 000000000000..fe090cbe7750 --- /dev/null +++ b/app-backup/obnam/obnam-1.19.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +PYTHON_COMPAT=( python2_7 ) +PYTHON_REQ_USE="threads" + +inherit distutils-r1 + +DESCRIPTION="A backup program that supports encryption and deduplication" +HOMEPAGE="http://obnam.org/" +SRC_URI="http://git.liw.fi/cgi-bin/cgit/cgit.cgi/obnam/snapshot/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="${PYTHON_DEPS} + dev-python/cliapp[${PYTHON_USEDEP}] + dev-python/fuse-python[${PYTHON_USEDEP}] + dev-python/larch[${PYTHON_USEDEP}] + dev-python/paramiko[${PYTHON_USEDEP}] + dev-python/pyyaml[${PYTHON_USEDEP}] + dev-python/tracing[${PYTHON_USEDEP}] + dev-python/ttystatus[${PYTHON_USEDEP}] + " +RDEPEND="${DEPEND}" + +src_compile() { + addwrite /proc/self/comm + distutils-r1_src_compile +} + +src_install() { + distutils-r1_src_install + find "${D}" -name "obnam-viewprof*" -delete + insinto /etc + doins "${FILESDIR}"/obnam.conf + keepdir /var/log/obnam +} + +pkg_postinst() { + if [[ $REPLACING_VERSIONS < "1.2" ]]; then + elog "You will need to setup a config file before running obnam for the first time." + elog "For details, please see the obnam(1) manual page." + elog "An example file has been installed as /etc/obnam.conf for your convenience." + fi +} |