summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Pielmeier <billie@gentoo.org>2019-01-20 13:20:24 +0100
committerDaniel Pielmeier <billie@gentoo.org>2019-01-20 13:20:24 +0100
commit5861e866e2cbf0278a94acbf589da6959d866bb7 (patch)
treedf1b7cd4287e4ee8881192277b8036e7d29bb552 /app-portage
parentapp-cdr/cdrtools: Remve old 3.02_alpha07-r1, 3.02_alpha09-r1. (diff)
downloadgentoo-5861e866e2cbf0278a94acbf589da6959d866bb7.tar.gz
gentoo-5861e866e2cbf0278a94acbf589da6959d866bb7.tar.bz2
gentoo-5861e866e2cbf0278a94acbf589da6959d866bb7.zip
app-portage/pfl: Remove old 3.0-r1.
Signed-off-by: Daniel Pielmeier <billie@gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11
Diffstat (limited to 'app-portage')
-rw-r--r--app-portage/pfl/pfl-3.0-r1.ebuild45
1 files changed, 0 insertions, 45 deletions
diff --git a/app-portage/pfl/pfl-3.0-r1.ebuild b/app-portage/pfl/pfl-3.0-r1.ebuild
deleted file mode 100644
index 519afebf7bc5..000000000000
--- a/app-portage/pfl/pfl-3.0-r1.ebuild
+++ /dev/null
@@ -1,45 +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-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}]
- )
- >=dev-python/ssl-fetch-0.4[${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
-}