summaryrefslogtreecommitdiff
path: root/dev-cpp/websocketpp/websocketpp-0.8.2.ebuild
diff options
context:
space:
mode:
authorArthur Zamarin <arthurzam@gentoo.org>2025-05-30 14:41:48 +0300
committerArthur Zamarin <arthurzam@gentoo.org>2025-05-30 14:42:08 +0300
commitd81c936bdb6fe41ea7dcfe37f8fbf5c35795bacb (patch)
tree6f506bb0bfa3e0872541b774829b7f55df35bf0e /dev-cpp/websocketpp/websocketpp-0.8.2.ebuild
parent1e8345b10e57e012afc5c1b045f3b9a0987100db (diff)
downloadgentoo-d81c936bdb6fe41ea7dcfe37f8fbf5c35795bacb.tar.gz
gentoo-d81c936bdb6fe41ea7dcfe37f8fbf5c35795bacb.tar.bz2
gentoo-d81c936bdb6fe41ea7dcfe37f8fbf5c35795bacb.zip
dev-cpp/websocketpp: drop 0.8.2, EAPI=7--
Closes: https://bugs.gentoo.org/956387 Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'dev-cpp/websocketpp/websocketpp-0.8.2.ebuild')
-rw-r--r--dev-cpp/websocketpp/websocketpp-0.8.2.ebuild48
1 files changed, 0 insertions, 48 deletions
diff --git a/dev-cpp/websocketpp/websocketpp-0.8.2.ebuild b/dev-cpp/websocketpp/websocketpp-0.8.2.ebuild
deleted file mode 100644
index 1932daa43fd4..000000000000
--- a/dev-cpp/websocketpp/websocketpp-0.8.2.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake
-
-DESCRIPTION="C++/Boost Asio based websocket client/server library"
-HOMEPAGE="https://www.zaphoyd.com/websocketpp"
-SRC_URI="https://github.com/zaphoyd/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc x86"
-IUSE="examples test"
-RESTRICT="!test? ( test )"
-
-DEPEND="test? ( dev-libs/boost )"
-RDEPEND="dev-libs/boost"
-
-PATCHES=(
- "${FILESDIR}"/${PN}-0.7.0-cmake-install.patch
- # disable tests that are timing sensitive
- # https://bugzilla.redhat.com/show_bug.cgi?id=1461069
- "${FILESDIR}"/${PN}-0.8.1-disable-test_transport-test_transport_asio_timers.patch
- # https://github.com/zaphoyd/websocketpp/commit/36b73da8958927f975b3d01a062aa6c0e149d97f
- "${FILESDIR}"/${P}-fix-boost_find_component.patch
- # https://github.com/zaphoyd/websocketpp/commit/2c355d9ef0f3ed73fa96d0c6c31293086df36d74
- "${FILESDIR}"/${P}-fix-clang.patch
-)
-
-src_configure() {
- local mycmakeargs=(
- -DENABLE_CPP11=ON
- -DBUILD_TESTS="$(usex test)"
- )
-
- cmake_src_configure
-}
-
-src_install() {
- cmake_src_install
-
- if use examples; then
- dodoc -r examples
- docompress -x /usr/share/doc/${PF}/examples
- fi
-}