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 819D61382C5 for ; Fri, 16 Apr 2021 17:00:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CE19AE0821; Fri, 16 Apr 2021 17:00:24 +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 B5A6FE0821 for ; Fri, 16 Apr 2021 17:00:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 3DD7E340861 for ; Fri, 16 Apr 2021 17:00:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B4B5F66A for ; Fri, 16 Apr 2021 17:00:21 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1618592349.04654bed997f32eb0482b64bc47a3655d79e7ec1.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/cadaver/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/cadaver/cadaver-0.23.3.ebuild X-VCS-Directories: net-misc/cadaver/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 04654bed997f32eb0482b64bc47a3655d79e7ec1 X-VCS-Branch: master Date: Fri, 16 Apr 2021 17:00:21 +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: 2c83aa2b-7761-40c6-9b0f-af0cfdd588b3 X-Archives-Hash: 6b39dc471552948eea9fa91a57723b74 commit: 04654bed997f32eb0482b64bc47a3655d79e7ec1 Author: Arfrever Frehtes Taifersar Arahesis Apache Org> AuthorDate: Fri Apr 16 02:00:00 2021 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Fri Apr 16 16:59:09 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04654bed net-misc/cadaver: Use EAPI="7". Signed-off-by: Arfrever Frehtes Taifersar Arahesis Apache.Org> Signed-off-by: Mike Gilbert gentoo.org> net-misc/cadaver/cadaver-0.23.3.ebuild | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/net-misc/cadaver/cadaver-0.23.3.ebuild b/net-misc/cadaver/cadaver-0.23.3.ebuild index a9288a4027b..3b5240b2e50 100644 --- a/net-misc/cadaver/cadaver-0.23.3.ebuild +++ b/net-misc/cadaver/cadaver-0.23.3.ebuild @@ -1,12 +1,12 @@ # Copyright 2003-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="6" +EAPI="7" inherit autotools DESCRIPTION="Command-line WebDAV client" -HOMEPAGE="http://webdav.org/cadaver/" +HOMEPAGE="http://webdav.org/cadaver/ https://github.com/notroj/cadaver" SRC_URI="http://webdav.org/cadaver/${P}.tar.gz" LICENSE="GPL-2" @@ -14,9 +14,9 @@ SLOT="0" KEYWORDS="~amd64 ~ppc ppc64 ~sparc x86" IUSE="nls" -RDEPEND=">=net-libs/neon-0.27.0" -DEPEND="${RDEPEND} - sys-devel/gettext" +BDEPEND="sys-devel/gettext" +DEPEND=">=net-libs/neon-0.27.0" +RDEPEND="${DEPEND}" DOCS=(BUGS ChangeLog FAQ NEWS README THANKS TODO) @@ -31,7 +31,7 @@ src_prepare() { -e "/AC_CONFIG_FILES/s: lib/neon/Makefile lib/intl/Makefile::" \ -i configure.ac || die "sed configure.ac failed" sed -e "s:^\(SUBDIRS.*=\).*:\1:" -i Makefile.in || die "sed Makefile.in failed" - cp "${EPREFIX}/usr/share/gettext/po/Makefile.in.in" po || die "cp failed" + cp "${BROOT}/usr/share/gettext/po/Makefile.in.in" po || die "cp failed" config_rpath_update . AT_M4DIR="m4 m4/neon" eautoreconf