Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-irc/irker: irker-2.11.ebuild ChangeLog
Date: Mon, 30 Jun 2014 04:03:34
Message-Id: 20140630040330.DE7E72004E@flycatcher.gentoo.org
1 patrick 14/06/30 04:03:30
2
3 Modified: ChangeLog
4 Added: irker-2.11.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.16 net-irc/irker/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/irker/ChangeLog?rev=1.16&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/irker/ChangeLog?rev=1.16&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/irker/ChangeLog?r1=1.15&r2=1.16
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-irc/irker/ChangeLog,v
20 retrieving revision 1.15
21 retrieving revision 1.16
22 diff -u -r1.15 -r1.16
23 --- ChangeLog 12 Jun 2014 03:16:00 -0000 1.15
24 +++ ChangeLog 30 Jun 2014 04:03:30 -0000 1.16
25 @@ -1,6 +1,11 @@
26 # ChangeLog for net-irc/irker
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-irc/irker/ChangeLog,v 1.15 2014/06/12 03:16:00 patrick Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-irc/irker/ChangeLog,v 1.16 2014/06/30 04:03:30 patrick Exp $
30 +
31 +*irker-2.11 (30 Jun 2014)
32 +
33 + 30 Jun 2014; Patrick Lauer <patrick@g.o> +irker-2.11.ebuild:
34 + Bump
35
36 *irker-2.9 (12 Jun 2014)
37
38
39
40
41 1.1 net-irc/irker/irker-2.11.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/irker/irker-2.11.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/irker/irker-2.11.ebuild?rev=1.1&content-type=text/plain
45
46 Index: irker-2.11.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/net-irc/irker/irker-2.11.ebuild,v 1.1 2014/06/30 04:03:30 patrick Exp $
51
52 EAPI=5
53 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
54 PYTHON_REQ_USE="ssl"
55
56 inherit python-single-r1 eutils
57
58 DESCRIPTION="Submission tools for IRC notifications"
59 HOMEPAGE="http://www.catb.org/esr/irker/"
60 SRC_URI="http://www.catb.org/esr/${PN}/${P}.tar.gz"
61
62 LICENSE="BSD"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86"
65 IUSE=""
66
67 DEPEND="virtual/python-argparse[${PYTHON_USEDEP}]
68 app-text/docbook-xml-dtd:4.1.2
69 app-text/xmlto"
70
71 src_prepare() {
72 # https://gitorious.org/irker/irker/merge_requests/25
73 epatch "${FILESDIR}/2.7-Register-author_name-as-author-instead-of-email-user.patch"
74
75 epatch "${FILESDIR}/2.7-irkerhook-Remove-file-listing.patch"
76
77 # Prefix support
78 sed -i -e "/^ExecStart=/ s:=/:=${EROOT}:" irkerd.service
79 }
80
81 src_install() {
82 emake DESTDIR="${ED}" install
83
84 python_doscript "${ED}/usr/bin/irkerd"
85 # Not installed with the default Makefile
86 python_doscript irk irkerhook.py
87
88 newinitd "${FILESDIR}/irkerd.initd" irkerd
89 newconfd "${FILESDIR}/irkerd.confd" irkerd
90
91 dodoc NEWS README hacking.txt security.txt
92 dohtml irkerd.html irkerhook.html
93
94 docinto examples
95 dodoc filter-example.py filter-test.py
96 }