diff options
author | Daniel Pielmeier <billie@gentoo.org> | 2013-10-14 19:42:05 +0000 |
---|---|---|
committer | Daniel Pielmeier <billie@gentoo.org> | 2013-10-14 19:42:05 +0000 |
commit | 2195661604e3bf844d42c0833c6adb00e6fd3876 (patch) | |
tree | 56325bf10b7f9735ca1de39048d8ccb4f2b18370 /app-portage | |
parent | Revision bump. Fixes bug #413191. Thanks to rking for the report and Jeroen R... (diff) | |
download | gentoo-2-2195661604e3bf844d42c0833c6adb00e6fd3876.tar.gz gentoo-2-2195661604e3bf844d42c0833c6adb00e6fd3876.tar.bz2 gentoo-2-2195661604e3bf844d42c0833c6adb00e6fd3876.zip |
Remove old.
(Portage version: 2.2.1/cvs/Linux x86_64, signed Manifest commit with key 215AD14D)
Diffstat (limited to 'app-portage')
-rw-r--r-- | app-portage/pfl/ChangeLog | 5 | ||||
-rw-r--r-- | app-portage/pfl/pfl-2.4.ebuild | 46 |
2 files changed, 4 insertions, 47 deletions
diff --git a/app-portage/pfl/ChangeLog b/app-portage/pfl/ChangeLog index 872808bab1a7..bafce863fb25 100644 --- a/app-portage/pfl/ChangeLog +++ b/app-portage/pfl/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-portage/pfl # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-portage/pfl/ChangeLog,v 1.57 2013/10/14 19:39:28 billie Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-portage/pfl/ChangeLog,v 1.58 2013/10/14 19:42:05 billie Exp $ + + 14 Oct 2013; Daniel Pielmeier <billie@gentoo.org> -pfl-2.4.ebuild: + Remove old. *pfl-2.4-r1 (14 Oct 2013) diff --git a/app-portage/pfl/pfl-2.4.ebuild b/app-portage/pfl/pfl-2.4.ebuild deleted file mode 100644 index 9a1f248dd3d9..000000000000 --- a/app-portage/pfl/pfl-2.4.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-portage/pfl/pfl-2.4.ebuild,v 1.1 2013/10/06 16:51:01 billie Exp $ - -EAPI=5 - -PYTHON_COMPAT=( python{2_6,2_7} ) -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 ~ppc ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x64-freebsd ~x86-linux" -IUSE="+network-cron" - -DEPEND="" -RDEPEND="${DEPEND} - net-misc/curl - sys-apps/portage" - -src_prepare() { - epatch "${FILESDIR}"/e-file-20110906-portageq.patch -} - -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" - chown -R 0:portage "${EROOT%/}/var/lib/${PN}" - chmod 775 "${EROOT%/}/var/lib/${PN}" - fi -} |