diff options
-rw-r--r-- | sys-fs/s3ql/ChangeLog | 7 | ||||
-rw-r--r-- | sys-fs/s3ql/s3ql-2.8.1.ebuild | 53 |
2 files changed, 59 insertions, 1 deletions
diff --git a/sys-fs/s3ql/ChangeLog b/sys-fs/s3ql/ChangeLog index 5c85beb244d3..785ba020a245 100644 --- a/sys-fs/s3ql/ChangeLog +++ b/sys-fs/s3ql/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-fs/s3ql # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/s3ql/ChangeLog,v 1.30 2014/03/19 06:22:34 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/s3ql/ChangeLog,v 1.31 2014/03/30 22:06:48 radhermit Exp $ + +*s3ql-2.8.1 (30 Mar 2014) + + 30 Mar 2014; Tim Harder <radhermit@gentoo.org> +s3ql-2.8.1.ebuild: + Version bump. *s3ql-2.8 (19 Mar 2014) diff --git a/sys-fs/s3ql/s3ql-2.8.1.ebuild b/sys-fs/s3ql/s3ql-2.8.1.ebuild new file mode 100644 index 000000000000..c50555a0b90e --- /dev/null +++ b/sys-fs/s3ql/s3ql-2.8.1.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/s3ql/s3ql-2.8.1.ebuild,v 1.1 2014/03/30 22:06:48 radhermit Exp $ + +EAPI=5 +PYTHON_COMPAT=( python3_3 ) + +inherit distutils-r1 + +DESCRIPTION="A full-featured file system for online data storage" +HOMEPAGE="https://bitbucket.org/nikratio/s3ql/" +SRC_URI="https://bitbucket.org/nikratio/s3ql/downloads/${P}.tar.bz2" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="contrib doc test" + +RDEPEND=">=dev-db/sqlite-3.7.0:3 + dev-python/setuptools[${PYTHON_USEDEP}] + >=dev-python/apsw-3.7.0[${PYTHON_USEDEP}] + >=dev-python/dugong-2.0[${PYTHON_USEDEP}] + >=dev-python/llfuse-0.39[${PYTHON_USEDEP}] + dev-python/pycrypto[${PYTHON_USEDEP}] + sys-fs/fuse" +DEPEND="${RDEPEND} + test? ( + dev-python/pytest[${PYTHON_USEDEP}] + net-misc/rsync[xattr] + )" + +RESTRICT="test" + +python_test() { + addwrite /dev/fuse + py.test -v tests || die "Tests fail with ${EPYTHON}" +} + +python_install_all() { + distutils-r1_python_install_all + + if use contrib ; then + exeinto /usr/share/doc/${PF}/contrib + docompress -x /usr/share/doc/${PF}/contrib + doexe contrib/*.{py,sh} + doman contrib/*.1 + fi + + if use doc ; then + dodoc doc/manual.pdf + dohtml -r doc/html/* + fi +} |