Gentoo Archives: gentoo-commits

From: "Jeremy Olexa (darkside)" <darkside@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-video/coherence: metadata.xml ChangeLog coherence-0.6.6.1.ebuild
Date: Sun, 27 Dec 2009 05:19:11
Message-Id: E1NOlX1-0002SU-GK@stork.gentoo.org
1 darkside 09/12/27 05:19:07
2
3 Added: metadata.xml ChangeLog coherence-0.6.6.1.ebuild
4 Log:
5 Initial ebuild. Many thanks to all the contributors on bug 246166. This ebuild is still in rough shape, needs to have the deps worked out and minor fixes. Funtionality works
6 (Portage version: 2.1.7.15/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 media-video/coherence/metadata.xml
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/coherence/metadata.xml?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/coherence/metadata.xml?rev=1.1&content-type=text/plain
13
14 Index: metadata.xml
15 ===================================================================
16 <?xml version="1.0" encoding="UTF-8"?>
17 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
18 <pkgmetadata>
19 <herd>media-video</herd>
20 <maintainer>
21 <email>darkside@g.o</email>
22 </maintainer>
23 </pkgmetadata>
24
25
26
27 1.1 media-video/coherence/ChangeLog
28
29 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/coherence/ChangeLog?rev=1.1&view=markup
30 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/coherence/ChangeLog?rev=1.1&content-type=text/plain
31
32 Index: ChangeLog
33 ===================================================================
34 # ChangeLog for media-video/coherence
35 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
36 # $Header: /var/cvsroot/gentoo-x86/media-video/coherence/ChangeLog,v 1.1 2009/12/27 05:19:07 darkside Exp $
37
38 *coherence-0.6.6.1 (27 Dec 2009)
39
40 27 Dec 2009; Jeremy Olexa <darkside@g.o> +coherence-0.6.6.1.ebuild,
41 +files/coherence-init, +metadata.xml:
42 Initial ebuild. Many thanks to all the contributors on bug 246166. This
43 ebuild is still in rough shape, needs to have the deps worked out and
44 minor fixes. Funtionality works
45
46
47
48
49 1.1 media-video/coherence/coherence-0.6.6.1.ebuild
50
51 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/coherence/coherence-0.6.6.1.ebuild?rev=1.1&view=markup
52 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/coherence/coherence-0.6.6.1.ebuild?rev=1.1&content-type=text/plain
53
54 Index: coherence-0.6.6.1.ebuild
55 ===================================================================
56 # Copyright 1999-2009 Gentoo Foundation
57 # Distributed under the terms of the GNU General Public License v2
58 # $Header: /var/cvsroot/gentoo-x86/media-video/coherence/coherence-0.6.6.1.ebuild,v 1.1 2009/12/27 05:19:07 darkside Exp $
59
60 EAPI=2
61 inherit distutils
62
63 MY_P="Coherence-${PV}"
64
65 DESCRIPTION="Coherence is a framework written in Python for DLNA/UPnP components"
66 HOMEPAGE="https://coherence.beebits.net/"
67 SRC_URI="http://coherence.beebits.net/download/${MY_P}.tar.gz"
68
69 LICENSE="MIT"
70 SLOT="0"
71 KEYWORDS="~amd64"
72 IUSE=""
73
74 # deps are not exact and need some work
75 DEPEND="dev-python/louie
76 dev-python/twisted
77 dev-python/twisted-web
78 dev-python/configobj
79 dev-python/gst-python
80 dev-python/nevow"
81 RDEPEND="${DEPEND}
82 dev-python/axiom
83 dev-python/gdata
84 dev-python/feedparser
85 dev-lang/python[sqlite]
86 dev-python/tagpy"
87
88 S="${WORKDIR}/${MY_P}"
89
90 src_install() {
91 DOCS="docs/*"
92 distutils_src_install
93 newinitd "${FILESDIR}"/coherence-init coherence
94 }