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 99A8B13997D for ; Wed, 13 Nov 2019 14:37:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D57C9E0825; Wed, 13 Nov 2019 14:37:16 +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 BE737E0825 for ; Wed, 13 Nov 2019 14:37:16 +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 E573634CD93 for ; Wed, 13 Nov 2019 14:37:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 69F2C8A2 for ; Wed, 13 Nov 2019 14:37:13 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1573655634.ccc411f9d35b4c0f15ecc3842cc7964e52dd6ddf.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/kstart/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/kstart/Manifest app-crypt/kstart/kstart-4.1.ebuild X-VCS-Directories: app-crypt/kstart/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: ccc411f9d35b4c0f15ecc3842cc7964e52dd6ddf X-VCS-Branch: master Date: Wed, 13 Nov 2019 14:37:13 +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: 52757615-be7b-489e-bdbe-ba329c061a17 X-Archives-Hash: 63c595881bad401f842dbcb8754bab3b commit: ccc411f9d35b4c0f15ecc3842cc7964e52dd6ddf Author: Aaron Bauman gentoo org> AuthorDate: Wed Nov 13 14:33:54 2019 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Wed Nov 13 14:33:54 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ccc411f9 app-crypt/kstart: drop old EAPI Signed-off-by: Aaron Bauman gentoo.org> app-crypt/kstart/Manifest | 1 - app-crypt/kstart/kstart-4.1.ebuild | 33 --------------------------------- 2 files changed, 34 deletions(-) diff --git a/app-crypt/kstart/Manifest b/app-crypt/kstart/Manifest index 4167d7ec5fa..f8f3f991b59 100644 --- a/app-crypt/kstart/Manifest +++ b/app-crypt/kstart/Manifest @@ -1,2 +1 @@ -DIST kstart-4.1.tar.gz 269215 BLAKE2B 0d979953206e1598c121e21b2c52a123a4b5d93872ce8292638e21c5d9a4c1be0345990f1a74fa60e9a5ce58d6f166cca5ae525f97c67f7a908d73e7657d6fe8 SHA512 74a8a3f2c8d2c95f166f5861fb05a2d659a31db3165e27e81e5cf216bde44809d937ebc00995f89fa3b9df68609e3081303eb30742f5c4d90151b1410f0bd3cc DIST kstart-4.2.tar.gz 296651 BLAKE2B 127bf28ef538681d188ae79ed67cedaa7d9022c1fe6741b3486ce7d5901c4a77d0aec7d00164240a79ffc70b56dd7fdeaf42e76dd2b02effe79bcad41ad8e271 SHA512 7ce9c1f964c0d469b4b8a5de88ae83186e99116959941c4e7f69c59165d0c22aac432ac26dd5fe54f7c2f725048bb55b787107aea8408e2fd6c9ad02dcb31552 diff --git a/app-crypt/kstart/kstart-4.1.ebuild b/app-crypt/kstart/kstart-4.1.ebuild deleted file mode 100644 index c80974b18ab..00000000000 --- a/app-crypt/kstart/kstart-4.1.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 - -inherit eutils - -DESCRIPTION="Modified versions of kinit for refreshing kerberos tickets -automatically" -HOMEPAGE="https://www.eyrie.org/~eagle/software/kstart/" -SRC_URI="https://archives.eyrie.org/software/kerberos/${P}.tar.gz" - -LICENSE="|| ( MIT Stanford ISC )" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="afs" - -DEPEND="virtual/krb5 - afs? ( net-fs/openafs )" -RDEPEND="$DEPEND" - -src_configure() { - econf \ - --enable-reduced-depends \ - "$(use_with afs)" \ - "$(use_enable afs setpag)" -} - -src_install() { - emake DESTDIR="${D}" install - doman k5start.1 krenew.1 - dodoc README NEWS TODO examples/* -}