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 16D921382C5 for ; Thu, 17 May 2018 18:33:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0BFB8E0AC9; Thu, 17 May 2018 18:33:34 +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 E161CE0AC9 for ; Thu, 17 May 2018 18:33:33 +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 F3A1D335C09 for ; Thu, 17 May 2018 18:33:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3C11B3E for ; Thu, 17 May 2018 18:33:31 +0000 (UTC) From: "Daniel Pielmeier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Daniel Pielmeier" Message-ID: <1526582006.e738ffc920efdb84637dd7d4fc8e4b14ea800b92.billie@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-portage/pfl/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-portage/pfl/pfl-3.0.ebuild X-VCS-Directories: app-portage/pfl/ X-VCS-Committer: billie X-VCS-Committer-Name: Daniel Pielmeier X-VCS-Revision: e738ffc920efdb84637dd7d4fc8e4b14ea800b92 X-VCS-Branch: master Date: Thu, 17 May 2018 18:33:31 +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-Archives-Salt: f5e3512e-353a-4155-a7da-4d96369ce9ff X-Archives-Hash: 8e7286ba28ff09bdfbf6ee6f966469c0 commit: e738ffc920efdb84637dd7d4fc8e4b14ea800b92 Author: Daniel Pielmeier gentoo org> AuthorDate: Thu May 17 18:33:26 2018 +0000 Commit: Daniel Pielmeier gentoo org> CommitDate: Thu May 17 18:33:26 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e738ffc9 app-portage/pfl: Remove old. Package-Manager: Portage-2.3.24, Repoman-2.3.6 app-portage/pfl/pfl-3.0.ebuild | 44 ------------------------------------------ 1 file changed, 44 deletions(-) diff --git a/app-portage/pfl/pfl-3.0.ebuild b/app-portage/pfl/pfl-3.0.ebuild deleted file mode 100644 index 92a794602b6..00000000000 --- a/app-portage/pfl/pfl-3.0.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python{3_5,3_6} ) -PYTHON_REQ_USE="xml" - -inherit eutils distutils-r1 - -DESCRIPTION="Searchable online file/package database for Gentoo" -HOMEPAGE="http://www.portagefilelist.de" -SRC_URI="http://files.portagefilelist.de/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~x64-macos" -IUSE="+network-cron" - -DEPEND="" -RDEPEND="${DEPEND} - net-misc/curl - || ( - sys-apps/portage[${PYTHON_USEDEP}] - sys-apps/portage-mgorny[${PYTHON_USEDEP}] - )" - -python_install_all() { - if use network-cron ; then - exeinto /etc/cron.weekly - doexe cron/pfl - fi - - keepdir /var/lib/${PN} - distutils-r1_python_install_all -} - -pkg_postinst() { - if [[ ! -e "${EROOT%/}/var/lib/${PN}/pfl.info" ]]; then - touch "${EROOT%/}/var/lib/${PN}/pfl.info" || die - chown -R 0:portage "${EROOT%/}/var/lib/${PN}" || die - chmod 775 "${EROOT%/}/var/lib/${PN}" || die - fi -}