From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0AAF1138334 for ; Mon, 16 Jul 2018 13:27:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9C1C2E07E0; Mon, 16 Jul 2018 13:27:56 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6BE2BE07E0 for ; Mon, 16 Jul 2018 13:27:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4D54A335C2B for ; Mon, 16 Jul 2018 13:27:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D5BAF349 for ; Mon, 16 Jul 2018 13:27:51 +0000 (UTC) From: "Johannes Huber" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Johannes Huber" Message-ID: <1531747651.de6065c1cdf392382a4ffc19fcd63276cc32e00d.johu@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/websocketpp/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-cpp/websocketpp/Manifest dev-cpp/websocketpp/websocketpp-0.8.1.ebuild X-VCS-Directories: dev-cpp/websocketpp/ X-VCS-Committer: johu X-VCS-Committer-Name: Johannes Huber X-VCS-Revision: de6065c1cdf392382a4ffc19fcd63276cc32e00d X-VCS-Branch: master Date: Mon, 16 Jul 2018 13:27:51 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: c19f113f-7c76-4ab1-b78f-ab76ffee0a26 X-Archives-Hash: 0e955fdfca1debe6cc9416cdca2a04f4 commit: de6065c1cdf392382a4ffc19fcd63276cc32e00d Author: Johannes Huber gentoo org> AuthorDate: Mon Jul 16 13:27:00 2018 +0000 Commit: Johannes Huber gentoo org> CommitDate: Mon Jul 16 13:27:31 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de6065c1 dev-cpp/websocketpp: Version bump 0.8.1 Package-Manager: Portage-2.3.43, Repoman-2.3.10 dev-cpp/websocketpp/Manifest | 1 + dev-cpp/websocketpp/websocketpp-0.8.1.ebuild | 39 ++++++++++++++++++++++++++++ 2 files changed, 40 insertions(+) diff --git a/dev-cpp/websocketpp/Manifest b/dev-cpp/websocketpp/Manifest index 201bbe26e33..16773470233 100644 --- a/dev-cpp/websocketpp/Manifest +++ b/dev-cpp/websocketpp/Manifest @@ -1 +1,2 @@ DIST websocketpp-0.7.0.tar.gz 682271 BLAKE2B 4da1fb076c2f533cdbdaa2cc0b0b45509216fcbc3b465f137905a34477aff0e93005f36d0257f314fd91b7de59e587e1b1df9af664a717b8dbf477b168025f26 SHA512 91a86d4f5120db3f474169bb146f865f82167b1e9eedabec8793b31005e4ce3d22083283bc1b9f9e37fa0da835addcb2b68260a27c753852c06b3b1bb2f3c12e +DIST websocketpp-0.8.1.tar.gz 699468 BLAKE2B e5769229b400d2f42e69541b07cfba17dcc82cdad20685a52ac1130c2fc4e94764a38d2e4f7c36101b11705e10c67eb149ba2c30750e7a6f63696d52c272fed2 SHA512 35e0261ed0285acf77d300768819bd380197de8acdf68223e2d7598481b9bfd69cb1653b435139771b1db6c16530c8d8cf9a887a8a6bba3fea126d0da4dbc13c diff --git a/dev-cpp/websocketpp/websocketpp-0.8.1.ebuild b/dev-cpp/websocketpp/websocketpp-0.8.1.ebuild new file mode 100644 index 00000000000..0818e872e79 --- /dev/null +++ b/dev-cpp/websocketpp/websocketpp-0.8.1.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit cmake-utils + +DESCRIPTION="C++/Boost Asio based websocket client/server library" +HOMEPAGE="http://www.zaphoyd.com/websocketpp" +SRC_URI="https://github.com/zaphoyd/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc64 ~x86" +LICENSE="BSD" +SLOT="0" +IUSE="boost examples test" + +DEPEND="" +RDEPEND="${DEPEND} + boost? ( dev-libs/boost ) +" + +# bug 630450 +RESTRICT="test" + +PATCHES=( "${FILESDIR}/${PN}-0.7.0-cmake-install.patch" ) + +src_configure() { + local mycmakeargs=( + -DENABLE_CPP11="$(usex !boost)" + -DBUILD_TESTS="$(usex test)" + ) + + cmake-utils_src_configure +} + +src_install() { + use examples && DOCS=( examples/ ) + cmake-utils_src_install +}