Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-nntp/hellanzb: hellanzb-0.13-r8.ebuild ChangeLog hellanzb-0.13-r7.ebuild
Date: Fri, 23 Apr 2010 13:49:07
Message-Id: 20100423134900.159F9317E1@corvid.gentoo.org
1 aballier 10/04/23 13:48:59
2
3 Modified: ChangeLog
4 Added: hellanzb-0.13-r8.ebuild
5 Removed: hellanzb-0.13-r7.ebuild
6 Log:
7 push changes
8 (Portage version: 2.2_rc67/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.17 net-nntp/hellanzb/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-nntp/hellanzb/ChangeLog?rev=1.17&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-nntp/hellanzb/ChangeLog?rev=1.17&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-nntp/hellanzb/ChangeLog?r1=1.16&r2=1.17
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-nntp/hellanzb/ChangeLog,v
20 retrieving revision 1.16
21 retrieving revision 1.17
22 diff -u -r1.16 -r1.17
23 --- ChangeLog 23 Apr 2010 13:46:56 -0000 1.16
24 +++ ChangeLog 23 Apr 2010 13:48:59 -0000 1.17
25 @@ -1,6 +1,12 @@
26 # ChangeLog for net-nntp/hellanzb
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-nntp/hellanzb/ChangeLog,v 1.16 2010/04/23 13:46:56 aballier Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-nntp/hellanzb/ChangeLog,v 1.17 2010/04/23 13:48:59 aballier Exp $
30 +
31 +*hellanzb-0.13-r8 (23 Apr 2010)
32 +
33 + 23 Apr 2010; Alexis Ballier <aballier@g.o>
34 + -hellanzb-0.13-r7.ebuild, +hellanzb-0.13-r8.ebuild:
35 + push changes
36
37 23 Apr 2010; Alexis Ballier <aballier@g.o> files/hellanzb.init:
38 init script improvements by Vladimir Brik <no.hope@×××××.com>, bug #293222
39
40
41
42 1.1 net-nntp/hellanzb/hellanzb-0.13-r8.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-nntp/hellanzb/hellanzb-0.13-r8.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-nntp/hellanzb/hellanzb-0.13-r8.ebuild?rev=1.1&content-type=text/plain
46
47 Index: hellanzb-0.13-r8.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/net-nntp/hellanzb/hellanzb-0.13-r8.ebuild,v 1.1 2010/04/23 13:48:59 aballier Exp $
52
53 inherit distutils eutils
54
55 DESCRIPTION="Retrieves and processes .nzb files"
56 HOMEPAGE="http://www.hellanzb.com/"
57 SRC_URI="http://www.hellanzb.com/distfiles/${P}.tar.gz"
58
59 LICENSE="BSD"
60 SLOT="0"
61 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris"
62 IUSE="libnotify ssl"
63
64 RDEPEND=">=dev-python/twisted-2.0
65 dev-python/twisted-web
66 || ( app-arch/unrar
67 app-arch/rar )
68 app-arch/par2cmdline
69 ssl? ( dev-python/pyopenssl )
70 libnotify? ( dev-python/notify-python )"
71
72 DEPEND=""
73
74 DOCS="CHANGELOG CREDITS PKG-INFO README"
75
76 src_unpack() {
77 unpack ${A}
78 cd "${S}"
79
80 epatch "${FILESDIR}/${P}-datafiles.patch"
81 epatch "${FILESDIR}/${P}-Fix_conf_file_search_path.patch"
82 epatch "${FILESDIR}/${P}-Choose_interface_to_bind_on.patch"
83 epatch "${FILESDIR}/${P}-fix_multiples_hosts.diff"
84 epatch "${FILESDIR}/${P}-gettinggroup.patch"
85 epatch "${FILESDIR}/${P}-python_26_fixes.patch"
86 epatch "${FILESDIR}/${P}-twisted-10.0.0.patch"
87 }
88
89 src_install() {
90 distutils_src_install
91
92 newconfd "${FILESDIR}/hellanzb.conf" hellanzb
93 newinitd "${FILESDIR}/hellanzb.init" hellanzb
94
95 insinto etc
96 doins etc/hellanzb.conf.sample
97 }
98
99 pkg_postinst() {
100 elog "You can start hellanzb in the background automatically by using"
101 elog "the init-script. To do this, add it to your default runlevel:"
102 elog ""
103 elog " rc-update add hellanzb default"
104 elog ""
105 elog "Use this command to start the daemon now:"
106 elog ""
107 elog " /etc/init.d/hellanzb start"
108 elog ""
109 elog "You will have to config /etc/conf.d/hellanzb before the init-script"
110 elog "will work. It is recommended that you change the user under which"
111 elog "the daemon will run."
112 }