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, 02 Feb 2022 17:14:00
Message-Id: 1643822022.54ee03cd18b1d146bb733fcde488cb748c2d3dca.billie@gentoo
1 commit: 54ee03cd18b1d146bb733fcde488cb748c2d3dca
2 Author: Daniel Pielmeier <billie <AT> gentoo <DOT> org>
3 AuthorDate: Wed Feb 2 17:13:42 2022 +0000
4 Commit: Daniel Pielmeier <billie <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 2 17:13:42 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54ee03cd
7
8 app-portage/pfl: Remove old.
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Daniel Pielmeier <billie <AT> gentoo.org>
12
13 app-portage/pfl/pfl-3.2.ebuild | 51 ------------------------------------------
14 1 file changed, 51 deletions(-)
15
16 diff --git a/app-portage/pfl/pfl-3.2.ebuild b/app-portage/pfl/pfl-3.2.ebuild
17 deleted file mode 100644
18 index c7efacdcd5c1..000000000000
19 --- a/app-portage/pfl/pfl-3.2.ebuild
20 +++ /dev/null
21 @@ -1,51 +0,0 @@
22 -# Copyright 1999-2021 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -
27 -DISTUTILS_USE_SETUPTOOLS=no
28 -PYTHON_COMPAT=( python3_{7,8,9} )
29 -PYTHON_REQ_USE="xml"
30 -
31 -inherit distutils-r1 systemd
32 -
33 -DESCRIPTION="Searchable online file/package database for Gentoo"
34 -HOMEPAGE="http://www.portagefilelist.de https://github.com/portagefilelist/client"
35 -SRC_URI="https://github.com/portagefilelist/client/archive/${PV}.tar.gz -> ${P}.tar.gz"
36 -
37 -LICENSE="GPL-2"
38 -SLOT="0"
39 -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
40 -IUSE="+network-cron"
41 -
42 -DEPEND=""
43 -RDEPEND="
44 - ${DEPEND}
45 - dev-python/requests[${PYTHON_USEDEP}]
46 - dev-python/termcolor[${PYTHON_USEDEP}]
47 - sys-apps/portage[${PYTHON_USEDEP}]
48 - network-cron? ( sys-apps/util-linux[caps] )
49 -"
50 -
51 -S="${WORKDIR}/client-${PV}"
52 -
53 -python_install_all() {
54 - if use network-cron ; then
55 - exeinto /etc/cron.weekly
56 - doexe cron/pfl
57 - fi
58 -
59 - systemd_dounit systemd/pfl.{service,timer}
60 -
61 - keepdir /var/lib/${PN}
62 -
63 - distutils-r1_python_install_all
64 -}
65 -
66 -pkg_postinst() {
67 - if [[ ! -e "${EROOT}/var/lib/${PN}/pfl.info" ]]; then
68 - touch "${EROOT}/var/lib/${PN}/pfl.info" || die
69 - fi
70 - chown -R portage:portage "${EROOT}/var/lib/${PN}" || die
71 - chmod 775 "${EROOT}/var/lib/${PN}" || die
72 -}