Gentoo Archives: gentoo-commits

From: "Jesus Rivero (neurogeek)" <neurogeek@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-db/desktopcouch: ChangeLog desktopcouch-0.6.4.ebuild
Date: Tue, 27 Apr 2010 18:43:30
Message-Id: 20100427184325.BCC222C04C@corvid.gentoo.org
1 neurogeek 10/04/27 18:43:25
2
3 Modified: ChangeLog
4 Added: desktopcouch-0.6.4.ebuild
5 Log:
6 Fixed dependency for dev-python/couchdb-python wrt bug #315743. Fixed python ebuild related code wrt bug #312135. Removed older versions.
7 (Portage version: 2.2_rc67/cvs/Linux i686)
8
9 Revision Changes Path
10 1.3 dev-db/desktopcouch/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/desktopcouch/ChangeLog?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/desktopcouch/ChangeLog?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/desktopcouch/ChangeLog?r1=1.2&r2=1.3
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-db/desktopcouch/ChangeLog,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- ChangeLog 1 Apr 2010 02:22:49 -0000 1.2
23 +++ ChangeLog 27 Apr 2010 18:43:25 -0000 1.3
24 @@ -1,6 +1,15 @@
25 # ChangeLog for dev-db/desktopcouch
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-db/desktopcouch/ChangeLog,v 1.2 2010/04/01 02:22:49 neurogeek Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-db/desktopcouch/ChangeLog,v 1.3 2010/04/27 18:43:25 neurogeek Exp $
29 +
30 +*desktopcouch-0.6.4 (27 Apr 2010)
31 +
32 + 27 Apr 2010; Jesus Rivero <neurogeek@g.o>
33 + +desktopcouch-0.6.4.ebuild,
34 + +files/desktopcouch-0.6.4-setup_hardlinks.patch,
35 + -files/desktopcouch-setup_hardlinks.patch:
36 + Fixed dependency for dev-python/couchdb-python wrt bug #315743. Fixed
37 + python ebuild related code wrt bug #312135. Removed older versions.
38
39 *desktopcouch-0.6.1-r1 (01 Apr 2010)
40
41
42
43
44 1.1 dev-db/desktopcouch/desktopcouch-0.6.4.ebuild
45
46 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/desktopcouch/desktopcouch-0.6.4.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/desktopcouch/desktopcouch-0.6.4.ebuild?rev=1.1&content-type=text/plain
48
49 Index: desktopcouch-0.6.4.ebuild
50 ===================================================================
51 # Copyright 1999-2010 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/dev-db/desktopcouch/desktopcouch-0.6.4.ebuild,v 1.1 2010/04/27 18:43:25 neurogeek Exp $
54
55 PYTHONDEPEND="2"
56 EAPI="2"
57
58 inherit distutils eutils
59
60 DESCRIPTION="Desktop-oriented interface to CouchDB"
61 HOMEPAGE="https://launchpad.net/desktopcouch"
62 SRC_URI="http://launchpad.net/desktopcouch/trunk/${PV}/+download/${P}.tar.gz"
63 LICENSE="LGPL-3"
64 SLOT="0"
65 KEYWORDS="~amd64 ~x86"
66 IUSE="doc"
67
68 DEPEND=">=dev-python/python-distutils-extra-2.12"
69 RDEPEND=">=dev-db/couchdb-0.10.0
70 >=dev-python/gnome-keyring-python-2.22.3-r1
71 <dev-python/couchdb-python-0.7
72 >=dev-python/oauth-1.0.1
73 >=dev-python/simplejson-2.0.9-r1
74 >=dev-python/twisted-8.2.0-r2
75 >=net-dns/avahi-0.6.24-r2[python]"
76 RESTRICT="test"
77
78 src_prepare() {
79 epatch "${FILESDIR}/${P}-setup_hardlinks.patch"
80 }
81
82 src_install() {
83
84 python_convert_shebangs -r 2 "bin/"
85
86 distutils_src_install
87
88 exeinto "${ROOT}/usr/lib/${PN}"
89 doexe "bin/desktopcouch-stop"
90 doexe "bin/desktopcouch-service"
91 doexe "bin/desktopcouch-get-port"
92
93 if use doc; then
94 insinto "${ROOT}/usr/share/doc/${PF}/api"
95 doins "desktopcouch/records/doc/records.txt"
96 doins "desktopcouch/records/doc/field_registry.txt"
97 doins "desktopcouch/contacts/schema.txt"
98
99 doman "docs/man/desktopcouch-pair.1"
100 fi
101 }