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