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 327811382C5 for ; Tue, 16 Mar 2021 19:57:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4BFBFE0843; Tue, 16 Mar 2021 19:57:09 +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 2B94EE0843 for ; Tue, 16 Mar 2021 19:57:09 +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 5BA8C340EBA for ; Tue, 16 Mar 2021 19:57:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 904215B6 for ; Tue, 16 Mar 2021 19:57:05 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1615924561.93de193cf76fc0b69705c1aceed22e5389b819e8.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/wput/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/wput/Manifest net-misc/wput/wput-0.6.1-r1.ebuild X-VCS-Directories: net-misc/wput/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 93de193cf76fc0b69705c1aceed22e5389b819e8 X-VCS-Branch: master Date: Tue, 16 Mar 2021 19:57:05 +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: cde05f57-a36e-4d7c-82e4-66a5707be48c X-Archives-Hash: b27d8e8c605bf2dc7c914f798c6dae28 commit: 93de193cf76fc0b69705c1aceed22e5389b819e8 Author: Sam James gentoo org> AuthorDate: Tue Mar 16 19:36:16 2021 +0000 Commit: Sam James gentoo org> CommitDate: Tue Mar 16 19:56:01 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93de193c net-misc/wput: drop 0.6.1-r1 Signed-off-by: Sam James gentoo.org> net-misc/wput/Manifest | 1 - net-misc/wput/wput-0.6.1-r1.ebuild | 34 ---------------------------------- 2 files changed, 35 deletions(-) diff --git a/net-misc/wput/Manifest b/net-misc/wput/Manifest index 5e669fa06ef..bd6176fde97 100644 --- a/net-misc/wput/Manifest +++ b/net-misc/wput/Manifest @@ -1,2 +1 @@ -DIST wput-0.6.1.tgz 312342 BLAKE2B 67053f71307e9fbb3f085e9347c7843f4bcaf951858164fa228f9cfd80898192efc344f1f9cbf65a3db286fae5b514da64ed3599627f264586c9242ac753f62b SHA512 f5eb5e343c77cec0f3370e8d73679e3c720a848a963c2cdc64e6c52f30b47d76e0de9ccde965da9af97d2e5f23f45dd894f26371f56ead498d28fadffe65fc4b DIST wput-0.6.2.tgz 368510 BLAKE2B bf59720e220d837354aff7d90bf06dcf54df4adf10c53ca844cb18dc6f327793ebd5dce7beecc76b43ddccfe273435a1eca918ab2272145dc8bf47293f601004 SHA512 e1d0fb8570cbda44c97215ee1a021a9867f2e91323b3d7f7df1d7fd68a1b2aba40a7f3068e5e85e8c736b1dba1fba62df375af99e3fb96cd0fd414b139c641bd diff --git a/net-misc/wput/wput-0.6.1-r1.ebuild b/net-misc/wput/wput-0.6.1-r1.ebuild deleted file mode 100644 index f45089a463e..00000000000 --- a/net-misc/wput/wput-0.6.1-r1.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -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" - -BDEPEND="nls? ( sys-devel/gettext )" -RDEPEND="ssl? ( net-libs/gnutls )" -DEPEND="${RDEPEND}" - -PATCHES=( - "${FILESDIR}/${PN}-0.6-gentoo.diff" - "${FILESDIR}/${PN}-0.6-respectldflags.patch" - "${FILESDIR}/${PN}-0.6.2-fno-common.patch" -) - -DOCS=( ChangeLog INSTALL TODO ) - -src_configure() { - local myconf="--enable-g-switch=no" - use debug && myconf="--enable-memdbg=yes" - econf \ - $(use_enable nls) \ - $(use_with ssl) \ - "${myconf}" -}