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: Sun, 30 Aug 2020 12:04:22
Message-Id: 1598789055.a514c2b395994d3e4649bfb02dfa8289f51f1ff3.zlogene@gentoo
1 commit: a514c2b395994d3e4649bfb02dfa8289f51f1ff3
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 30 11:52:38 2020 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 30 12:04:15 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a514c2b3
7
8 net-libs/libtorrent-rasterbar: force c++14 std
9
10 Package-Manager: Portage-2.3.103, Repoman-2.3.23
11 Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
12
13 net-libs/libtorrent-rasterbar/libtorrent-rasterbar-1.2.9.ebuild | 3 ++-
14 1 file changed, 2 insertions(+), 1 deletion(-)
15
16 diff --git a/net-libs/libtorrent-rasterbar/libtorrent-rasterbar-1.2.9.ebuild b/net-libs/libtorrent-rasterbar/libtorrent-rasterbar-1.2.9.ebuild
17 index ec2c3393a34..cd0f738cc55 100644
18 --- a/net-libs/libtorrent-rasterbar/libtorrent-rasterbar-1.2.9.ebuild
19 +++ b/net-libs/libtorrent-rasterbar/libtorrent-rasterbar-1.2.9.ebuild
20 @@ -8,7 +8,7 @@ PYTHON_REQ_USE="threads(+)"
21 DISTUTILS_OPTIONAL=true
22 DISTUTILS_IN_SOURCE_BUILD=true
23
24 -inherit autotools distutils-r1
25 +inherit autotools flag-o-matic distutils-r1
26
27 DESCRIPTION="C++ BitTorrent implementation focusing on efficiency and scalability"
28 HOMEPAGE="https://libtorrent.org https://github.com/arvidn/libtorrent"
29 @@ -45,6 +45,7 @@ DEPEND="${RDEPEND}
30 src_prepare() {
31 mkdir -p "${S}"/build-aux || die
32 touch "${S}"/build-aux/config.rpath || die
33 + append-cxxflags -std=c++14
34 eautoreconf
35
36 default