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 A27B51382C5 for ; Tue, 17 Apr 2018 20:27:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E1839E0A90; Tue, 17 Apr 2018 20:27:53 +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-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BB3C2E0A90 for ; Tue, 17 Apr 2018 20:27:53 +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 8138A335C36 for ; Tue, 17 Apr 2018 20:27:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EB83128B for ; Tue, 17 Apr 2018 20:27:50 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1523996787.0bae59e073320e1e99e8378d87a3cc002fd0229f.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/wput/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/wput/wput-0.6.1.ebuild X-VCS-Directories: net-misc/wput/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 0bae59e073320e1e99e8378d87a3cc002fd0229f X-VCS-Branch: master Date: Tue, 17 Apr 2018 20:27:50 +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: 1060aef0-00b3-4509-a785-293a66d95a42 X-Archives-Hash: 95a38b6c4bca57d4124606f41f3dcbc5 commit: 0bae59e073320e1e99e8378d87a3cc002fd0229f Author: Harri Nieminen gmail com> AuthorDate: Tue Apr 17 08:36:33 2018 +0000 Commit: David Seifert gentoo org> CommitDate: Tue Apr 17 20:26:27 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0bae59e0 net-misc/wput: Clean up old Package-Manager: Portage-2.3.29, Repoman-2.3.9 net-misc/wput/wput-0.6.1.ebuild | 39 --------------------------------------- 1 file changed, 39 deletions(-) diff --git a/net-misc/wput/wput-0.6.1.ebuild b/net-misc/wput/wput-0.6.1.ebuild deleted file mode 100644 index 1d495ab77a2..00000000000 --- a/net-misc/wput/wput-0.6.1.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -inherit eutils - -DESCRIPTION="Tiny program like wget, to upload files/whole directories via FTP" -HOMEPAGE="http://wput.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tgz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc ~sparc x86" -IUSE="debug nls ssl" - -RDEPEND="ssl? ( net-libs/gnutls )" -DEPEND="${RDEPEND} - nls? ( sys-devel/gettext )" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}/${PN}-0.6-gentoo.diff" - # Fix bug 126828 - epatch "${FILESDIR}/wput-0.6-respectldflags.patch" -} - -src_compile() { - local myconf - use debug && myconf="--enable-memdbg=yes" || myconf="--enable-g-switch=no" - econf ${myconf} \ - $(use_enable nls) \ - $(use_with ssl) || die "econf failed" - emake || die "emake failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "make install failed" - dodoc ChangeLog INSTALL TODO -}