Gentoo Archives: gentoo-commits

From: Daniel Pielmeier <billie@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-portage/pfl/
Date: Wed, 13 Nov 2019 19:43:41
Message-Id: 1573674186.6ab4519ea16312e527bbf302d47a16157794cb44.billie@gentoo
1 commit: 6ab4519ea16312e527bbf302d47a16157794cb44
2 Author: Daniel Pielmeier <billie <AT> gentoo <DOT> org>
3 AuthorDate: Wed Nov 13 19:43:06 2019 +0000
4 Commit: Daniel Pielmeier <billie <AT> gentoo <DOT> org>
5 CommitDate: Wed Nov 13 19:43:06 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ab4519e
7
8 app-portage/pfl: Remove old pfl-3.0.1-r2.
9
10 Package-Manager: Portage-2.3.76, Repoman-2.3.16
11 Signed-off-by: Daniel Pielmeier <billie <AT> gentoo.org>
12
13 app-portage/pfl/pfl-3.0.1-r2.ebuild | 49 -------------------------------------
14 1 file changed, 49 deletions(-)
15
16 diff --git a/app-portage/pfl/pfl-3.0.1-r2.ebuild b/app-portage/pfl/pfl-3.0.1-r2.ebuild
17 deleted file mode 100644
18 index cdc339e0cba..00000000000
19 --- a/app-portage/pfl/pfl-3.0.1-r2.ebuild
20 +++ /dev/null
21 @@ -1,49 +0,0 @@
22 -# Copyright 1999-2019 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -
27 -PYTHON_COMPAT=( python3_{5,6} )
28 -PYTHON_REQ_USE="xml"
29 -
30 -inherit distutils-r1
31 -
32 -DESCRIPTION="Searchable online file/package database for Gentoo"
33 -HOMEPAGE="http://www.portagefilelist.de"
34 -SRC_URI="https://dev.gentoo.org/~billie/distfiles/${P}.tar.bz2"
35 -
36 -LICENSE="GPL-2"
37 -SLOT="0"
38 -KEYWORDS="~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
39 -IUSE="+network-cron"
40 -
41 -DEPEND=""
42 -RDEPEND="
43 - ${DEPEND}
44 - >=dev-python/ssl-fetch-0.4[${PYTHON_USEDEP}]
45 - net-misc/curl
46 - sys-apps/portage[${PYTHON_USEDEP}]
47 - network-cron? ( sys-apps/util-linux[caps] )
48 -"
49 -
50 -PATCHES=(
51 - "${FILESDIR}/e-file-function.patch"
52 -)
53 -
54 -python_install_all() {
55 - if use network-cron ; then
56 - exeinto /etc/cron.weekly
57 - doexe cron/pfl
58 - fi
59 -
60 - keepdir /var/lib/${PN}
61 - distutils-r1_python_install_all
62 -}
63 -
64 -pkg_postinst() {
65 - if [[ ! -e "${EROOT}/var/lib/${PN}/pfl.info" ]]; then
66 - touch "${EROOT}/var/lib/${PN}/pfl.info" || die
67 - fi
68 - chown -R portage:portage "${EROOT}/var/lib/${PN}" || die
69 - chmod 775 "${EROOT}/var/lib/${PN}" || die
70 -}