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 83A0C1382C5 for ; Sun, 20 May 2018 12:45:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8B477E0A5B; Sun, 20 May 2018 12:45:38 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 5E8B8E0A5B for ; Sun, 20 May 2018 12:45:38 +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 D09B2335CC0 for ; Sun, 20 May 2018 12:45:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 04BA52A3 for ; Sun, 20 May 2018 12:45:35 +0000 (UTC) From: "Johannes Huber" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Johannes Huber" Message-ID: <1526820330.0ac2e8dcc32a7774c2698b588d9ab4fd6699535c.johu@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-ftp/oftpd/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-ftp/oftpd/oftpd-0.3.7-r8.ebuild X-VCS-Directories: net-ftp/oftpd/ X-VCS-Committer: johu X-VCS-Committer-Name: Johannes Huber X-VCS-Revision: 0ac2e8dcc32a7774c2698b588d9ab4fd6699535c X-VCS-Branch: master Date: Sun, 20 May 2018 12:45:35 +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: 0cbd014f-2bf1-4313-862f-57a9debf975f X-Archives-Hash: b1c8033963af98a01327ce04250e2122 commit: 0ac2e8dcc32a7774c2698b588d9ab4fd6699535c Author: Johannes Huber gentoo org> AuthorDate: Sun May 20 12:43:23 2018 +0000 Commit: Johannes Huber gentoo org> CommitDate: Sun May 20 12:45:30 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ac2e8dc net-ftp/oftpd: Remove 0.3.7-r8 Uses deprecated EAPI 4 and overshadowed by 0.3.7-r10. Package-Manager: Portage-2.3.38, Repoman-2.3.9 net-ftp/oftpd/oftpd-0.3.7-r8.ebuild | 48 ------------------------------------- 1 file changed, 48 deletions(-) diff --git a/net-ftp/oftpd/oftpd-0.3.7-r8.ebuild b/net-ftp/oftpd/oftpd-0.3.7-r8.ebuild deleted file mode 100644 index 431e783eb9b..00000000000 --- a/net-ftp/oftpd/oftpd-0.3.7-r8.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 - -inherit autotools eutils - -DESCRIPTION="Secure, small, anonymous only ftpd" -HOMEPAGE="http://www.time-travellers.org/oftpd" -SRC_URI="http://www.time-travellers.org/oftpd/${P}.tar.gz - ftp://ftp.deepspace6.net/pub/ds6/sources/${PN}/${PN}-0.3.6-ipv6rel2.patch.gz" - -LICENSE="BSD-2" -SLOT="0" -KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~sh ~sparc ~x86" -IUSE="ipv6" - -DEPEND="net-ftp/ftpbase" -RDEPEND="${DEPEND}" - -src_prepare() { - cd "${WORKDIR}" || die - epatch "${FILESDIR}"/oftpd-0.3.7-ipv6rel2-0.3.6-to-0.3.7.patch - - cd "${S}" || die - epatch "${WORKDIR}"/${PN}-0.3.6-ipv6rel2.patch - - # Don't crash when using an unsupported address family, #159178. - # updated in bug #157005 - epatch "${FILESDIR}"/${P}-family-1.patch - - # htons patch #371963 - epatch "${FILESDIR}"/${P}-htons.patch - - epatch "${FILESDIR}"/${P}-unistd.patch - eautoreconf -} - -src_configure() { - econf --bindir=/usr/sbin $(use_enable ipv6) -} - -src_install() { - default - keepdir /home/ftp - newinitd "${FILESDIR}"/init.d.oftpd-r7 oftpd - newconfd "${FILESDIR}"/conf.d.oftpd-r7 oftpd -}