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 7374F138335 for ; Sat, 5 Oct 2019 08:12:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9DAA8E082D; Sat, 5 Oct 2019 08:12:57 +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 6C4EAE082D for ; Sat, 5 Oct 2019 08:12:57 +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 87B0E34B98A for ; Sat, 5 Oct 2019 08:12:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EF3C4829 for ; Sat, 5 Oct 2019 08:12:53 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1570262024.73814f12ab2684af0c86b857d1f8c8b7e31f65e0.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/rdate/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/rdate/rdate-1.4-r3.ebuild X-VCS-Directories: net-misc/rdate/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 73814f12ab2684af0c86b857d1f8c8b7e31f65e0 X-VCS-Branch: master Date: Sat, 5 Oct 2019 08:12:53 +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: 06a09795-8812-4a98-a9d5-ce3b40aaae78 X-Archives-Hash: 0163713ce3cc9e4f90c6ebd54040dadd commit: 73814f12ab2684af0c86b857d1f8c8b7e31f65e0 Author: Michał Górny gentoo org> AuthorDate: Sat Oct 5 07:53:44 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Oct 5 07:53:44 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73814f12 net-misc/rdate: Drop old (EAPI=0) Signed-off-by: Michał Górny gentoo.org> net-misc/rdate/rdate-1.4-r3.ebuild | 28 ---------------------------- 1 file changed, 28 deletions(-) diff --git a/net-misc/rdate/rdate-1.4-r3.ebuild b/net-misc/rdate/rdate-1.4-r3.ebuild deleted file mode 100644 index b773a09b8bd..00000000000 --- a/net-misc/rdate/rdate-1.4-r3.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -inherit flag-o-matic toolchain-funcs - -DESCRIPTION="use TCP or UDP to retrieve the current time of another machine" -HOMEPAGE="http://www.apps.ietf.org/rfc/rfc868.html" -SRC_URI="ftp://people.redhat.com/sopwith/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc x86" -IUSE="ipv6" - -DEPEND="" - -src_compile() { - use ipv6 && append-cppflags "-DINET6" - emake RCFLAGS="${CFLAGS} ${CPPFLAGS} ${LDFLAGS}" CC="$(tc-getCC)" || die -} - -src_install(){ - emake -j1 prefix="${D}/usr" install || die "make install failed" - newinitd "${FILESDIR}"/rdate-initd-1.4-r3 rdate - newconfd "${FILESDIR}"/rdate-confd rdate -}