Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-fs/tahoe-lafs/
Date: Sun, 14 Oct 2018 10:19:04
Message-Id: 1539512288.5c4e1e47aa909faa508cbcc087ee87ec51c80959.pacho@gentoo
1 commit: 5c4e1e47aa909faa508cbcc087ee87ec51c80959
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 14 09:27:35 2018 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 14 10:18:08 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c4e1e47
7
8 net-fs/tahoe-lafs: Allow newer twisted
9
10 Closes: https://bugs.gentoo.org/582826
11 Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
12 Package-Manager: Portage-2.3.51, Repoman-2.3.11
13
14 net-fs/tahoe-lafs/tahoe-lafs-1.10.2.ebuild | 17 +++++------------
15 1 file changed, 5 insertions(+), 12 deletions(-)
16
17 diff --git a/net-fs/tahoe-lafs/tahoe-lafs-1.10.2.ebuild b/net-fs/tahoe-lafs/tahoe-lafs-1.10.2.ebuild
18 index bb0f4bca813..031d09ff8c4 100644
19 --- a/net-fs/tahoe-lafs/tahoe-lafs-1.10.2.ebuild
20 +++ b/net-fs/tahoe-lafs/tahoe-lafs-1.10.2.ebuild
21 @@ -1,7 +1,7 @@
22 -# Copyright 1999-2018 Gentoo Foundation
23 +# Copyright 1999-2018 Gentoo Authors
24 # Distributed under the terms of the GNU General Public License v2
25
26 -EAPI=5
27 +EAPI=7
28
29 PYTHON_COMPAT=( python2_7 )
30 PYTHON_REQ_USE="sqlite"
31 @@ -26,19 +26,19 @@ RDEPEND="
32 dev-python/nevow[${PYTHON_USEDEP}]
33 >=dev-python/pyasn1-0.1.8[${PYTHON_USEDEP}]
34 dev-python/pyasn1-modules[${PYTHON_USEDEP}]
35 - dev-python/pycrypto[${PYTHON_USEDEP}]
36 dev-python/pycryptopp[${PYTHON_USEDEP}]
37 + dev-python/pycrypto[${PYTHON_USEDEP}]
38 >=dev-python/pyopenssl-0.14[${PYTHON_USEDEP}]
39 dev-python/pyutil[${PYTHON_USEDEP}]
40 dev-python/service_identity[${PYTHON_USEDEP}]
41 dev-python/simplejson[${PYTHON_USEDEP}]
42 - >=dev-python/twisted-core-13.0.0[${PYTHON_USEDEP}]
43 + >=dev-python/twisted-16.0.0[${PYTHON_USEDEP}]
44 dev-python/zbase32[${PYTHON_USEDEP}]
45 dev-python/zfec[${PYTHON_USEDEP}]
46 dev-python/zope-interface[${PYTHON_USEDEP}]"
47 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
48
49 -S=${WORKDIR}/${MY_P}
50 +S="${WORKDIR}/${MY_P}"
51
52 src_prepare() {
53 rm -r setuptools* setup.cfg || die
54 @@ -49,10 +49,3 @@ src_install() {
55 distutils-r1_src_install
56 use doc && dodoc -r docs/*
57 }
58 -
59 -pkg_postinst() {
60 - elog
61 - elog "optional dependencies:"
62 - elog " dev-python/twisted-conch (for sftp access)"
63 - elog
64 -}