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 C0DEC138359 for ; Fri, 3 Jul 2020 15:10:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 84510E0848; Fri, 3 Jul 2020 15:10:38 +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 65A8EE0843 for ; Fri, 3 Jul 2020 15:10:38 +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 6A08A34F25D for ; Fri, 3 Jul 2020 15:10:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6A22D2D0 for ; Fri, 3 Jul 2020 15:10:17 +0000 (UTC) From: "Kent Fredric" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Kent Fredric" Message-ID: <1593788401.de45065b5231d9eee590e90e41e35ab2cb0c709b.kentnl@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/BerkeleyDB/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-perl/BerkeleyDB/BerkeleyDB-0.630.0-r1.ebuild X-VCS-Directories: dev-perl/BerkeleyDB/ X-VCS-Committer: kentnl X-VCS-Committer-Name: Kent Fredric X-VCS-Revision: de45065b5231d9eee590e90e41e35ab2cb0c709b X-VCS-Branch: master Date: Fri, 3 Jul 2020 15:10:17 +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: 632f0c06-d41f-4caa-bf9e-d77392041368 X-Archives-Hash: b11a87d4b5758741a0c62ea8357759b4 commit: de45065b5231d9eee590e90e41e35ab2cb0c709b Author: Kent Fredric gentoo org> AuthorDate: Fri Jul 3 14:11:06 2020 +0000 Commit: Kent Fredric gentoo org> CommitDate: Fri Jul 3 15:00:01 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de45065b dev-perl/BerkeleyDB: -r bump for CFLAGS love + fixes - Remove unused 'e-utils' eclass - Ensure sys-libs/db mentioned in DEPEND - Ensure CFLAGS passed to make/compiler - Appease BAS-IMP-ebuild_multiple_deps_per_line Package-Manager: Portage-2.3.100, Repoman-2.3.22 Signed-off-by: Kent Fredric gentoo.org> dev-perl/BerkeleyDB/BerkeleyDB-0.630.0-r1.ebuild | 64 ++++++++++++++++++++++++ 1 file changed, 64 insertions(+) diff --git a/dev-perl/BerkeleyDB/BerkeleyDB-0.630.0-r1.ebuild b/dev-perl/BerkeleyDB/BerkeleyDB-0.630.0-r1.ebuild new file mode 100644 index 00000000000..848dcc667f7 --- /dev/null +++ b/dev-perl/BerkeleyDB/BerkeleyDB-0.630.0-r1.ebuild @@ -0,0 +1,64 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DIST_AUTHOR=PMQS +DIST_VERSION=0.63 +inherit perl-module db-use + +DESCRIPTION="This module provides Berkeley DB interface for Perl" + +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" + +# Install DB_File if you want older support. BerkleyDB no longer +# supports less than 2.0. + +RDEPEND=" + >=sys-libs/db-2.0:= + "${S}"/config.in || die "Can't write config.in" + + perl-module_src_prepare +} +src_compile() { + mymake=( + "OPTIMIZE=${CFLAGS}" + ) + perl-module_src_compile +}