Gentoo Archives: gentoo-commits

From: Johannes Huber <johu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/websocketpp/
Date: Sat, 09 Jun 2018 16:26:51
Message-Id: 1528561603.d9f05021378ddc8df25402a62c031be59fabbf7e.johu@gentoo
1 commit: d9f05021378ddc8df25402a62c031be59fabbf7e
2 Author: Johannes Huber <johu <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jun 9 16:26:29 2018 +0000
4 Commit: Johannes Huber <johu <AT> gentoo <DOT> org>
5 CommitDate: Sat Jun 9 16:26:43 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9f05021
7
8 dev-cpp/websocketpp: Remove 0.7.0 (r0)
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11
12 dev-cpp/websocketpp/websocketpp-0.7.0.ebuild | 37 ----------------------------
13 1 file changed, 37 deletions(-)
14
15 diff --git a/dev-cpp/websocketpp/websocketpp-0.7.0.ebuild b/dev-cpp/websocketpp/websocketpp-0.7.0.ebuild
16 deleted file mode 100644
17 index 0f0ca9b6ecd..00000000000
18 --- a/dev-cpp/websocketpp/websocketpp-0.7.0.ebuild
19 +++ /dev/null
20 @@ -1,37 +0,0 @@
21 -# Copyright 1999-2017 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=6
25 -
26 -inherit cmake-utils
27 -
28 -DESCRIPTION="C++/Boost Asio based websocket client/server library"
29 -HOMEPAGE="http://www.zaphoyd.com/websocketpp"
30 -SRC_URI="https://github.com/zaphoyd/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
31 -
32 -KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc64 ~x86"
33 -LICENSE="BSD"
34 -SLOT="0"
35 -IUSE="boost examples test"
36 -
37 -DEPEND=""
38 -RDEPEND="${DEPEND}
39 - boost? ( dev-libs/boost )
40 -"
41 -
42 -# bug 630450
43 -RESTRICT="test"
44 -
45 -src_configure() {
46 - local mycmakeargs=(
47 - -DENABLE_CPP11="$(usex !boost)"
48 - -DBUILD_TESTS="$(usex test)"
49 - )
50 -
51 - cmake-utils_src_configure
52 -}
53 -
54 -src_install() {
55 - use examples && DOCS=( examples/ )
56 - cmake-utils_src_install
57 -}