From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 50E881581B9 for ; Fri, 19 Sep 2025 22:31:21 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 3948A3420EA for ; Fri, 19 Sep 2025 22:31:21 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 265C6110573; Fri, 19 Sep 2025 22:31:20 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 1AA19110573 for ; Fri, 19 Sep 2025 22:31:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CB6123420E4 for ; Fri, 19 Sep 2025 22:31:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 341862749 for ; Fri, 19 Sep 2025 22:31:18 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1758320801.d1e477a6d85128c8d966d132b4ef07714503c3b6.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-p2p/dbhub/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-p2p/dbhub/dbhub-0.451-r3.ebuild X-VCS-Directories: net-p2p/dbhub/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: d1e477a6d85128c8d966d132b4ef07714503c3b6 X-VCS-Branch: master Date: Fri, 19 Sep 2025 22:31:18 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 791fea91-64be-4623-b614-d1f7969222d7 X-Archives-Hash: cfe67fec9d03bea0b37dc04b1ec82f9e commit: d1e477a6d85128c8d966d132b4ef07714503c3b6 Author: Sam James gentoo org> AuthorDate: Fri Sep 19 22:26:30 2025 +0000 Commit: Sam James gentoo org> CommitDate: Fri Sep 19 22:26:41 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1e477a6 net-p2p/dbhub: EAPI 8, use PERL_FEATURES Signed-off-by: Sam James gentoo.org> net-p2p/dbhub/dbhub-0.451-r3.ebuild | 63 +++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) diff --git a/net-p2p/dbhub/dbhub-0.451-r3.ebuild b/net-p2p/dbhub/dbhub-0.451-r3.ebuild new file mode 100644 index 000000000000..c9e4522d6b46 --- /dev/null +++ b/net-p2p/dbhub/dbhub-0.451-r3.ebuild @@ -0,0 +1,63 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +GENTOO_DEPEND_ON_PERL=no +inherit autotools flag-o-matic perl-module + +DESCRIPTION="Hub software for Direct Connect, fork of opendchub" +HOMEPAGE="https://sourceforge.net/projects/dbhub/" +SRC_URI="https://downloads.sourceforge.net/${PN}/${P}.tbz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +IUSE="debug nls perl switch-user ${GENTOO_PERL_USESTRING}" + +DEPEND=" + virtual/libcrypt:= + perl? ( + ${GENTOO_PERL_DEPSTRING} + dev-lang/perl:= + ) + switch-user? ( sys-libs/libcap ) +" +RDEPEND="${DEPEND}" + +PATCHES=( + "${FILESDIR}"/${PN}-gentoo.patch + "${FILESDIR}"/${PN}-no-dynaloader.patch + "${FILESDIR}"/${PN}-fix-buffer-overflows.patch +) + +src_prepare() { + default + eautoreconf +} + +src_configure() { + append-flags -fcommon + + # bashism in perl check + CONFIG_SHELL="${BROOT}"/bin/bash econf \ + $(use_enable debug) \ + $(use_enable nls) \ + $(use_enable perl) \ + $(use_enable switch-user switch_user) +} + +src_compile() { + # Avoid perl-module_src_compile (bug #963096) + default +} + +src_test() { + # Avoid perl-module_src_test (bug #963096) + default +} + +src_install() { + # Avoid perl-module_src_install (bug #963096) + default +}