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 26F5D1382C5 for ; Mon, 12 Apr 2021 08:26:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 692BBE07F1; Mon, 12 Apr 2021 08:26:16 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 544E8E07F1 for ; Mon, 12 Apr 2021 08:26:16 +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 19501335D28 for ; Mon, 12 Apr 2021 08:26:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 992804D2 for ; Mon, 12 Apr 2021 08:26:13 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1618215970.f13c6ae30105655f6687eefd9568e598b88ea01f.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/fetch/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-client/fetch/fetch-1.0-r4.ebuild X-VCS-Directories: www-client/fetch/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: f13c6ae30105655f6687eefd9568e598b88ea01f X-VCS-Branch: master Date: Mon, 12 Apr 2021 08:26:13 +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: ab755172-b6ee-49bb-bcac-9e44ea270bf4 X-Archives-Hash: cee4d1346370dd4ee4591179dfae4b8a commit: f13c6ae30105655f6687eefd9568e598b88ea01f Author: Patrice Clement gentoo org> AuthorDate: Mon Apr 12 08:23:59 2021 +0000 Commit: Patrice Clement gentoo org> CommitDate: Mon Apr 12 08:26:10 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f13c6ae3 www-client/fetch: add blocker. * add blocker against dev-perl/BTLib. * EAPI 7 bump. Closes: https://bugs.gentoo.org/756865 Signed-off-by: Patrice Clement gentoo.org> www-client/fetch/fetch-1.0-r4.ebuild | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/www-client/fetch/fetch-1.0-r4.ebuild b/www-client/fetch/fetch-1.0-r4.ebuild new file mode 100644 index 00000000000..cb11f73398d --- /dev/null +++ b/www-client/fetch/fetch-1.0-r4.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="HTTP download tool built atop the HTTP fetcher library" +HOMEPAGE="https://sourceforge.net/projects/fetch/" +SRC_URI="mirror://sourceforge/fetch/${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + dev-libs/http-fetcher + !dev-perl/BTLib" + +DEPEND="${RDEPEND}" + +HTML_DOCS=( docs/fetch.html ) + +src_prepare() { + default + sed -i -e "/^ld_rpath/d" configure || die "sed failed" +}