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 153B11382C5 for ; Mon, 11 Jan 2021 08:07:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6373CE0B00; Mon, 11 Jan 2021 08:07:07 +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 4DF91E0B00 for ; Mon, 11 Jan 2021 08:07:07 +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 71764340D9F for ; Mon, 11 Jan 2021 08:07:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 10861497 for ; Mon, 11 Jan 2021 08:07:05 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1610352382.df4ccaa95c6250f50f25c14a2c2e4c796652dc51.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/note/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/note/note-1.3.3-r1.ebuild X-VCS-Directories: app-misc/note/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: df4ccaa95c6250f50f25c14a2c2e4c796652dc51 X-VCS-Branch: master Date: Mon, 11 Jan 2021 08:07:05 +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: 24ee0e48-7f86-4da1-beb3-38fd996eabd0 X-Archives-Hash: 78ee0f399e50be05a196c0509a7922bd commit: df4ccaa95c6250f50f25c14a2c2e4c796652dc51 Author: Sam James gentoo org> AuthorDate: Mon Jan 11 08:06:22 2021 +0000 Commit: Sam James gentoo org> CommitDate: Mon Jan 11 08:06:22 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df4ccaa9 app-misc/note: cleanup old Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Sam James gentoo.org> app-misc/note/note-1.3.3-r1.ebuild | 55 -------------------------------------- 1 file changed, 55 deletions(-) diff --git a/app-misc/note/note-1.3.3-r1.ebuild b/app-misc/note/note-1.3.3-r1.ebuild deleted file mode 100644 index 35fba906d5d..00000000000 --- a/app-misc/note/note-1.3.3-r1.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit perl-module - -DESCRIPTION="A note taking perl program" -HOMEPAGE="http://www.daemon.de/NOTE" -SRC_URI="http://www.daemon.de/files/mirror/ftp.daemon.de/scip/Apps/note/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc x86" -IUSE="crypt dbm general mysql text" - -DEPEND="dev-perl/TermReadKey - dev-perl/Term-ReadLine-Perl - virtual/perl-Storable - dev-perl/Config-General - crypt? ( dev-perl/Crypt-CBC - dev-perl/Crypt-Blowfish - dev-perl/Crypt-DES ) - mysql? ( virtual/mysql - dev-perl/DBD-mysql )" -RDEPEND="" - -src_install() { - perl-module_src_install - - # Adding some basic utitily for testing note - dodir /usr/share/${PN} - cp "${S}/bin/stresstest.sh" "${D}/usr/share/${PN}" - - # Adding some help for mysql backend driver - if use mysql; then - dodir /usr/share/${PN}/mysql - cp -r "${S}/mysql" "${D}/usr/share/${PN}" - fi - - # Adding a sample configuration file - dodir /etc - cp "${S}/config/noterc" "${D}/etc" - - # Supressing file not needed - for v in mysql text dbm general; do - if ! use ${v}; then - for u in `find "${D}" -type f -name *${v}.*pm`; do - rm "${u}" - done - fi - done - - dodoc UPGRADE VERSION -}