Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-libs/rb_libtorrent: rb_libtorrent-0.16.5.ebuild ChangeLog
Date: Wed, 31 Oct 2012 17:26:34
Message-Id: 20121031172617.9DD4D21600@flycatcher.gentoo.org
1 flameeyes 12/10/31 17:26:17
2
3 Modified: rb_libtorrent-0.16.5.ebuild ChangeLog
4 Log:
5 Simplify finding boost library so that it works with all versions, now that it's unslotted.
6
7 (Portage version: 2.2.0_alpha141/cvs/Linux x86_64, signed Manifest commit with key 1CD13C8AD4301342)
8
9 Revision Changes Path
10 1.2 net-libs/rb_libtorrent/rb_libtorrent-0.16.5.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/rb_libtorrent/rb_libtorrent-0.16.5.ebuild?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/rb_libtorrent/rb_libtorrent-0.16.5.ebuild?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/rb_libtorrent/rb_libtorrent-0.16.5.ebuild?r1=1.1&r2=1.2
15
16 Index: rb_libtorrent-0.16.5.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-libs/rb_libtorrent/rb_libtorrent-0.16.5.ebuild,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- rb_libtorrent-0.16.5.ebuild 23 Oct 2012 22:02:10 -0000 1.1
23 +++ rb_libtorrent-0.16.5.ebuild 31 Oct 2012 17:26:17 -0000 1.2
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2012 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-libs/rb_libtorrent/rb_libtorrent-0.16.5.ebuild,v 1.1 2012/10/23 22:02:10 hwoarang Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-libs/rb_libtorrent/rb_libtorrent-0.16.5.ebuild,v 1.2 2012/10/31 17:26:17 flameeyes Exp $
29
30 EAPI="4"
31 PYTHON_DEPEND="python? 2:2.6"
32 @@ -43,17 +43,11 @@
33
34 src_configure() {
35 # use multi-threading versions of boost libs
36 - local BOOST_LIBS="--with-boost-system=boost_system-mt \
37 + local myconf="--with-boost-system=boost_system-mt \
38 --with-boost-python=boost_python-${PYTHON_ABI}-mt"
39 - # detect boost version and location, bug 295474
40 - BOOST_PKG="$(best_version ">=dev-libs/boost-1.34.1")"
41 - BOOST_VER="$(get_version_component_range 1-2 "${BOOST_PKG/*boost-/}")"
42 - BOOST_VER="$(replace_all_version_separators _ "${BOOST_VER}")"
43 - BOOST_INC="${EPREFIX}/usr/include/boost-${BOOST_VER}"
44 - BOOST_LIB="${EPREFIX}/usr/$(get_libdir)/boost-${BOOST_VER}"
45
46 local LOGGING
47 - use debug && LOGGING="--enable-logging=verbose"
48 + use debug && myconf+=" --enable-logging=verbose"
49
50 econf $(use_enable debug) \
51 $(use_enable test tests) \
52 @@ -61,10 +55,7 @@
53 $(use_enable python python-binding) \
54 $(use_enable ssl encryption) \
55 $(use_enable static-libs static) \
56 - ${LOGGING} \
57 - --with-boost=${BOOST_INC} \
58 - --with-boost-libdir=${BOOST_LIB} \
59 - ${BOOST_LIBS}
60 + ${myconf}
61 }
62
63 src_install() {
64
65
66
67 1.137 net-libs/rb_libtorrent/ChangeLog
68
69 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/rb_libtorrent/ChangeLog?rev=1.137&view=markup
70 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/rb_libtorrent/ChangeLog?rev=1.137&content-type=text/plain
71 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/rb_libtorrent/ChangeLog?r1=1.136&r2=1.137
72
73 Index: ChangeLog
74 ===================================================================
75 RCS file: /var/cvsroot/gentoo-x86/net-libs/rb_libtorrent/ChangeLog,v
76 retrieving revision 1.136
77 retrieving revision 1.137
78 diff -u -r1.136 -r1.137
79 --- ChangeLog 23 Oct 2012 22:02:10 -0000 1.136
80 +++ ChangeLog 31 Oct 2012 17:26:17 -0000 1.137
81 @@ -1,6 +1,11 @@
82 # ChangeLog for net-libs/rb_libtorrent
83 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
84 -# $Header: /var/cvsroot/gentoo-x86/net-libs/rb_libtorrent/ChangeLog,v 1.136 2012/10/23 22:02:10 hwoarang Exp $
85 +# $Header: /var/cvsroot/gentoo-x86/net-libs/rb_libtorrent/ChangeLog,v 1.137 2012/10/31 17:26:17 flameeyes Exp $
86 +
87 + 31 Oct 2012; Diego E. Pettenò <flameeyes@g.o>
88 + rb_libtorrent-0.16.5.ebuild:
89 + Simplify finding boost library so that it works with all versions, now that
90 + it's unslotted.
91
92 *rb_libtorrent-0.16.5 (23 Oct 2012)