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: Sun, 07 Oct 2018 09:42:44
Message-Id: 1538905327.d6d6ce75a9334e62bc545a2e6b3cfdfdad44c155.johu@gentoo
1 commit: d6d6ce75a9334e62bc545a2e6b3cfdfdad44c155
2 Author: Johannes Huber <johu <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 7 09:41:52 2018 +0000
4 Commit: Johannes Huber <johu <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 7 09:42:07 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6d6ce75
7
8 dev-cpp/websocketpp: Remove 0.7.0-r2
9
10 Overshadowed by 0.8.1.
11
12 Signed-off-by: Johannes Huber <johu <AT> gentoo.org>
13 Package-Manager: Portage-2.3.50, Repoman-2.3.11
14
15 dev-cpp/websocketpp/Manifest | 1 -
16 dev-cpp/websocketpp/websocketpp-0.7.0-r2.ebuild | 39 -------------------------
17 2 files changed, 40 deletions(-)
18
19 diff --git a/dev-cpp/websocketpp/Manifest b/dev-cpp/websocketpp/Manifest
20 index 16773470233..f678a25e2e1 100644
21 --- a/dev-cpp/websocketpp/Manifest
22 +++ b/dev-cpp/websocketpp/Manifest
23 @@ -1,2 +1 @@
24 -DIST websocketpp-0.7.0.tar.gz 682271 BLAKE2B 4da1fb076c2f533cdbdaa2cc0b0b45509216fcbc3b465f137905a34477aff0e93005f36d0257f314fd91b7de59e587e1b1df9af664a717b8dbf477b168025f26 SHA512 91a86d4f5120db3f474169bb146f865f82167b1e9eedabec8793b31005e4ce3d22083283bc1b9f9e37fa0da835addcb2b68260a27c753852c06b3b1bb2f3c12e
25 DIST websocketpp-0.8.1.tar.gz 699468 BLAKE2B e5769229b400d2f42e69541b07cfba17dcc82cdad20685a52ac1130c2fc4e94764a38d2e4f7c36101b11705e10c67eb149ba2c30750e7a6f63696d52c272fed2 SHA512 35e0261ed0285acf77d300768819bd380197de8acdf68223e2d7598481b9bfd69cb1653b435139771b1db6c16530c8d8cf9a887a8a6bba3fea126d0da4dbc13c
26
27 diff --git a/dev-cpp/websocketpp/websocketpp-0.7.0-r2.ebuild b/dev-cpp/websocketpp/websocketpp-0.7.0-r2.ebuild
28 deleted file mode 100644
29 index 49aa4f68f4d..00000000000
30 --- a/dev-cpp/websocketpp/websocketpp-0.7.0-r2.ebuild
31 +++ /dev/null
32 @@ -1,39 +0,0 @@
33 -# Copyright 1999-2018 Gentoo Authors
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=6
37 -
38 -inherit cmake-utils
39 -
40 -DESCRIPTION="C++/Boost Asio based websocket client/server library"
41 -HOMEPAGE="https://www.zaphoyd.com/websocketpp"
42 -SRC_URI="https://github.com/zaphoyd/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
43 -
44 -KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc64 ~x86"
45 -LICENSE="BSD"
46 -SLOT="0"
47 -IUSE="boost examples test"
48 -
49 -DEPEND=""
50 -RDEPEND="${DEPEND}
51 - boost? ( dev-libs/boost )
52 -"
53 -
54 -# bug 630450
55 -RESTRICT="test"
56 -
57 -PATCHES=( "${FILESDIR}/${P}-cmake-install.patch" )
58 -
59 -src_configure() {
60 - local mycmakeargs=(
61 - -DENABLE_CPP11="$(usex !boost)"
62 - -DBUILD_TESTS="$(usex test)"
63 - )
64 -
65 - cmake-utils_src_configure
66 -}
67 -
68 -src_install() {
69 - use examples && DOCS=( examples/ )
70 - cmake-utils_src_install
71 -}