diff options
Diffstat (limited to 'dev-libs/opendht')
-rw-r--r-- | dev-libs/opendht/Manifest | 1 | ||||
-rw-r--r-- | dev-libs/opendht/files/peerdiscoverytest-2.4.10.patch | 13 | ||||
-rw-r--r-- | dev-libs/opendht/metadata.xml | 28 | ||||
-rw-r--r-- | dev-libs/opendht/opendht-2.4.12.ebuild | 57 |
4 files changed, 0 insertions, 99 deletions
diff --git a/dev-libs/opendht/Manifest b/dev-libs/opendht/Manifest deleted file mode 100644 index 21cb30c..0000000 --- a/dev-libs/opendht/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST opendht-2.4.12.tar.bz2 428175 BLAKE2B 96acbdf8f6401232db597461e010823afe9e16570f07e4ef98c18c28af4eed01cfa40cf617633bd2376e526387d5cb7dfbe6c49013b46af910e3d9f6810e5766 SHA512 08ea926293b08ca3d5636b9e0784480cb0e0d434cbd3a698089dec775534ca3d7267b3f7215bb6b553f208702824d6bd53bef08cea1ad6d0159c083e5f29687f diff --git a/dev-libs/opendht/files/peerdiscoverytest-2.4.10.patch b/dev-libs/opendht/files/peerdiscoverytest-2.4.10.patch deleted file mode 100644 index a2e3761..0000000 --- a/dev-libs/opendht/files/peerdiscoverytest-2.4.10.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/tests/peerdiscoverytester.cpp b/tests/peerdiscoverytester.cpp -index a1dac8d0..85e315f7 100644 ---- a/tests/peerdiscoverytester.cpp -+++ b/tests/peerdiscoverytester.cpp -@@ -42,7 +42,7 @@ struct JamiNode { - MSGPACK_DEFINE(num, cha, str) - }; - --CPPUNIT_TEST_SUITE_REGISTRATION(PeerDiscoveryTester); -+// CPPUNIT_TEST_SUITE_REGISTRATION(PeerDiscoveryTester); - - void PeerDiscoveryTester::setUp(){} - diff --git a/dev-libs/opendht/metadata.xml b/dev-libs/opendht/metadata.xml deleted file mode 100644 index 9d4cd8b..0000000 --- a/dev-libs/opendht/metadata.xml +++ /dev/null @@ -1,28 +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> - OpenDHT provides an easy to use distributed in-memory data store. Every node in the network can read and write values to the store. Values are distributed over the network, with redundancy. - - Lightweight and scalable, designed for large networks and small devices - High resilience to network disruption - Public key cryptography layer providing optional data signature and encryption (using GnuTLS) - IPv4 and IPv6 support - Clean and powerful C++17 map API - Bindings for C, Rust and Python 3 - REST API with optional HTTP client+server with push notification support - </longdescription> - <upstream> - <changelog>https://github.com/savoirfairelinux/opendht/releases</changelog> - <doc>https://github.com/savoirfairelinux/opendht/wiki</doc> - <bugs-to>https://github.com/savoirfairelinux/opendht/issues</bugs-to> - </upstream> - <use> - <flag name="api">Enable DHT proxy server</flag> - <flag name="tools">Enable DHT tools</flag> - </use> -</pkgmetadata> diff --git a/dev-libs/opendht/opendht-2.4.12.ebuild b/dev-libs/opendht/opendht-2.4.12.ebuild deleted file mode 100644 index 07551e5..0000000 --- a/dev-libs/opendht/opendht-2.4.12.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 2022-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit cmake - -DESCRIPTION="C++17 Distributed Hash Table implementation " -HOMEPAGE="https://git.jami.net/savoirfairelinux/opendht" -SRC_URI="https://git.jami.net/savoirfairelinux/${PN}/-/archive/v${PV}.tar.bz2 -> ${P}.tar.bz2" -COMMIT="655aa074bf3ea7b7840dd924e963b34ca328b427" -S="${WORKDIR}/${PN}-v${PV}-${COMMIT}" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64" -IUSE="+api doc python systemd test +tools" -RESTRICT="!test? ( test )" - -RDEPEND=" - app-crypt/argon2 - dev-libs/msgpack - dev-libs/openssl:= - dev-libs/nettle - dev-libs/restinio - net-libs/gnutls - api? ( - dev-libs/jsoncpp - dev-libs/restinio - ) - doc? ( app-doc/doxygen ) - python? ( dev-python/cython ) - tools? ( sys-libs/readline ) -" -DEPEND="${RDEPEND}" - -# Disable peerdiscoverytest, since it fails upstream -# https://github.com/savoirfairelinux/opendht/issues/568 -PATCHES=( - "${FILESDIR}/peerdiscoverytest-2.4.10.patch" -) - -src_configure() { - local mycmakeargs=( - "-DOPENDHT_DOCUMENTATION=$(usex doc)" - "-DOPENDHT_HTTP=$(usex api)" - "-DOPENDHT_PUSH_NOTIFICATIONS=$(usex api)" - "-DOPENDHT_PROXY_SERVER=$(usex api)" - "-DOPENDHT_PROXY_SERVER_IDENTITY=$(usex api)" - "-DOPENDHT_PROXY_CLIENT=$(usex api)" - "-DOPENDHT_PYTHON=$(usex python)" - "-DOPENDHT_SYSTEMD=$(usex systemd)" - "-DOPENDHT_TESTS=$(usex test)" - "-DOPENDHT_TOOLS=$(usex tools)" - ) - cmake_src_configure -} |