Gentoo Archives: gentoo-commits

From: "Anthony G. Basile (blueness)" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-p2p/tribler: tribler-6.2.0.ebuild ChangeLog
Date: Fri, 02 Aug 2013 13:31:46
Message-Id: 20130802133140.1CFCC2171D@flycatcher.gentoo.org
1 blueness 13/08/02 13:31:40
2
3 Modified: ChangeLog
4 Added: tribler-6.2.0.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.1.12.2/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
9
10 Revision Changes Path
11 1.48 net-p2p/tribler/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/tribler/ChangeLog?rev=1.48&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/tribler/ChangeLog?rev=1.48&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/tribler/ChangeLog?r1=1.47&r2=1.48
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-p2p/tribler/ChangeLog,v
20 retrieving revision 1.47
21 retrieving revision 1.48
22 diff -u -r1.47 -r1.48
23 --- ChangeLog 10 May 2013 01:32:31 -0000 1.47
24 +++ ChangeLog 2 Aug 2013 13:31:39 -0000 1.48
25 @@ -1,6 +1,12 @@
26 # ChangeLog for net-p2p/tribler
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/tribler/ChangeLog,v 1.47 2013/05/10 01:32:31 blueness Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/tribler/ChangeLog,v 1.48 2013/08/02 13:31:39 blueness Exp $
30 +
31 +*tribler-6.2.0 (02 Aug 2013)
32 +
33 + 02 Aug 2013; Anthony G. Basile <blueness@g.o>
34 + +files/tribler-6.2.0-fix-desktop.patch, +tribler-6.2.0.ebuild:
35 + Version bump
36
37 *tribler-6.1.0 (10 May 2013)
38
39
40
41
42 1.1 net-p2p/tribler/tribler-6.2.0.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/tribler/tribler-6.2.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/tribler/tribler-6.2.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: tribler-6.2.0.ebuild
48 ===================================================================
49 # Copyright 1999-2013 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/net-p2p/tribler/tribler-6.2.0.ebuild,v 1.1 2013/08/02 13:31:39 blueness Exp $
52
53 EAPI="5"
54 PYTHON_DEPEND="2"
55 PYTHON_USE_WITH="sqlite"
56
57 inherit eutils python unpacker
58
59 DESCRIPTION="Bittorrent client that does not require a website to discover content"
60 HOMEPAGE="http://www.tribler.org/"
61 SRC_URI="
62 http://dl.tribler.org/tribler_6.2.0ubuntu1_all.deb
63 x86? ( http://dl.tribler.org/tribler-swift_6.2.0ubuntu1_i386.deb )
64 amd64? ( http://dl.tribler.org/tribler-swift_6.2.0ubuntu1_amd64.deb )"
65
66 LICENSE="LGPL-2.1"
67 SLOT="0"
68 KEYWORDS="~amd64 ~x86"
69 IUSE="vlc"
70
71 RDEPEND="
72 dev-python/apsw
73 dev-python/feedparser
74 dev-python/m2crypto
75 dev-python/netifaces
76 dev-libs/openssl
77 dev-python/wxpython
78 net-libs/rb_libtorrent
79 vlc? (
80 media-video/vlc
81 media-video/ffmpeg
82 )"
83
84 DEPEND="${RDEPEND}
85 app-arch/unzip"
86
87 S="${WORKDIR}"
88
89 QA_PREBUILT="/usr/lib/tribler/swift"
90
91 pkg_setup() {
92 python_set_active_version 2
93 python_pkg_setup
94 }
95
96 src_prepare() {
97 epatch "${FILESDIR}/${PN}-log2homedir.patch"
98 epatch "${FILESDIR}/${P}-fix-desktop.patch"
99
100 python_convert_shebangs -r 2 .
101 }
102
103 src_compile() { :; }
104
105 src_install() {
106 #Remove a dead sym link
107 rm usr/share/tribler/Tribler/Main/webUI/static/mootools.js
108
109 #Rename the doc dir properly
110 mv usr/share/doc/${PN} usr/share/doc/${P}
111
112 #Move the readme to the doc dir
113 mv usr/share/${PN}/Tribler/readme.txt usr/share/doc/${P}
114
115 #Remove the licenses scattered throughout
116 rm usr/share/doc/${P}/copyright
117 rm usr/share/${PN}/Tribler/*.txt
118 rm usr/share/${PN}/Tribler/Core/DecentralizedTracking/pymdht/LGPL-2.1.txt
119
120 #Copy the rest over
121 cp -pPR usr/ "${ED}"/
122 }
123
124 pkg_postinst() {
125 python_mod_optimize "${ROOT}"usr/share/${PN}
126 }
127
128 pkg_postrm() {
129 python_mod_cleanup "${ROOT}"usr/share/${PN}
130 }