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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CBF0A1382C5 for ; Tue, 22 Jun 2021 22:38:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D820AE0848; Tue, 22 Jun 2021 22:38:14 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B8290E0848 for ; Tue, 22 Jun 2021 22:38:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EBF3533BED9 for ; Tue, 22 Jun 2021 22:38:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 563877A1 for ; Tue, 22 Jun 2021 22:38:11 +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: <1624400954.60ea14306ece38a147a7037e47f653b218cf967b.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/librep/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/librep/librep-0.92.7-r1.ebuild dev-libs/librep/librep-0.92.7.ebuild X-VCS-Directories: dev-libs/librep/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 60ea14306ece38a147a7037e47f653b218cf967b X-VCS-Branch: master Date: Tue, 22 Jun 2021 22:38:11 +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: 396119a5-38f0-41c4-bed7-b6435898d6f1 X-Archives-Hash: 9856511117df358496911c91868a22b0 commit: 60ea14306ece38a147a7037e47f653b218cf967b Author: Sam James gentoo org> AuthorDate: Tue Jun 22 21:57:58 2021 +0000 Commit: Sam James gentoo org> CommitDate: Tue Jun 22 22:29:14 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60ea1430 dev-libs/librep: add virtual/libcrypt dependency Needed for upcoming libcrypt migration. Acked-by: David Seifert gentoo.org> Reported-by: Ulrich Müller gentoo.org> Signed-off-by: Sam James gentoo.org> dev-libs/librep/{librep-0.92.7.ebuild => librep-0.92.7-r1.ebuild} | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/dev-libs/librep/librep-0.92.7.ebuild b/dev-libs/librep/librep-0.92.7-r1.ebuild similarity index 95% rename from dev-libs/librep/librep-0.92.7.ebuild rename to dev-libs/librep/librep-0.92.7-r1.ebuild index b5b9249eb9f..fd71bdbfeaa 100644 --- a/dev-libs/librep/librep-0.92.7.ebuild +++ b/dev-libs/librep/librep-0.92.7-r1.ebuild @@ -2,6 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 + inherit autotools elisp-common flag-o-matic DESCRIPTION="Shared library implementing a Lisp dialect" @@ -14,13 +15,14 @@ KEYWORDS="~alpha amd64 ~ia64 ppc ppc64 sparc x86" IUSE="emacs gmp readline" RDEPEND=" - >=sys-libs/gdbm-1.8.0 + >=sys-libs/gdbm-1.8.0:= + virtual/libcrypt:= emacs? ( >=app-editors/emacs-23.1:* ) gmp? ( dev-libs/gmp:= ) readline? ( sys-libs/readline:0= ) " +DEPEND="${RDEPEND}" BDEPEND=" - ${RDEPEND} sys-apps/texinfo "