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