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 99A28139694 for ; Sun, 5 Mar 2017 15:11:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8859A21C100; Sun, 5 Mar 2017 15:11:43 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 66CC221C100 for ; Sun, 5 Mar 2017 15:11:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 741A43417FE for ; Sun, 5 Mar 2017 15:11:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B99A45D58 for ; Sun, 5 Mar 2017 15:11:40 +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: <1488726699.cc0e99e02fc49a8ac2f48f5f04e7ff865d2de7ec.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-r1.ebuild X-VCS-Directories: www-client/fetch/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: cc0e99e02fc49a8ac2f48f5f04e7ff865d2de7ec X-VCS-Branch: master Date: Sun, 5 Mar 2017 15:11:40 +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-Archives-Salt: 5cfd8adb-a9f2-42be-814a-726f24bc6d49 X-Archives-Hash: 3f48130279a30b3f29d377da4fa1bbe5 commit: cc0e99e02fc49a8ac2f48f5f04e7ff865d2de7ec Author: Patrice Clement gentoo org> AuthorDate: Sun Mar 5 15:11:23 2017 +0000 Commit: Patrice Clement gentoo org> CommitDate: Sun Mar 5 15:11:39 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc0e99e0 www-client/fetch: clean up old. Package-Manager: Portage-2.3.3, Repoman-2.3.1 www-client/fetch/fetch-1.0-r1.ebuild | 25 ------------------------- 1 file changed, 25 deletions(-) diff --git a/www-client/fetch/fetch-1.0-r1.ebuild b/www-client/fetch/fetch-1.0-r1.ebuild deleted file mode 100644 index 831e5f4bf03..00000000000 --- a/www-client/fetch/fetch-1.0-r1.ebuild +++ /dev/null @@ -1,25 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -DESCRIPTION="Fetch is a simple, fast, and flexible HTTP download tool built on 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" -IUSE="" - -DEPEND=">=dev-libs/http-fetcher-1.0.1" -RDEPEND="${DEPEND}" - -src_unpack(){ - unpack ${A} - cd "${S}" - sed -i -e "/^ld_rpath/d" configure || die "sed failed" -} - -src_install() { - emake DESTDIR="${D}" install || die - dodoc README INSTALL - dohtml docs/*.html -}