From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4C953158086 for ; Sat, 6 Nov 2021 20:47:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7D1522BC07D; Sat, 6 Nov 2021 20:46:59 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 661AC2BC07D for ; Sat, 6 Nov 2021 20:46:59 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8ED2C342E5B for ; Sat, 6 Nov 2021 20:46:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EFAC9D0 for ; Sat, 6 Nov 2021 20:46:56 +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: <1636231592.1aceb8a869524d1d4519b8119099dd9e93edc5f3.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/tdb/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/tdb/tdb-1.4.5.ebuild X-VCS-Directories: sys-libs/tdb/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 1aceb8a869524d1d4519b8119099dd9e93edc5f3 X-VCS-Branch: master Date: Sat, 6 Nov 2021 20:46:56 +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: f1bd64ac-25fc-434f-a255-1f4b52235016 X-Archives-Hash: 6318b409d46b3f8dc66f176e2363b78e commit: 1aceb8a869524d1d4519b8119099dd9e93edc5f3 Author: Sam James gentoo org> AuthorDate: Sat Nov 6 20:46:32 2021 +0000 Commit: Sam James gentoo org> CommitDate: Sat Nov 6 20:46:32 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1aceb8a8 sys-libs/tdb: needs crypt.h so depend on libcrypt Doesn't seem to link against it though, so DEPEND. Closes: https://bugs.gentoo.org/822159 Signed-off-by: Sam James gentoo.org> sys-libs/tdb/tdb-1.4.5.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sys-libs/tdb/tdb-1.4.5.ebuild b/sys-libs/tdb/tdb-1.4.5.ebuild index b0e4e366e9e..2e3e41f8dba 100644 --- a/sys-libs/tdb/tdb-1.4.5.ebuild +++ b/sys-libs/tdb/tdb-1.4.5.ebuild @@ -21,7 +21,8 @@ RESTRICT="test" RDEPEND=" !elibc_FreeBSD? ( dev-libs/libbsd[${MULTILIB_USEDEP}] ) python? ( ${PYTHON_DEPS} )" -DEPEND="${RDEPEND}" +DEPEND="${RDEPEND} + virtual/libcrypt" BDEPEND="${PYTHON_DEPS} app-text/docbook-xml-dtd:4.2"