Gentoo Archives: gentoo-commits

From: "Raul Porcel (armin76)" <armin76@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-p2p/deluge: ChangeLog deluge-1.3.0.ebuild deluge-1.3.0_rc2.ebuild
Date: Wed, 29 Sep 2010 13:02:06
Message-Id: 20100929130200.9B59520051@flycatcher.gentoo.org
1 armin76 10/09/29 13:02:00
2
3 Modified: ChangeLog
4 Added: deluge-1.3.0.ebuild
5 Removed: deluge-1.3.0_rc2.ebuild
6 Log:
7 Version bump wrt #338015
8 (Portage version: 2.1.8.3/cvs/Linux ia64)
9
10 Revision Changes Path
11 1.150 net-p2p/deluge/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/deluge/ChangeLog?rev=1.150&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/deluge/ChangeLog?rev=1.150&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/deluge/ChangeLog?r1=1.149&r2=1.150
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-p2p/deluge/ChangeLog,v
20 retrieving revision 1.149
21 retrieving revision 1.150
22 diff -u -r1.149 -r1.150
23 --- ChangeLog 31 Aug 2010 18:01:55 -0000 1.149
24 +++ ChangeLog 29 Sep 2010 13:02:00 -0000 1.150
25 @@ -1,6 +1,12 @@
26 # ChangeLog for net-p2p/deluge
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/deluge/ChangeLog,v 1.149 2010/08/31 18:01:55 spatz Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/deluge/ChangeLog,v 1.150 2010/09/29 13:02:00 armin76 Exp $
30 +
31 +*deluge-1.3.0 (29 Sep 2010)
32 +
33 + 29 Sep 2010; Raúl Porcel <armin76@g.o> -deluge-1.3.0_rc2.ebuild,
34 + +deluge-1.3.0.ebuild:
35 + Version bump wrt #338015
36
37 *deluge-1.3.0_rc2 (31 Aug 2010)
38
39
40
41
42 1.1 net-p2p/deluge/deluge-1.3.0.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/deluge/deluge-1.3.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/deluge/deluge-1.3.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: deluge-1.3.0.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-p2p/deluge/deluge-1.3.0.ebuild,v 1.1 2010/09/29 13:02:00 armin76 Exp $
52
53 EAPI="2"
54
55 inherit eutils distutils flag-o-matic python
56
57 DESCRIPTION="BitTorrent client with a client/server model."
58 HOMEPAGE="http://deluge-torrent.org/"
59 SRC_URI="http://download.deluge-torrent.org/source/${P}.tar.lzma"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~arm ~ppc ~x86"
64 IUSE="gtk libnotify webinterface"
65
66 DEPEND=">=virtual/python-2.5
67 || ( app-arch/xz-utils app-arch/lzma-utils )
68 >=net-libs/rb_libtorrent-0.14.9[python]
69 dev-python/setuptools"
70 RDEPEND="${DEPEND}
71 dev-python/chardet
72 dev-python/pyopenssl
73 dev-python/pyxdg
74 || ( >=virtual/python-2.6 dev-python/simplejson )
75 >=dev-python/twisted-8.1
76 >=dev-python/twisted-web-8.1
77 gtk? (
78 dev-python/pygame
79 dev-python/pygobject
80 >=dev-python/pygtk-2.12
81 gnome-base/librsvg
82 libnotify? ( dev-python/notify-python )
83 )
84 webinterface? ( dev-python/mako )"
85
86 pkg_setup() {
87 append-ldflags $(no-as-needed)
88 }
89
90 src_install() {
91 distutils_src_install
92 newinitd "${FILESDIR}"/deluged.init deluged
93 newconfd "${FILESDIR}"/deluged.conf deluged
94 }
95
96 pkg_postinst() {
97 elog
98 elog "If after upgrading it doesn't work, please remove the"
99 elog "'~/.config/deluge' directory and try again, but make a backup"
100 elog "first!"
101 elog
102 elog "To start the daemon either run 'deluged' as user"
103 elog "or modify /etc/conf.d/deluged and run"
104 elog "/etc/init.d/deluged start as root"
105 elog "You can still use deluge the old way"
106 elog
107 elog "For more information look at http://dev.deluge-torrent.org/wiki/Faq"
108 elog
109 }