From b215f77ba5447b67b44e627e7bbe0f294014130a Mon Sep 17 00:00:00 2001 From: Tim Harder Date: Thu, 29 Aug 2013 04:32:05 +0000 Subject: Version bump. (Portage version: 2.2.1/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3) --- sys-fs/s3ql/ChangeLog | 7 +++++- sys-fs/s3ql/s3ql-2.4.ebuild | 53 +++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 59 insertions(+), 1 deletion(-) create mode 100644 sys-fs/s3ql/s3ql-2.4.ebuild (limited to 'sys-fs/s3ql') diff --git a/sys-fs/s3ql/ChangeLog b/sys-fs/s3ql/ChangeLog index 2ba633992d22..3047ce9a0923 100644 --- a/sys-fs/s3ql/ChangeLog +++ b/sys-fs/s3ql/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-fs/s3ql # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/s3ql/ChangeLog,v 1.24 2013/07/21 08:53:58 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/s3ql/ChangeLog,v 1.25 2013/08/29 04:32:05 radhermit Exp $ + +*s3ql-2.4 (29 Aug 2013) + + 29 Aug 2013; Tim Harder +s3ql-2.4.ebuild: + Version bump. 21 Jul 2013; Tim Harder -s3ql-1.12-r1.ebuild, -s3ql-1.13.1.ebuild, -s3ql-1.13.2.ebuild, -s3ql-1.14.ebuild, diff --git a/sys-fs/s3ql/s3ql-2.4.ebuild b/sys-fs/s3ql/s3ql-2.4.ebuild new file mode 100644 index 000000000000..ff40f8596b14 --- /dev/null +++ b/sys-fs/s3ql/s3ql-2.4.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/s3ql/s3ql-2.4.ebuild,v 1.1 2013/08/29 04:32:05 radhermit Exp $ + +EAPI=5 +PYTHON_COMPAT=( python3_3 ) + +inherit distutils-r1 + +DESCRIPTION="A full-featured file system for online data storage" +HOMEPAGE="http://code.google.com/p/s3ql/" +SRC_URI="http://s3ql.googlecode.com/files/${P/_/-}.tar.bz2" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="contrib doc test" + +RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}] + >=dev-python/apsw-3.7.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] + )" + +python_test() { + if [[ ${EUID} -ne 0 ]] ; then + ewarn "Skipping tests: root privileges are required so userpriv must be disabled" + else + addwrite /dev/fuse + esetup.py test + fi +} + +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 +} -- cgit v1.2.3-65-gdbad