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.3.1.ebuild ChangeLog
Date: Thu, 04 Sep 2014 10:29:18
Message-Id: 20140904102912.E43E84AE3@oystercatcher.gentoo.org
1 blueness 14/09/04 10:29:12
2
3 Modified: ChangeLog
4 Added: tribler-6.3.1.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
9
10 Revision Changes Path
11 1.50 net-p2p/tribler/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/tribler/ChangeLog?rev=1.50&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/tribler/ChangeLog?rev=1.50&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/tribler/ChangeLog?r1=1.49&r2=1.50
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-p2p/tribler/ChangeLog,v
20 retrieving revision 1.49
21 retrieving revision 1.50
22 diff -u -r1.49 -r1.50
23 --- ChangeLog 11 Aug 2013 22:59:17 -0000 1.49
24 +++ ChangeLog 4 Sep 2014 10:29:12 -0000 1.50
25 @@ -1,6 +1,11 @@
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.49 2013/08/11 22:59:17 aballier Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/tribler/ChangeLog,v 1.50 2014/09/04 10:29:12 blueness Exp $
31 +
32 +*tribler-6.3.1 (04 Sep 2014)
33 +
34 + 04 Sep 2014; Anthony G. Basile <blueness@g.o> +tribler-6.3.1.ebuild:
35 + Version bump
36
37 11 Aug 2013; Alexis Ballier <aballier@g.o> tribler-6.0.3.ebuild,
38 tribler-6.1.0.ebuild, tribler-6.2.0.ebuild:
39
40
41
42 1.1 net-p2p/tribler/tribler-6.3.1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/tribler/tribler-6.3.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/tribler/tribler-6.3.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: tribler-6.3.1.ebuild
48 ===================================================================
49 # Copyright 1999-2014 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.3.1.ebuild,v 1.1 2014/09/04 10:29:12 blueness Exp $
52
53 EAPI="5"
54
55 inherit eutils unpacker
56
57 DESCRIPTION="Bittorrent client that does not require a website to discover content"
58 HOMEPAGE="http://www.tribler.org/"
59 SRC_URI="
60 https://github.com/Tribler/tribler/releases/download/v6.3.1/tribler_6.3.1_all.deb
61 x86? ( https://github.com/Tribler/tribler/releases/download/v6.3.1/tribler-swift_6.3.1_i386.deb )
62 amd64? ( https://github.com/Tribler/tribler/releases/download/v6.3.1/tribler-swift_6.3.1_amd64.deb )"
63
64 LICENSE="GPL-2 LGPL-2.1+ PSF-2.4 openssl wxWinLL-3.1"
65 SLOT="0"
66 KEYWORDS="~amd64 ~x86"
67 IUSE="vlc"
68
69 RDEPEND="
70 dev-lang/python:2.7[sqlite]
71 dev-python/apsw
72 dev-python/feedparser
73 dev-python/m2crypto
74 dev-python/netifaces
75 dev-libs/openssl
76 dev-python/wxpython
77 net-libs/rb_libtorrent
78 vlc? (
79 media-video/vlc
80 media-video/ffmpeg:0
81 )"
82
83 DEPEND="${RDEPEND}
84 app-arch/unzip"
85
86 S="${WORKDIR}"
87
88 QA_PREBUILT="/usr/lib/tribler/swift"
89
90 src_prepare() {
91 epatch "${FILESDIR}/${PN}-log2homedir.patch"
92 epatch "${FILESDIR}/${PN}-6.2.0-fix-desktop.patch"
93 }
94
95 src_compile() { :; }
96
97 src_install() {
98 #Remove the licenses scattered throughout
99 rm usr/share/doc/${PN}-swift/copyright # LGPL-2.1+
100 rm usr/share/doc/${PN}/copyright # LGPL-2.1+
101 rm usr/share/${PN}/Tribler/binary-LICENSE-postfix.txt # GPL-2 LGPL-2.1+ PSF-2.4 openssl wxWinLL-3.1
102
103 #Rename the doc dir properly
104 mv usr/share/doc/${PN}-swift usr/share/doc/${PN}
105 mv usr/share/doc/${PN} usr/share/doc/${P}
106
107 #Move the readme to the doc dir
108 mv usr/share/${PN}/Tribler/readme.txt usr/share/doc/${P}
109
110 #Copy the rest over
111 cp -pPR usr/ "${ED}"/
112 }