summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Pielmeier <billie@gentoo.org>2013-02-09 09:24:14 +0000
committerDaniel Pielmeier <billie@gentoo.org>2013-02-09 09:24:14 +0000
commit97fd996a34f9c4a9945322c87935fb8f3e460c36 (patch)
tree3e2281d104c8875a12d6061f061e9fd2fc7fd5df /app-portage
parentVersion bump. (diff)
downloadgentoo-2-97fd996a34f9c4a9945322c87935fb8f3e460c36.tar.gz
gentoo-2-97fd996a34f9c4a9945322c87935fb8f3e460c36.tar.bz2
gentoo-2-97fd996a34f9c4a9945322c87935fb8f3e460c36.zip
Remove old.
(Portage version: 2.1.11.50/cvs/Linux i686, signed Manifest commit with key 215AD14D)
Diffstat (limited to 'app-portage')
-rw-r--r--app-portage/pfl/ChangeLog5
-rw-r--r--app-portage/pfl/pfl-2.3-r1.ebuild54
2 files changed, 4 insertions, 55 deletions
diff --git a/app-portage/pfl/ChangeLog b/app-portage/pfl/ChangeLog
index f17cb5181bf7..277563da43c3 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.48 2013/02/02 19:28:02 billie Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-portage/pfl/ChangeLog,v 1.49 2013/02/09 09:24:14 billie Exp $
+
+ 09 Feb 2013; Daniel Pielmeier <billie@gentoo.org> -pfl-2.3-r1.ebuild:
+ Remove old.
02 Feb 2013; Daniel Pielmeier <billie@gentoo.org> pfl-2.3-r2.ebuild:
Remove distutils-r1_src_install from python_install_all() to avoid endless
diff --git a/app-portage/pfl/pfl-2.3-r1.ebuild b/app-portage/pfl/pfl-2.3-r1.ebuild
deleted file mode 100644
index 3592cc819953..000000000000
--- a/app-portage/pfl/pfl-2.3-r1.ebuild
+++ /dev/null
@@ -1,54 +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.3-r1.ebuild,v 1.5 2013/02/02 12:39:57 billie Exp $
-
-EAPI=4
-
-PYTHON_DEPEND=2
-PYTHON_USE_WITH=xml
-
-inherit distutils python
-
-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 ~x64-freebsd"
-IUSE="+network-cron"
-
-DEPEND=""
-RDEPEND="${DEPEND}
- net-misc/curl
- sys-apps/portage"
-
-pkg_setup() {
- python_set_active_version 2
- python_pkg_setup
-}
-
-src_install() {
- distutils_src_install
-
- if use network-cron ; then
- exeinto /etc/cron.weekly
- doexe cron/pfl
- fi
-
- keepdir /var/lib/${PN}
-}
-
-pkg_postinst() {
- python_mod_optimize ${PN}
-
- 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
-}
-
-pkg_postrm() {
- python_mod_cleanup ${PN}
-}