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, 09 Sep 2020 07:55:45
Message-Id: 1599638139.11730971fc4b0096ccd796a0058bfa4703f38f8b.zlogene@gentoo
1 commit: 11730971fc4b0096ccd796a0058bfa4703f38f8b
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 9 07:54:27 2020 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 9 07:55:39 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11730971
7
8 net-libs/libtorrent-rasterbar: Version bump (v1.2.10)
9
10 Package-Manager: Portage-3.0.4, Repoman-2.3.23
11 Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
12
13 net-libs/libtorrent-rasterbar/Manifest | 1 +
14 .../libtorrent-rasterbar-1.2.10.ebuild | 115 +++++++++++++++++++++
15 2 files changed, 116 insertions(+)
16
17 diff --git a/net-libs/libtorrent-rasterbar/Manifest b/net-libs/libtorrent-rasterbar/Manifest
18 index 943bbb279ef..d4de008b2ca 100644
19 --- a/net-libs/libtorrent-rasterbar/Manifest
20 +++ b/net-libs/libtorrent-rasterbar/Manifest
21 @@ -1,3 +1,4 @@
22 +DIST libtorrent-1.2.10.tar.gz 3586008 BLAKE2B 71971124930462feb5f5083fed38ccadcfd1a2aed0d000a06cd7e0898b40a1451722cd79fdf0b1da3477047b26c7f7e3c1f74086a141770a7d143c916e96b6bb SHA512 e6de939fb6527783695e0b6623ddbe27f85842a36c0899b93ea0284cb3c6f3d14b8c39e29316adb3bf9acac7804f38385cc06854a32df28e7f4f6839af9f382d
23 DIST libtorrent-1.2.9.tar.gz 3584800 BLAKE2B 5160056e227a54992ca4e490ffe0088d080aa9bade7a76f55eac26a644bab720c39a70b90d94f465ec711893249a084d9f77fa496be770585094b9b3ea4a1cdd SHA512 c547d96470f6a89f22adc0f5579ffb98b877a46f0a163698c49f1de57f23af60a7b0d3c1ca482e3ed8d3e35124d14a1d16a53e455f4d69f347fcb33c6ded75a8
24 DIST libtorrent-rasterbar-1.1.14.tar.gz 4040571 BLAKE2B 38ea1a71e46bf18c9beeb869280e4949b199ab58c32f41e63f1c15c7c32db0d256b741ea707350e9e153695b9cc28e0a95385944bf76dbd5eb2055e66bb0f919 SHA512 b640ada016f8e68a3fb0e033dd33ab79b345b0f691aa722c4256b8cd8524c6e55067ccd1f11584984bbb82c0f64151f0b5223bd2b8431b899ffca46d2d31fff5
25 DIST libtorrent-rasterbar-1.2.6.tar.gz 3611015 BLAKE2B 39323c223927272a4eb9bb93ad70acd62165b9b3eb3f4f45cb76f99a23b1e131b526c8d8370fbd7cc30c7e776a5f9b7990c989ceaa3566272adc25df639fc5ba SHA512 9f03e28449b08e18a98a1f1bf0571f470c56fabd2becde5bde56ad566611c8519b0b387939f285a552d1f0382446633b67d00b6b5ff7083e4d1420a3ce9232fc
26
27 diff --git a/net-libs/libtorrent-rasterbar/libtorrent-rasterbar-1.2.10.ebuild b/net-libs/libtorrent-rasterbar/libtorrent-rasterbar-1.2.10.ebuild
28 new file mode 100644
29 index 00000000000..1500e441663
30 --- /dev/null
31 +++ b/net-libs/libtorrent-rasterbar/libtorrent-rasterbar-1.2.10.ebuild
32 @@ -0,0 +1,115 @@
33 +# Copyright 1999-2020 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +PYTHON_COMPAT=( python3_{7,8} )
39 +PYTHON_REQ_USE="threads(+)"
40 +DISTUTILS_OPTIONAL=true
41 +DISTUTILS_IN_SOURCE_BUILD=true
42 +
43 +inherit autotools flag-o-matic distutils-r1
44 +
45 +DESCRIPTION="C++ BitTorrent implementation focusing on efficiency and scalability"
46 +HOMEPAGE="https://libtorrent.org https://github.com/arvidn/libtorrent"
47 +SRC_URI="https://github.com/arvidn/libtorrent/archive/libtorrent-${PV}.tar.gz"
48 +
49 +LICENSE="BSD"
50 +SLOT="0/10"
51 +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86"
52 +IUSE="debug +dht doc examples libressl python +ssl static-libs test"
53 +
54 +REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
55 +
56 +RESTRICT="!test? ( test )"
57 +
58 +S="${WORKDIR}/libtorrent-libtorrent-${PV}"
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 + mkdir -p "${S}"/build-aux || die
79 + touch "${S}"/build-aux/config.rpath || die
80 + append-cxxflags -std=c++14
81 + eautoreconf
82 +
83 + default
84 +
85 + # bug 578026
86 + # prepend -L${S}/... to ensure bindings link against the lib we just built
87 + sed -i -e "s|^|-L${S}/src/.libs |" bindings/python/link_flags.in || die
88 +
89 + # prepend -I${S}/... to ensure bindings use the right headers
90 + sed -i -e "s|^|-I${S}/src/include |" bindings/python/compile_flags.in || die
91 +
92 + use python && distutils-r1_src_prepare
93 +}
94 +
95 +src_configure() {
96 +
97 + local myeconfargs=(
98 + $(use_enable debug)
99 + $(use_enable debug export-all)
100 + $(use_enable debug logging)
101 + $(use_enable dht)
102 + $(use_enable examples)
103 + $(use_enable ssl encryption)
104 + $(use_enable static-libs static)
105 + $(use_enable test tests)
106 + --with-boost
107 + --with-libiconv
108 + --enable-logging
109 + )
110 + econf "${myeconfargs[@]}"
111 +
112 + if use python; then
113 + python_configure() {
114 + econf "${myeconfargs[@]}" \
115 + --enable-python-binding \
116 + --with-boost-python="boost_${EPYTHON/./}"
117 + # git rid of c++11
118 + sed s/-std=c++11//g < bindings/python/compile_cmd > bindings/python/compile_cmd.new || die
119 + mv -f bindings/python/compile_cmd.new bindings/python/compile_cmd || die
120 + }
121 + distutils-r1_src_configure
122 + fi
123 +}
124 +
125 +src_compile() {
126 + default
127 +
128 + python_compile() {
129 + cd "${BUILD_DIR}/../bindings/python" || die
130 + distutils-r1_python_compile
131 + }
132 + use python && distutils-r1_src_compile
133 +}
134 +
135 +src_install() {
136 + use doc && HTML_DOCS+=( "${S}"/docs )
137 +
138 + default
139 +
140 + python_install() {
141 + cd "${BUILD_DIR}/../bindings/python" || die
142 + distutils-r1_python_install
143 + }
144 + use python && distutils-r1_src_install
145 +
146 + find "${D}" -name '*.la' -delete || die
147 +}