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: Sun, 20 Jan 2019 12:20:43
Message-Id: 1547986824.5861e866e2cbf0278a94acbf589da6959d866bb7.billie@gentoo
1 commit: 5861e866e2cbf0278a94acbf589da6959d866bb7
2 Author: Daniel Pielmeier <billie <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 20 12:20:24 2019 +0000
4 Commit: Daniel Pielmeier <billie <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 20 12:20:24 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5861e866
7
8 app-portage/pfl: Remove old 3.0-r1.
9
10 Signed-off-by: Daniel Pielmeier <billie <AT> gentoo.org>
11 Package-Manager: Portage-2.3.51, Repoman-2.3.11
12
13 app-portage/pfl/pfl-3.0-r1.ebuild | 45 ---------------------------------------
14 1 file changed, 45 deletions(-)
15
16 diff --git a/app-portage/pfl/pfl-3.0-r1.ebuild b/app-portage/pfl/pfl-3.0-r1.ebuild
17 deleted file mode 100644
18 index 519afebf7bc..00000000000
19 --- a/app-portage/pfl/pfl-3.0-r1.ebuild
20 +++ /dev/null
21 @@ -1,45 +0,0 @@
22 -# Copyright 1999-2018 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -
27 -PYTHON_COMPAT=( python{3_5,3_6} )
28 -PYTHON_REQ_USE="xml"
29 -
30 -inherit eutils distutils-r1
31 -
32 -DESCRIPTION="Searchable online file/package database for Gentoo"
33 -HOMEPAGE="http://www.portagefilelist.de"
34 -SRC_URI="http://files.portagefilelist.de/${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="${DEPEND}
43 - net-misc/curl
44 - || (
45 - sys-apps/portage[${PYTHON_USEDEP}]
46 - sys-apps/portage-mgorny[${PYTHON_USEDEP}]
47 - )
48 - >=dev-python/ssl-fetch-0.4[${PYTHON_USEDEP}]"
49 -
50 -python_install_all() {
51 - if use network-cron ; then
52 - exeinto /etc/cron.weekly
53 - doexe cron/pfl
54 - fi
55 -
56 - keepdir /var/lib/${PN}
57 - distutils-r1_python_install_all
58 -}
59 -
60 -pkg_postinst() {
61 - if [[ ! -e "${EROOT%/}/var/lib/${PN}/pfl.info" ]]; then
62 - touch "${EROOT%/}/var/lib/${PN}/pfl.info" || die
63 - chown -R 0:portage "${EROOT%/}/var/lib/${PN}" || die
64 - chmod 775 "${EROOT%/}/var/lib/${PN}" || die
65 - fi
66 -}