Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libtorrent-rasterbar/
Date: Sat, 06 Oct 2018 21:04:00
Message-Id: 1538859831.90c2f9346bb51186c5271d216533da52cdb07772.zlogene@gentoo
1 commit: 90c2f9346bb51186c5271d216533da52cdb07772
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 6 21:03:34 2018 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 6 21:03:51 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90c2f934
7
8 net-libs/libtorrent-rasterbar: Version bump (v1.1.10)
9
10 Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
11 Package-Manager: Portage-2.3.49, Repoman-2.3.11
12
13 net-libs/libtorrent-rasterbar/Manifest | 1 +
14 .../libtorrent-rasterbar-1.1.10.ebuild | 104 +++++++++++++++++++++
15 2 files changed, 105 insertions(+)
16
17 diff --git a/net-libs/libtorrent-rasterbar/Manifest b/net-libs/libtorrent-rasterbar/Manifest
18 index 975eee483f7..d566ecc581c 100644
19 --- a/net-libs/libtorrent-rasterbar/Manifest
20 +++ b/net-libs/libtorrent-rasterbar/Manifest
21 @@ -1,3 +1,4 @@
22 +DIST libtorrent-rasterbar-1.1.10.tar.gz 3902542 BLAKE2B 3a78862ce2825c9da32ab38122db05c2816daa237559446a60702f562e971c5597210dfc2612235294cec3f60fa3de8cab3a0246887ac4779b01171a460f70f0 SHA512 414deeb9765bfb6072af5fa00ad836bfe3751622a80783ea84389e31355b342a4371f0dc195b2d27b154826e515b2e6063c8786f792afa347abba9caadaa5b2a
23 DIST libtorrent-rasterbar-1.1.5.tar.gz 3942894 BLAKE2B 0a1102e1b74049c1f5d8980363a6b92a3378339349609d64d3b7a38a58baf6c2898a26f70e92b0de0d6a1f4b6725a576a850aacaa5764fe7d96fa0b541dfa2d7 SHA512 d0e7fe944c8a396aaf79ce80c7513be07a855bc8a9eee3bca46ed83d5e190aaa5ea4dc9a8a7208e27e18ae8f15733e6e34eabd375f0bde43d4dc4607840782e7
24 DIST libtorrent-rasterbar-1.1.7.tar.gz 3951887 BLAKE2B 4729a718f5ce5bf2a41506f18f48bc588ad863ea8e640dde6f9e0a35bb909ff651fca3c8729668b25507fa3928218be579964c683d9d6bf3dc1c3abcce0f9452 SHA512 e35e95eec55a69b81c1d21f73e230dc4de7502b5adce99193c01b0d89a04b0f484788ff235d3f73cc77eeccba8d8d441fac92aa76a17afb56bafabd318b4a75e
25 DIST libtorrent-rasterbar-1.1.9.tar.gz 3903742 BLAKE2B a9f942e7d06e076dec98314bc44e8633731c51e8469095ebff8c9c8084305714ca40663a0d963f16188ba17fa640f273eaa1396784514bc04e4bc4cbcdc3aab2 SHA512 2dcf81fdf34b81790012a6c20dc344dccb89535359cffeb9a2725763f0a1842a00af1ae06b63e4e32054f06ceb14e32031afe479dc36897ddab28494241eb756
26
27 diff --git a/net-libs/libtorrent-rasterbar/libtorrent-rasterbar-1.1.10.ebuild b/net-libs/libtorrent-rasterbar/libtorrent-rasterbar-1.1.10.ebuild
28 new file mode 100644
29 index 00000000000..c74205693cc
30 --- /dev/null
31 +++ b/net-libs/libtorrent-rasterbar/libtorrent-rasterbar-1.1.10.ebuild
32 @@ -0,0 +1,104 @@
33 +# Copyright 1999-2018 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
39 +PYTHON_REQ_USE="threads"
40 +DISTUTILS_OPTIONAL=true
41 +DISTUTILS_IN_SOURCE_BUILD=true
42 +
43 +inherit distutils-r1 flag-o-matic
44 +
45 +MY_PV=$(ver_rs 1-2 '_')
46 +
47 +DESCRIPTION="C++ BitTorrent implementation focusing on efficiency and scalability"
48 +HOMEPAGE="http://libtorrent.org"
49 +SRC_URI="https://github.com/arvidn/libtorrent/releases/download/libtorrent-${MY_PV}/${P}.tar.gz"
50 +
51 +LICENSE="BSD"
52 +SLOT="0/9"
53 +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
54 +IUSE="debug +dht doc examples libressl python +ssl static-libs test"
55 +
56 +REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
57 +
58 +RDEPEND="
59 + dev-libs/boost:=[threads]
60 + virtual/libiconv
61 + examples? ( !net-p2p/mldonkey )
62 + python? (
63 + ${PYTHON_DEPS}
64 + dev-libs/boost:=[python,${PYTHON_USEDEP}]
65 + )
66 + ssl? (
67 + !libressl? ( dev-libs/openssl:0= )
68 + libressl? ( dev-libs/libressl:= )
69 + )
70 +"
71 +DEPEND="${RDEPEND}
72 + sys-devel/libtool
73 +"
74 +
75 +src_prepare() {
76 + default
77 +
78 + # bug 578026
79 + # prepend -L${S}/... to ensure bindings link against the lib we just built
80 + sed -i -e "s|^|-L${S}/src/.libs |" bindings/python/link_flags.in || die
81 +
82 + # prepend -I${S}/... to ensure bindings use the right headers
83 + sed -i -e "s|^|-I${S}/src/include |" bindings/python/compile_flags.in || die
84 +
85 + use python && distutils-r1_src_prepare
86 +}
87 +
88 +src_configure() {
89 + append-cxxflags -std=c++11 # bug 634506
90 +
91 + local myeconfargs=(
92 + $(use_enable debug)
93 + $(use_enable debug logging)
94 + $(use_enable debug disk-stats)
95 + $(use_enable dht dht $(usex debug logging $(usex ('yes' 'no'))))
96 + $(use_enable examples)
97 + $(use_enable ssl encryption)
98 + $(use_enable static-libs static)
99 + $(use_enable test tests)
100 + --with-libiconv
101 + )
102 + econf "${myeconfargs[@]}"
103 +
104 + if use python; then
105 + python_configure() {
106 + econf "${myeconfargs[@]}" \
107 + --enable-python-binding \
108 + --with-boost-python="${EPYTHON#python}"
109 + }
110 + distutils-r1_src_configure
111 + fi
112 +}
113 +
114 +src_compile() {
115 + default
116 +
117 + python_compile() {
118 + cd "${BUILD_DIR}/../bindings/python" || die
119 + distutils-r1_python_compile
120 + }
121 + use python && distutils-r1_src_compile
122 +}
123 +
124 +src_install() {
125 + use doc && HTML_DOCS+=( "${S}"/docs )
126 +
127 + default
128 +
129 + python_install() {
130 + cd "${BUILD_DIR}/../bindings/python" || die
131 + distutils-r1_python_install
132 + }
133 + use python && distutils-r1_src_install
134 +
135 + find "${D}" -name '*.la' -delete || die
136 +}