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: Wed, 27 Jun 2018 09:36:43
Message-Id: 1530092187.d349c5d7d34d0ca7f7d1798a8bf837df69ec04e7.johu@gentoo
1 commit: d349c5d7d34d0ca7f7d1798a8bf837df69ec04e7
2 Author: Johannes Huber <johu <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jun 27 09:35:03 2018 +0000
4 Commit: Johannes Huber <johu <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 27 09:36:27 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d349c5d7
7
8 dev-cpp/websocketpp: Remove 0.7.0-r1
9
10 Package-Manager: Portage-2.3.41, Repoman-2.3.9
11
12 dev-cpp/websocketpp/websocketpp-0.7.0-r1.ebuild | 38 -------------------------
13 1 file changed, 38 deletions(-)
14
15 diff --git a/dev-cpp/websocketpp/websocketpp-0.7.0-r1.ebuild b/dev-cpp/websocketpp/websocketpp-0.7.0-r1.ebuild
16 deleted file mode 100644
17 index 5102455cf01..00000000000
18 --- a/dev-cpp/websocketpp/websocketpp-0.7.0-r1.ebuild
19 +++ /dev/null
20 @@ -1,38 +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 - -DINSTALL_CMAKE_DIR="$(get_libdir)/cmake/${PN}"
48 - -DENABLE_CPP11="$(usex !boost)"
49 - -DBUILD_TESTS="$(usex test)"
50 - )
51 -
52 - cmake-utils_src_configure
53 -}
54 -
55 -src_install() {
56 - use examples && DOCS=( examples/ )
57 - cmake-utils_src_install
58 -}