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 807A91382C5 for ; Thu, 18 Jun 2020 09:52:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B382AE0932; Thu, 18 Jun 2020 09:52:44 +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 9AC74E0932 for ; Thu, 18 Jun 2020 09:52:44 +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 8471A34F359 for ; Thu, 18 Jun 2020 09:52:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BEDDF175 for ; Thu, 18 Jun 2020 09:52:38 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1592473627.8757226026ffb405434584f3785cdd1504b9d51a.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/getdate/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/getdate/getdate-1.2-r1.ebuild X-VCS-Directories: net-misc/getdate/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 8757226026ffb405434584f3785cdd1504b9d51a X-VCS-Branch: master Date: Thu, 18 Jun 2020 09:52:38 +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: f88d6903-328f-4053-a2a8-49333da4e4d9 X-Archives-Hash: cb74876babfcccff53f1eba0da9024f5 commit: 8757226026ffb405434584f3785cdd1504b9d51a Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu Jun 18 09:46:55 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu Jun 18 09:47:07 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87572260 net-misc/getdate: Drop 1.2-r1 Closes: https://bugs.gentoo.org/727738 Package-Manager: Portage-2.3.101, Repoman-2.3.22 Signed-off-by: Andreas Sturmlechner gentoo.org> net-misc/getdate/getdate-1.2-r1.ebuild | 36 ---------------------------------- 1 file changed, 36 deletions(-) diff --git a/net-misc/getdate/getdate-1.2-r1.ebuild b/net-misc/getdate/getdate-1.2-r1.ebuild deleted file mode 100644 index d05e5f442fe..00000000000 --- a/net-misc/getdate/getdate-1.2-r1.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 - -MY_PN="${PN}_rfc868" -MY_P="${MY_PN}-${PV}" - -inherit toolchain-funcs - -DESCRIPTION="Network Date/Time Query and Set Local Date/Time Utility" -HOMEPAGE="http://www.ibiblio.org/pub/Linux/system/network/misc/" -SRC_URI="http://www.ibiblio.org/pub/Linux/system/network/misc/${MY_P}.tar.gz" - -LICENSE="GPL-1+" -SLOT="0" -KEYWORDS="amd64 ~mips ppc x86" -IUSE="" - -S="${WORKDIR}/${MY_P}" - -src_prepare() { - sed -i -e "/errno.h/ a\#include " getdate.c || die - # Respect CFLAGS - sed -i -e "/CFLAGS/d" Makefile || die -} - -src_compile() { - emake CC="$(tc-getCC)" -} - -src_install() { - dobin getdate - doman getdate.8 - dodoc README getdate-cron -}