Gentoo Archives: gentoo-commits

From: "Julian Ospald (hasufell)" <hasufell@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-fs/tahoe-lafs: tahoe-lafs-1.10.0-r1.ebuild ChangeLog tahoe-lafs-1.10.0.ebuild
Date: Thu, 01 Aug 2013 14:20:40
Message-Id: 20130801142033.97F032171C@flycatcher.gentoo.org
1 hasufell 13/08/01 14:20:33
2
3 Modified: ChangeLog
4 Added: tahoe-lafs-1.10.0-r1.ebuild
5 Removed: tahoe-lafs-1.10.0.ebuild
6 Log:
7 fix hardcoded path to /sbin/ifconfig
8
9 (Portage version: 2.2.0_alpha191/cvs/Linux x86_64, signed Manifest commit with key E73C35B3)
10
11 Revision Changes Path
12 1.2 net-fs/tahoe-lafs/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/tahoe-lafs/ChangeLog?rev=1.2&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/tahoe-lafs/ChangeLog?rev=1.2&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/tahoe-lafs/ChangeLog?r1=1.1&r2=1.2
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/net-fs/tahoe-lafs/ChangeLog,v
21 retrieving revision 1.1
22 retrieving revision 1.2
23 diff -u -r1.1 -r1.2
24 --- ChangeLog 1 Aug 2013 13:02:05 -0000 1.1
25 +++ ChangeLog 1 Aug 2013 14:20:33 -0000 1.2
26 @@ -1,6 +1,12 @@
27 # ChangeLog for net-fs/tahoe-lafs
28 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/net-fs/tahoe-lafs/ChangeLog,v 1.1 2013/08/01 13:02:05 hasufell Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/net-fs/tahoe-lafs/ChangeLog,v 1.2 2013/08/01 14:20:33 hasufell Exp $
31 +
32 +*tahoe-lafs-1.10.0-r1 (01 Aug 2013)
33 +
34 + 01 Aug 2013; Julian Ospald <hasufell@g.o> -tahoe-lafs-1.10.0.ebuild,
35 + +tahoe-lafs-1.10.0-r1.ebuild, +files/tahoe-lafs-1.10.0-ifconfig.patch:
36 + fix hardcoded path to /sbin/ifconfig
37
38 *tahoe-lafs-1.10.0 (01 Aug 2013)
39
40
41
42
43 1.1 net-fs/tahoe-lafs/tahoe-lafs-1.10.0-r1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/tahoe-lafs/tahoe-lafs-1.10.0-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/tahoe-lafs/tahoe-lafs-1.10.0-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: tahoe-lafs-1.10.0-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2013 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/net-fs/tahoe-lafs/tahoe-lafs-1.10.0-r1.ebuild,v 1.1 2013/08/01 14:20:33 hasufell Exp $
53
54 EAPI=5
55
56 PYTHON_COMPAT=( python2_6 python2_7 )
57 PYTHON_REQ_USE="sqlite"
58
59 inherit distutils-r1
60
61 MY_PN="allmydata-tahoe"
62 MY_P="${MY_PN}-${PV}"
63
64 DESCRIPTION="A secure, decentralized, data store"
65 HOMEPAGE="http://tahoe-lafs.org/trac/tahoe-lafs"
66 SRC_URI="http://tahoe-lafs.org/source/tahoe-lafs/releases/${MY_P}.tar.bz2"
67
68 LICENSE="GPL-2"
69 SLOT="0"
70 KEYWORDS="~amd64 ~x86"
71 IUSE="doc"
72
73 # distutils-r1 conversion pending for:
74 # dev-python/foolscap
75 # dev-python/nevow
76 # twisted.eclass
77 RDEPEND="
78 >=dev-python/foolscap-0.6.1
79 dev-python/nevow
80 dev-python/mock[${PYTHON_USEDEP}]
81 dev-python/pyasn1[${PYTHON_USEDEP}]
82 dev-python/pycrypto[${PYTHON_USEDEP}]
83 dev-python/pycryptopp[${PYTHON_USEDEP}]
84 dev-python/pyopenssl[${PYTHON_USEDEP}]
85 dev-python/pyutil[${PYTHON_USEDEP}]
86 dev-python/simplejson[${PYTHON_USEDEP}]
87 >=dev-python/twisted-9.0.0-r1
88 dev-python/zbase32[${PYTHON_USEDEP}]
89 dev-python/zfec[${PYTHON_USEDEP}]
90 net-zope/zope-interface[${PYTHON_USEDEP}]
91 virtual/python-argparse[${PYTHON_USEDEP}]"
92 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
93
94 S=${WORKDIR}/${MY_P}
95
96 PATCHES=( "${FILESDIR}"/${P}-{setup,ifconfig}.patch )
97
98 src_prepare() {
99 rm -r setuptools* setup.cfg || die
100 distutils-r1_src_prepare
101 }
102
103 src_install() {
104 distutils-r1_src_install
105 use doc && doins -r docs/*
106 }