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 AA340138335 for ; Tue, 9 Oct 2018 08:55:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B5B5BE07EF; Tue, 9 Oct 2018 08:55:22 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 8E8F5E07EF for ; Tue, 9 Oct 2018 08:55:22 +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 ED172335CDD for ; Tue, 9 Oct 2018 08:55:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B92FB42A for ; Tue, 9 Oct 2018 08:55:18 +0000 (UTC) From: "Mikle Kolyada" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mikle Kolyada" Message-ID: <1539075303.8d545ad97bb8279370296ad73c90cc8b8b7130d9.zlogene@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-dialup/lrzsz/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-dialup/lrzsz/lrzsz-0.12.20-r3.ebuild X-VCS-Directories: net-dialup/lrzsz/ X-VCS-Committer: zlogene X-VCS-Committer-Name: Mikle Kolyada X-VCS-Revision: 8d545ad97bb8279370296ad73c90cc8b8b7130d9 X-VCS-Branch: master Date: Tue, 9 Oct 2018 08:55:18 +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: 89289d6b-0c57-4447-a8d7-eeebd8e3db9f X-Archives-Hash: 9b92865f7b808d2093297acf341b0493 commit: 8d545ad97bb8279370296ad73c90cc8b8b7130d9 Author: Mikle Kolyada gentoo org> AuthorDate: Tue Oct 9 08:55:03 2018 +0000 Commit: Mikle Kolyada gentoo org> CommitDate: Tue Oct 9 08:55:03 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d545ad9 net-dialup/lrzsz: Drop old Signed-off-by: Mikle Kolyada gentoo.org> Package-Manager: Portage-2.3.49, Repoman-2.3.11 net-dialup/lrzsz/lrzsz-0.12.20-r3.ebuild | 61 -------------------------------- 1 file changed, 61 deletions(-) diff --git a/net-dialup/lrzsz/lrzsz-0.12.20-r3.ebuild b/net-dialup/lrzsz/lrzsz-0.12.20-r3.ebuild deleted file mode 100644 index 8449f89be7a..00000000000 --- a/net-dialup/lrzsz/lrzsz-0.12.20-r3.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="2" - -inherit autotools flag-o-matic eutils toolchain-funcs - -DESCRIPTION="Communication package providing the X, Y, and ZMODEM file transfer protocols" -HOMEPAGE="https://www.ohse.de/uwe/software/lrzsz.html" -SRC_URI="https://www.ohse.de/uwe/releases/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux" -IUSE="nls" - -DEPEND="nls? ( virtual/libintl )" -RDEPEND="${DEPEND}" - -src_prepare() { - epatch "${FILESDIR}"/${PN}-autotools.patch - epatch "${FILESDIR}"/${PN}-implicit-decl.patch - epatch "${FILESDIR}"/${P}-automake-1.12.patch - epatch "${FILESDIR}"/${P}-automake-1.13.patch - - # automake is unhappy if this is missing - >> config.rpath - # This is too old. Remove it so automake puts in a newer copy. - rm -f missing - # Autoheader does not like seeing this file. - rm -f acconfig.h - - eautoreconf -} - -src_configure() { - tc-export CC - append-flags -Wstrict-prototypes - econf $(use_enable nls) || die "econf failed" -} - -src_test() { - #Don't use check target. - #See bug #120748 before changing this function. - make vcheck || die "tests failed" -} - -src_install() { - emake \ - DESTDIR="${D}" \ - install || die "make install failed" - - local x - for x in {r,s}{b,x,z} ; do - dosym l${x} /usr/bin/${x} - dosym l${x:0:1}z.1 /usr/share/man/man1/${x}.1 - [ "${x:1:1}" = "z" ] || dosym l${x:0:1}z.1 /usr/share/man/man1/l${x}.1 - done - - dodoc AUTHORS COMPATABILITY ChangeLog NEWS README* THANKS TODO -}