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 A53A4139360 for ; Tue, 3 Aug 2021 13:18:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 98457E0964; Tue, 3 Aug 2021 13:18:43 +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 7ADBCE0964 for ; Tue, 3 Aug 2021 13:18:43 +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 F2448343D43 for ; Tue, 3 Aug 2021 13:18:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8E0D9857 for ; Tue, 3 Aug 2021 13:18:40 +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: <1627995617.f47fdb37d2256938bed2148ba05ec7f82d827ca8.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/remind/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/remind/Manifest app-misc/remind/remind-03.01.15.ebuild X-VCS-Directories: app-misc/remind/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: f47fdb37d2256938bed2148ba05ec7f82d827ca8 X-VCS-Branch: master Date: Tue, 3 Aug 2021 13:18:40 +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: db3dcd75-7da3-4ed7-9ff0-2156d736b878 X-Archives-Hash: 68e9d3a31e746ee9a0ef4658595052e8 commit: f47fdb37d2256938bed2148ba05ec7f82d827ca8 Author: Andreas Sturmlechner gentoo org> AuthorDate: Tue Aug 3 12:56:51 2021 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Tue Aug 3 13:00:17 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f47fdb37 app-misc/remind: Drop 03.01.15, EAPI5-- Closes: https://bugs.gentoo.org/784200 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Andreas Sturmlechner gentoo.org> app-misc/remind/Manifest | 1 - app-misc/remind/remind-03.01.15.ebuild | 43 ---------------------------------- 2 files changed, 44 deletions(-) diff --git a/app-misc/remind/Manifest b/app-misc/remind/Manifest index 89077118e52..122e6dc0db6 100644 --- a/app-misc/remind/Manifest +++ b/app-misc/remind/Manifest @@ -1,2 +1 @@ -DIST remind-03.01.15.tar.gz 363101 BLAKE2B a5e27b83c20428991982c3cae22b32be6cc054bfd51a868ee3515f5ec4a37aa24f8ec476f566860ca0fbb6f29e7c9f3e6ed023714e52091ebca103162936877f SHA512 335f3ca88237f1ae53768b9ecdeb03f0bb1e706a8afd3ba36121ec76048a08fbc0d5ec72b05e552394b4cf2131be335c49533e1212b7e713ef16002a0621fc84 DIST remind-03.03.05.tar.gz 402481 BLAKE2B 8fabc3269a06aaf3502c2245653442ddf6c101c3f62718769418c28850da467d210f381ef3452e95b6dbc921fe06979b4c38be8b7389a9defd76865da66080f3 SHA512 56b37dfc50a6c6a8a284691d7f1c39d542b7309ec12a029c65b68f7921cd43521d3cef9fc8d21f4a9f4a7609b0e00013e7f2793b529f39f80d63ae1fe5194fd4 diff --git a/app-misc/remind/remind-03.01.15.ebuild b/app-misc/remind/remind-03.01.15.ebuild deleted file mode 100644 index e15d88ebfec..00000000000 --- a/app-misc/remind/remind-03.01.15.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -DESCRIPTION="Ridiculously functional reminder program" -HOMEPAGE="http://www.roaringpenguin.com/products/remind" -SRC_URI="http://www.roaringpenguin.com/files/download/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc x86" -IUSE="tk" - -RDEPEND="tk? ( dev-lang/tk dev-tcltk/tcllib )" - -DOCS="docs/WHATSNEW examples/defs.rem www/README.*" - -src_prepare() { - sed -i 's:$(MAKE) install:&-nostripped:' "${S}"/Makefile || die -} - -src_test() { - if [[ ${EUID} -eq 0 ]] ; then - ewarn "Testing fails if run as root. Skipping tests." - else - emake test - fi -} - -src_install() { - default - dobin www/rem2html - - if ! use tk ; then - rm "${D}"/usr/bin/tkremind "${D}"/usr/share/man/man1/tkremind* \ - "${D}"/usr/bin/cm2rem* "${D}"/usr/share/man/man1/cm2rem* - fi - - rm "${S}"/contrib/rem2ics-*/{Makefile,rem2ics.spec} || die - insinto /usr/share/${PN} - doins -r contrib/ -}