aboutsummaryrefslogtreecommitdiff
path: root/dev-libs/restinio
diff options
context:
space:
mode:
Diffstat (limited to 'dev-libs/restinio')
-rw-r--r--dev-libs/restinio/Manifest1
-rw-r--r--dev-libs/restinio/metadata.xml15
-rw-r--r--dev-libs/restinio/restinio-0.6.17.ebuild51
3 files changed, 0 insertions, 67 deletions
diff --git a/dev-libs/restinio/Manifest b/dev-libs/restinio/Manifest
deleted file mode 100644
index 9199c79..0000000
--- a/dev-libs/restinio/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST restinio-0.6.17.gh.tar.gz 670089 BLAKE2B e80f83ac4b2116f2d0acaa0022bc34aa7f772cd1f96b296229b075e1eab13c388bdeb50eb56f8e6d197a709685d2609813dc0b44bb9c00b2396c267b8aa38ebb SHA512 a324246dac1a708ad94ca9beb5d34c761e7393463b6ca5ec7606b82a3b6fe0e79ebf401dfadb9458d6a8cb5c3c75d22f10ff993ae9823a5a1da2d87b4a31483e
diff --git a/dev-libs/restinio/metadata.xml b/dev-libs/restinio/metadata.xml
deleted file mode 100644
index 625fa20..0000000
--- a/dev-libs/restinio/metadata.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>julien@jroy.ca</email>
- <name>Julien Roy</name>
- </maintainer>
- <longdescription>RESTinio is a header-only C++14 library that gives you an embedded HTTP/Websocket server. It is based on standalone version of ASIO and targeted primarily for asynchronous processing of HTTP-requests. </longdescription>
- <upstream>
- <changelog>https://github.com/Stiffstream/restinio/releases</changelog>
- <doc>https://stiffstream.com/en/docs/restinio/0.6/</doc>
- <bugs-to>https://github.com/Stiffstream/restinio/issues</bugs-to>
- <remote-id type="github">Stiffstream/restinio</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-libs/restinio/restinio-0.6.17.ebuild b/dev-libs/restinio/restinio-0.6.17.ebuild
deleted file mode 100644
index 93a0286..0000000
--- a/dev-libs/restinio/restinio-0.6.17.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 2022-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-DESCRIPTION="Asynchronous HTTP/WebSocket server C++14 library"
-HOMEPAGE="https://github.com/Stiffstream/restinio"
-SRC_URI="https://github.com/Stiffstream/${PN}/archive/v.${PV}.tar.gz -> ${P}.gh.tar.gz"
-S="${WORKDIR}/${PN}-v.${PV}/dev"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-# RESTinio is not compatible with catch2-v3
-# https://github.com/Stiffstream/restinio/issues/158
-RDEPEND="
- dev-cpp/asio
- <=dev-cpp/catch-3
- dev-libs/boost
- dev-libs/libfmt
- dev-libs/libpcre
- dev-libs/libpcre2
- dev-libs/openssl
- net-libs/http-parser
- sys-libs/zlib
-"
-DEPEND="${RDEPEND}"
-
-src_configure() {
- local mycmakeargs=(
- "-DRESTINIO_BENCH=OFF"
- "-DRESTINIO_FIND_DEPS=ON"
- "-DRESTINIO_SAMPLE=OFF"
- "-DRESTINIO_TEST=$(usex test ON OFF)"
- "-DRESTINIO_USE_EXTERNAL_HTTP_PARSER=ON"
- "-DRESTINIO_USE_EXTERNAL_SOBJECTIZER=ON"
- )
- cmake_src_configure
-}
-
-src_test() {
- # Some tests open a socket on port 8085
- # Running these tests in parallel will cause
- # failures since the port is already in use
- cmake_src_test -j 1
-}