From 6fc9651c2111e8b048fe45778ebe83b57b04c7a4 Mon Sep 17 00:00:00 2001 From: Julien Roy Date: Wed, 3 Jan 2024 18:50:55 -0500 Subject: dev-libs:/* treeclean --- dev-libs/opendht/Manifest | 1 - .../opendht/files/peerdiscoverytest-2.4.10.patch | 13 ----- dev-libs/opendht/metadata.xml | 28 ----------- dev-libs/opendht/opendht-2.4.12.ebuild | 57 ---------------------- 4 files changed, 99 deletions(-) delete mode 100644 dev-libs/opendht/Manifest delete mode 100644 dev-libs/opendht/files/peerdiscoverytest-2.4.10.patch delete mode 100644 dev-libs/opendht/metadata.xml delete mode 100644 dev-libs/opendht/opendht-2.4.12.ebuild (limited to 'dev-libs/opendht') 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 @@ - - - - - julien@jroy.ca - Julien Roy - - - 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 - - - https://github.com/savoirfairelinux/opendht/releases - https://github.com/savoirfairelinux/opendht/wiki - https://github.com/savoirfairelinux/opendht/issues - - - Enable DHT proxy server - Enable DHT tools - - 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 -} -- cgit v1.2.3