public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-p2p/tribler: tribler-5.9.12.ebuild ChangeLog
@ 2012-06-02 15:46 Anthony G. Basile (blueness)
  0 siblings, 0 replies; 3+ messages in thread
From: Anthony G. Basile (blueness) @ 2012-06-02 15:46 UTC (permalink / raw
  To: gentoo-commits

blueness    12/06/02 15:46:37

  Modified:             ChangeLog
  Added:                tribler-5.9.12.ebuild
  Log:
  Version bump, bug #419163
  
  (Portage version: 2.1.10.49/cvs/Linux x86_64)

Revision  Changes    Path
1.13                 net-p2p/tribler/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/tribler/ChangeLog?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/tribler/ChangeLog?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/tribler/ChangeLog?r1=1.12&r2=1.13

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-p2p/tribler/ChangeLog,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ChangeLog	29 Mar 2012 13:26:28 -0000	1.12
+++ ChangeLog	2 Jun 2012 15:46:37 -0000	1.13
@@ -1,6 +1,13 @@
 # ChangeLog for net-p2p/tribler
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/tribler/ChangeLog,v 1.12 2012/03/29 13:26:28 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/tribler/ChangeLog,v 1.13 2012/06/02 15:46:37 blueness Exp $
+
+*tribler-5.9.12 (02 Jun 2012)
+
+  02 Jun 2012; Anthony G. Basile <blueness@gentoo.org> +tribler-5.9.12.ebuild,
+  +files/tribler-5.9.12-fix-global-declarations.patch,
+  +files/tribler-5.9.12-remove-garbage.patch:
+  Version bump, bug #419163
 
 *tribler-5.5.24 (29 Mar 2012)
 



1.1                  net-p2p/tribler/tribler-5.9.12.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/tribler/tribler-5.9.12.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/tribler/tribler-5.9.12.ebuild?rev=1.1&content-type=text/plain

Index: tribler-5.9.12.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-p2p/tribler/tribler-5.9.12.ebuild,v 1.1 2012/06/02 15:46:37 blueness Exp $

EAPI="4"
PYTHON_DEPEND="2:2.7"

inherit eutils python

MY_PV="${PN}_${PV}-1ubuntu1_all"

DESCRIPTION="Bittorrent client that does not require a website to discover content"
HOMEPAGE="http://www.tribler.org/"
SRC_URI="http://dl.tribler.org/${MY_PV}.deb"

LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="vlc"

RDEPEND=">=dev-lang/python-2.5[sqlite]
	>=dev-python/m2crypto-0.16
	>=dev-python/wxpython-2.8
	>=dev-python/apsw-3.6
	>=dev-libs/openssl-0.9.8
	vlc? ( >=media-video/vlc-1.1.0 )"

# Skipping for now:
# xulrunner-sdk >= 1.9.1.5 < 1.9.2 (optional, to run SwarmTransport)
# 7-Zip >= 4.6.5 (optional, to build SwarmTransport)

DEPEND="${RDEPEND}
	app-arch/unzip"

S=${WORKDIR}

pkg_setup() {
	python_set_active_version 2
	python_pkg_setup
}

src_unpack() {
	unpack ${A}
	unpack ./data.tar.gz
}

src_prepare() {
	epatch "${FILESDIR}/${P}-fix-global-declarations.patch"
	epatch "${FILESDIR}/${P}-remove-garbage.patch"
	epatch "${FILESDIR}/${PN}-log2homedir.patch"

	python_convert_shebangs -r 2 .
}

src_compile() { :; }

src_install() {
	#Rename the doc dir properly
	mv usr/share/doc/${PN} usr/share/doc/${P}

	#Move the readme to the doc dir
	mv usr/share/${PN}/Tribler/readme.txt usr/share/doc/${P}

	#Remove the licenses scattered throughout
	rm usr/share/doc/${P}/copyright
	rm usr/share/${PN}/Tribler/*.txt
	rm usr/share/${PN}/Tribler/Core/DecentralizedTracking/pymdht/{LGPL-2.1.txt,LICENSE.txt}

	#Copy the rest over
	cp -pPR usr/ "${ED}"/
}

pkg_postinst() {
	python_mod_optimize "${ROOT}"usr/share/${PN}
}

pkg_postrm() {
	python_mod_cleanup "${ROOT}"usr/share/${PN}
}






^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-p2p/tribler: tribler-5.9.12.ebuild ChangeLog
@ 2012-06-04 11:50 Anthony G. Basile (blueness)
  0 siblings, 0 replies; 3+ messages in thread
From: Anthony G. Basile (blueness) @ 2012-06-04 11:50 UTC (permalink / raw
  To: gentoo-commits

blueness    12/06/04 11:50:19

  Modified:             tribler-5.9.12.ebuild ChangeLog
  Log:
  RDEPEND <dev-lang/python-3 to prevent pulling in python-3, bug #419339
  
  (Portage version: 2.1.10.49/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  net-p2p/tribler/tribler-5.9.12.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/tribler/tribler-5.9.12.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/tribler/tribler-5.9.12.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/tribler/tribler-5.9.12.ebuild?r1=1.1&r2=1.2

Index: tribler-5.9.12.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-p2p/tribler/tribler-5.9.12.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- tribler-5.9.12.ebuild	2 Jun 2012 15:46:37 -0000	1.1
+++ tribler-5.9.12.ebuild	4 Jun 2012 11:50:19 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/tribler/tribler-5.9.12.ebuild,v 1.1 2012/06/02 15:46:37 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/tribler/tribler-5.9.12.ebuild,v 1.2 2012/06/04 11:50:19 blueness Exp $
 
 EAPI="4"
 PYTHON_DEPEND="2:2.7"
@@ -18,7 +18,7 @@
 KEYWORDS="~amd64 ~x86"
 IUSE="vlc"
 
-RDEPEND=">=dev-lang/python-2.5[sqlite]
+RDEPEND="<dev-lang/python-3[sqlite]
 	>=dev-python/m2crypto-0.16
 	>=dev-python/wxpython-2.8
 	>=dev-python/apsw-3.6



1.14                 net-p2p/tribler/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/tribler/ChangeLog?rev=1.14&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/tribler/ChangeLog?rev=1.14&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/tribler/ChangeLog?r1=1.13&r2=1.14

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-p2p/tribler/ChangeLog,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- ChangeLog	2 Jun 2012 15:46:37 -0000	1.13
+++ ChangeLog	4 Jun 2012 11:50:19 -0000	1.14
@@ -1,6 +1,9 @@
 # ChangeLog for net-p2p/tribler
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/tribler/ChangeLog,v 1.13 2012/06/02 15:46:37 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/tribler/ChangeLog,v 1.14 2012/06/04 11:50:19 blueness Exp $
+
+  04 Jun 2012; Anthony G. Basile <blueness@gentoo.org> tribler-5.9.12.ebuild:
+  RDEPEND <dev-lang/python-3 to prevent pulling in python-3, bug #419339
 
 *tribler-5.9.12 (02 Jun 2012)
 






^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-p2p/tribler: tribler-5.9.12.ebuild ChangeLog
@ 2012-06-04 20:08 Anthony G. Basile (blueness)
  0 siblings, 0 replies; 3+ messages in thread
From: Anthony G. Basile (blueness) @ 2012-06-04 20:08 UTC (permalink / raw
  To: gentoo-commits

blueness    12/06/04 20:08:24

  Modified:             tribler-5.9.12.ebuild ChangeLog
  Log:
  Improve python dependency, bug #419339 again
  
  (Portage version: 2.1.10.49/cvs/Linux x86_64)

Revision  Changes    Path
1.3                  net-p2p/tribler/tribler-5.9.12.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/tribler/tribler-5.9.12.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/tribler/tribler-5.9.12.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/tribler/tribler-5.9.12.ebuild?r1=1.2&r2=1.3

Index: tribler-5.9.12.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-p2p/tribler/tribler-5.9.12.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- tribler-5.9.12.ebuild	4 Jun 2012 11:50:19 -0000	1.2
+++ tribler-5.9.12.ebuild	4 Jun 2012 20:08:24 -0000	1.3
@@ -1,9 +1,10 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/tribler/tribler-5.9.12.ebuild,v 1.2 2012/06/04 11:50:19 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/tribler/tribler-5.9.12.ebuild,v 1.3 2012/06/04 20:08:24 blueness Exp $
 
 EAPI="4"
-PYTHON_DEPEND="2:2.7"
+PYTHON_DEPEND="2"
+PYTHON_USE_WITH="sqlite"
 
 inherit eutils python
 
@@ -18,8 +19,7 @@
 KEYWORDS="~amd64 ~x86"
 IUSE="vlc"
 
-RDEPEND="<dev-lang/python-3[sqlite]
-	>=dev-python/m2crypto-0.16
+RDEPEND=">=dev-python/m2crypto-0.16
 	>=dev-python/wxpython-2.8
 	>=dev-python/apsw-3.6
 	>=dev-libs/openssl-0.9.8



1.15                 net-p2p/tribler/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/tribler/ChangeLog?rev=1.15&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/tribler/ChangeLog?rev=1.15&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/tribler/ChangeLog?r1=1.14&r2=1.15

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-p2p/tribler/ChangeLog,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- ChangeLog	4 Jun 2012 11:50:19 -0000	1.14
+++ ChangeLog	4 Jun 2012 20:08:24 -0000	1.15
@@ -1,6 +1,9 @@
 # ChangeLog for net-p2p/tribler
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/tribler/ChangeLog,v 1.14 2012/06/04 11:50:19 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/tribler/ChangeLog,v 1.15 2012/06/04 20:08:24 blueness Exp $
+
+  04 Jun 2012; Anthony G. Basile <blueness@gentoo.org> tribler-5.9.12.ebuild:
+  Improve python dependency, bug #419339 again
 
   04 Jun 2012; Anthony G. Basile <blueness@gentoo.org> tribler-5.9.12.ebuild:
   RDEPEND <dev-lang/python-3 to prevent pulling in python-3, bug #419339






^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2012-06-04 20:08 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-04 20:08 [gentoo-commits] gentoo-x86 commit in net-p2p/tribler: tribler-5.9.12.ebuild ChangeLog Anthony G. Basile (blueness)
  -- strict thread matches above, loose matches on Subject: below --
2012-06-04 11:50 Anthony G. Basile (blueness)
2012-06-02 15:46 Anthony G. Basile (blueness)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox