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: Mon, 21 Jan 2019 13:27:47
Message-Id: 1548077255.3fa1e996223925a8680d72a48bac39bab4a022d4.zlogene@gentoo
1 commit: 3fa1e996223925a8680d72a48bac39bab4a022d4
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jan 21 13:27:17 2019 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Mon Jan 21 13:27:35 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3fa1e996
7
8 net-libs/libtorrent-rasterbar: Version bump (v1.2.0)
9
10 Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
11 Package-Manager: Portage-2.3.51, Repoman-2.3.11
12
13 net-libs/libtorrent-rasterbar/Manifest | 1 +
14 .../libtorrent-rasterbar-1.2.0.ebuild | 110 +++++++++++++++++++++
15 2 files changed, 111 insertions(+)
16
17 diff --git a/net-libs/libtorrent-rasterbar/Manifest b/net-libs/libtorrent-rasterbar/Manifest
18 index f4bd9639531..a7fb2861e3c 100644
19 --- a/net-libs/libtorrent-rasterbar/Manifest
20 +++ b/net-libs/libtorrent-rasterbar/Manifest
21 @@ -1,2 +1,3 @@
22 DIST libtorrent-rasterbar-1.1.10.tar.gz 3902542 BLAKE2B 3a78862ce2825c9da32ab38122db05c2816daa237559446a60702f562e971c5597210dfc2612235294cec3f60fa3de8cab3a0246887ac4779b01171a460f70f0 SHA512 414deeb9765bfb6072af5fa00ad836bfe3751622a80783ea84389e31355b342a4371f0dc195b2d27b154826e515b2e6063c8786f792afa347abba9caadaa5b2a
23 DIST libtorrent-rasterbar-1.1.11.tar.gz 4044314 BLAKE2B 96192ffdcb5bd1888307c874e2685314db9a99438337b0cb67ef317a2fe54b4a0e8e28fcdf34a1656a9abb69cc79f9bbda22cdedf1b8f2ba4f1b5488922c87b3 SHA512 1e0449406ea34b226033e3f54f719c5f2842043c7e54107e847050c67b1c5e9d2cb5a08fbf0e81c2c6e31eda6fe85c5ec0ff8ca47916c979894f778fc3313bb6
24 +DIST libtorrent-rasterbar-1.2.0.tar.gz 3546062 BLAKE2B a02ef8f273d8e6ec3b6f6a42d518f7cbba669f109f907e243bb90cd674009894b9edce2f355b52d77275f3fcd9537e9c26280f7b78dfbb1792f52d6c7f50f7da SHA512 2dae77f32cf3da388edece7e64b8d9cf359cca735a101d96bb18fb06573fd1d84c303e5bebd370f637d7c73010ea2d99e38748b2259ce02ae8f0dbc0c4f01518
25
26 diff --git a/net-libs/libtorrent-rasterbar/libtorrent-rasterbar-1.2.0.ebuild b/net-libs/libtorrent-rasterbar/libtorrent-rasterbar-1.2.0.ebuild
27 new file mode 100644
28 index 00000000000..c18af82cf1a
29 --- /dev/null
30 +++ b/net-libs/libtorrent-rasterbar/libtorrent-rasterbar-1.2.0.ebuild
31 @@ -0,0 +1,110 @@
32 +# Copyright 1999-2019 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
38 +PYTHON_REQ_USE="threads"
39 +DISTUTILS_OPTIONAL=true
40 +DISTUTILS_IN_SOURCE_BUILD=true
41 +
42 +inherit autotools distutils-r1 flag-o-matic
43 +
44 +MY_PV=$(ver_rs 1-2 '_')
45 +MY_P=${PN/-rasterbar}_${MY_PV}
46 +
47 +DESCRIPTION="C++ BitTorrent implementation focusing on efficiency and scalability"
48 +HOMEPAGE="https://libtorrent.org"
49 +SRC_URI="https://github.com/arvidn/libtorrent/archive/${MY_P}.tar.gz -> ${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 +S="${WORKDIR}/${PN/-rasterbar}-${MY_P}"
76 +
77 +src_prepare() {
78 + mkdir "${S}"/build-aux/ || die
79 + touch "${S}"/build-aux/config.rpath || die
80 + eautoreconf
81 +
82 + default
83 +
84 + # bug 578026
85 + # prepend -L${S}/... to ensure bindings link against the lib we just built
86 + sed -i -e "s|^|-L${S}/src/.libs |" bindings/python/link_flags.in || die
87 +
88 + # prepend -I${S}/... to ensure bindings use the right headers
89 + sed -i -e "s|^|-I${S}/src/include |" bindings/python/compile_flags.in || die
90 +
91 + use python && distutils-r1_src_prepare
92 +}
93 +
94 +src_configure() {
95 + append-cxxflags -std=c++11 # bug 634506
96 +
97 + local myeconfargs=(
98 + $(use_enable debug)
99 + $(use_enable debug export-all)
100 + $(use_enable dht dht $(usex debug logging $(usex ('yes' 'no'))))
101 + $(use_enable examples)
102 + $(use_enable ssl encryption)
103 + $(use_enable static-libs static)
104 + $(use_enable test tests)
105 + --with-libiconv
106 + )
107 + econf "${myeconfargs[@]}"
108 +
109 + if use python; then
110 + python_configure() {
111 + econf "${myeconfargs[@]}" \
112 + --enable-python-binding \
113 + --with-boost-python="${EPYTHON#python}"
114 + }
115 + distutils-r1_src_configure
116 + fi
117 +}
118 +
119 +src_compile() {
120 + default
121 +
122 + python_compile() {
123 + cd "${BUILD_DIR}/../bindings/python" || die
124 + distutils-r1_python_compile
125 + }
126 + use python && distutils-r1_src_compile
127 +}
128 +
129 +src_install() {
130 + use doc && HTML_DOCS+=( "${S}"/docs )
131 +
132 + default
133 +
134 + python_install() {
135 + cd "${BUILD_DIR}/../bindings/python" || die
136 + distutils-r1_python_install
137 + }
138 + use python && distutils-r1_src_install
139 +
140 + find "${D}" -name '*.la' -delete || die
141 +}