Gentoo Archives: gentoo-commits

From: "Kacper Kowalik (xarthisius)" <xarthisius@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/identicurse: metadata.xml ChangeLog identicurse-0.7.3.ebuild
Date: Sat, 03 Sep 2011 19:51:57
Message-Id: 20110903195144.E4E2320054@flycatcher.gentoo.org
1 xarthisius 11/09/03 19:51:44
2
3 Added: metadata.xml ChangeLog identicurse-0.7.3.ebuild
4 Log:
5 Initial import wrt bug #381695. Ebuild written by me.
6
7 (Portage version: 2.2.0_alpha51/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 net-misc/identicurse/metadata.xml
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/identicurse/metadata.xml?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/identicurse/metadata.xml?rev=1.1&content-type=text/plain
14
15 Index: metadata.xml
16 ===================================================================
17 <?xml version="1.0" encoding="UTF-8"?>
18 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
19 <pkgmetadata>
20 <herd>no-herd</herd>
21 <maintainer>
22 <email>xarthisius@g.o</email>
23 <name>Kacper Kowalik</name>
24 </maintainer>
25 <longdescription>A simple Identi.ca client with a curses-based UI.</longdescription>
26 </pkgmetadata>
27
28
29
30 1.1 net-misc/identicurse/ChangeLog
31
32 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/identicurse/ChangeLog?rev=1.1&view=markup
33 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/identicurse/ChangeLog?rev=1.1&content-type=text/plain
34
35 Index: ChangeLog
36 ===================================================================
37 # ChangeLog for net-misc/identicurse
38 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
39 # $Header: /var/cvsroot/gentoo-x86/net-misc/identicurse/ChangeLog,v 1.1 2011/09/03 19:51:44 xarthisius Exp $
40
41 *identicurse-0.7.3 (03 Sep 2011)
42
43 03 Sep 2011; Kacper Kowalik <xarthisius@g.o>
44 +identicurse-0.7.3.ebuild, +files/identicurse-config_json_path.patch,
45 +files/identicurse-gzipped_readme.patch, +metadata.xml:
46 Initial import wrt bug #381695. Ebuild written by me.
47
48
49
50
51 1.1 net-misc/identicurse/identicurse-0.7.3.ebuild
52
53 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/identicurse/identicurse-0.7.3.ebuild?rev=1.1&view=markup
54 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/identicurse/identicurse-0.7.3.ebuild?rev=1.1&content-type=text/plain
55
56 Index: identicurse-0.7.3.ebuild
57 ===================================================================
58 # Copyright 1999-2011 Gentoo Foundation
59 # Distributed under the terms of the GNU General Public License v2
60 # $Header: /var/cvsroot/gentoo-x86/net-misc/identicurse/identicurse-0.7.3.ebuild,v 1.1 2011/09/03 19:51:44 xarthisius Exp $
61
62 EAPI=3
63
64 PYTHON_DEPEND="2"
65 SUPPORT_PYTHON_ABIS="1"
66 RESTRICT_PYTHON_ABIS="3.*"
67
68 inherit distutils versionator
69
70 MY_PV=$(get_version_component_range 1-2)
71
72 DESCRIPTION="A simple Identi.ca client with a curses-based UI"
73 HOMEPAGE="http://identicurse.net"
74 SRC_URI="http://identicurse.net/release/${MY_PV}/${P}.tar.bz2"
75
76 LICENSE="GPL-3"
77 SLOT="0"
78 KEYWORDS="~amd64 ~x86"
79 IUSE=""
80
81 DEPEND="dev-python/setuptools"
82 RDEPEND=""
83
84 S=${WORKDIR}/${PN}-${MY_PV}
85
86 src_prepare() {
87 epatch "${FILESDIR}"/${PN}-gzipped_readme.patch \
88 "${FILESDIR}"/${PN}-config_json_path.patch
89 distutils_src_prepare
90 }