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: Fri, 24 Apr 2020 11:34:33
Message-Id: 1587728064.e31c3f415231819678fb4b7f9a49858e1df96c58.zlogene@gentoo
1 commit: e31c3f415231819678fb4b7f9a49858e1df96c58
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Fri Apr 24 11:33:39 2020 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Fri Apr 24 11:34:24 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e31c3f41
7
8 net-libs/libtorrent-rasterbar: Version bump (v1.2.6)
9
10 Package-Manager: Portage-2.3.89, Repoman-2.3.20
11 Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
12
13 net-libs/libtorrent-rasterbar/Manifest | 1 +
14 .../libtorrent-rasterbar-1.2.6.ebuild | 113 +++++++++++++++++++++
15 2 files changed, 114 insertions(+)
16
17 diff --git a/net-libs/libtorrent-rasterbar/Manifest b/net-libs/libtorrent-rasterbar/Manifest
18 index 609d19944ea..76a45e5a145 100644
19 --- a/net-libs/libtorrent-rasterbar/Manifest
20 +++ b/net-libs/libtorrent-rasterbar/Manifest
21 @@ -3,3 +3,4 @@ DIST libtorrent-rasterbar-1.1.14.tar.gz 4040571 BLAKE2B 38ea1a71e46bf18c9beeb869
22 DIST libtorrent-rasterbar-1.2.3.tar.gz 3591081 BLAKE2B 9766a21c948997b35c6d209940a2d2cfd76b130f1a9d1f611e07d3eeb27f634a3c5eca12c92261139200084b9678913d85f6a56f98ab6894e5def761615c39ad SHA512 11a81c9f4b968ed360740553f8d856a2fad4eb2f6962f6403394e0a4a6b198ef6f04ce92d11fc6bed9aa979c84efd03fb396027dfe6603f394104b4302e04d82
23 DIST libtorrent-rasterbar-1.2.4.tar.gz 3598403 BLAKE2B 7a9a6b3244137fff785d0bd82dc0b1900b9e8c673f1cf9492bbde2c8f14d0a9d4ac3e4835eb9721bb9fa388d1a5d0635f2ffeb0f2a6f5a61f4fda7f89d6a10e3 SHA512 d24901acc0f462b6ff873f9aea880bf44698165db5343e8437b1dd7d7f20dfa6e7fe1e72a44a518fff5f2167a48552ec359696bb682c82e86012737177e082d3
24 DIST libtorrent-rasterbar-1.2.5.tar.gz 3603956 BLAKE2B b537ce709fb7941551d50cca8a29543f9735bad25cf33ecf99fc21e54a4ae4e24207e13800888111aec813dfea6811c702c2a1247e415eee8532d967ab8dfdb1 SHA512 2139f09fa20ce8e04a3e3340408abd744e58e1bd698d8509c2d0f166147a3894b36aa3e7e65574750d986259002d4dbd2b7e5052125d41d300116a810bbfaff8
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.6.ebuild b/net-libs/libtorrent-rasterbar/libtorrent-rasterbar-1.2.6.ebuild
28 new file mode 100644
29 index 00000000000..bdee60520d4
30 --- /dev/null
31 +++ b/net-libs/libtorrent-rasterbar/libtorrent-rasterbar-1.2.6.ebuild
32 @@ -0,0 +1,113 @@
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 distutils-r1
44 +
45 +MY_PV=$(ver_rs 1-2 '_')
46 +MY_P=${PN/-rasterbar}-${MY_PV}
47 +
48 +DESCRIPTION="C++ BitTorrent implementation focusing on efficiency and scalability"
49 +HOMEPAGE="https://libtorrent.org https://github.com/arvidn/libtorrent"
50 +SRC_URI="https://github.com/arvidn/libtorrent/archive/${MY_P}.tar.gz -> ${P}.tar.gz"
51 +
52 +LICENSE="BSD"
53 +SLOT="0/10"
54 +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86"
55 +IUSE="debug +dht doc examples libressl python +ssl static-libs test"
56 +
57 +REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
58 +
59 +RESTRICT="!test? ( test )"
60 +
61 +RDEPEND="
62 + dev-libs/boost:=[threads]
63 + virtual/libiconv
64 + examples? ( !net-p2p/mldonkey )
65 + python? (
66 + ${PYTHON_DEPS}
67 + dev-libs/boost:=[python,${PYTHON_USEDEP}]
68 + )
69 + ssl? (
70 + !libressl? ( dev-libs/openssl:0= )
71 + libressl? ( dev-libs/libressl:= )
72 + )
73 +"
74 +DEPEND="${RDEPEND}
75 + sys-devel/libtool
76 +"
77 +
78 +S="${WORKDIR}/${PN/-rasterbar}-${MY_P}"
79 +
80 +src_prepare() {
81 + mkdir "${S}"/build-aux/ || die
82 + touch "${S}"/build-aux/config.rpath || die
83 + eautoreconf
84 +
85 + default
86 +
87 + # bug 578026
88 + # prepend -L${S}/... to ensure bindings link against the lib we just built
89 + sed -i -e "s|^|-L${S}/src/.libs |" bindings/python/link_flags.in || die
90 +
91 + # prepend -I${S}/... to ensure bindings use the right headers
92 + sed -i -e "s|^|-I${S}/src/include |" bindings/python/compile_flags.in || die
93 +
94 + use python && distutils-r1_src_prepare
95 +}
96 +
97 +src_configure() {
98 +
99 + local myeconfargs=(
100 + $(use_enable debug)
101 + $(use_enable debug export-all)
102 + $(use_enable debug logging)
103 + $(use_enable dht)
104 + $(use_enable examples)
105 + $(use_enable ssl encryption)
106 + $(use_enable static-libs static)
107 + $(use_enable test tests)
108 + --with-boost="${EPREFIX}/usr"
109 + --with-libiconv
110 + )
111 + econf "${myeconfargs[@]}"
112 +
113 + if use python; then
114 + python_configure() {
115 + econf "${myeconfargs[@]}" \
116 + --enable-python-binding \
117 + --with-boost-python="boost_${EPYTHON/./}"
118 + }
119 + distutils-r1_src_configure
120 + fi
121 +}
122 +
123 +src_compile() {
124 + default
125 +
126 + python_compile() {
127 + cd "${BUILD_DIR}/../bindings/python" || die
128 + distutils-r1_python_compile
129 + }
130 + use python && distutils-r1_src_compile
131 +}
132 +
133 +src_install() {
134 + use doc && HTML_DOCS+=( "${S}"/docs )
135 +
136 + default
137 +
138 + python_install() {
139 + cd "${BUILD_DIR}/../bindings/python" || die
140 + distutils-r1_python_install
141 + }
142 + use python && distutils-r1_src_install
143 +
144 + find "${D}" -name '*.la' -delete || die
145 +}