diff options
author | Daniel Pielmeier <billie@gentoo.org> | 2010-07-18 13:14:15 +0000 |
---|---|---|
committer | Daniel Pielmeier <billie@gentoo.org> | 2010-07-18 13:14:15 +0000 |
commit | 6841d099cd59055bf8a8b06baf1e885520233f78 (patch) | |
tree | aa820f8e93db39d1bced62b0c492e602c3eab4de /app-portage | |
parent | ppc stable #322849 (diff) | |
download | gentoo-2-6841d099cd59055bf8a8b06baf1e885520233f78.tar.gz gentoo-2-6841d099cd59055bf8a8b06baf1e885520233f78.tar.bz2 gentoo-2-6841d099cd59055bf8a8b06baf1e885520233f78.zip |
Remove old.
(Portage version: 2.1.8.3/cvs/Linux i686)
Diffstat (limited to 'app-portage')
-rw-r--r-- | app-portage/pfl/ChangeLog | 6 | ||||
-rw-r--r-- | app-portage/pfl/pfl-1.8.1-r1.ebuild | 68 | ||||
-rw-r--r-- | app-portage/pfl/pfl-1.8.1.ebuild | 64 |
3 files changed, 5 insertions, 133 deletions
diff --git a/app-portage/pfl/ChangeLog b/app-portage/pfl/ChangeLog index a664abf4ed63..5cb0b756fdbe 100644 --- a/app-portage/pfl/ChangeLog +++ b/app-portage/pfl/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-portage/pfl # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-portage/pfl/ChangeLog,v 1.12 2010/07/17 12:54:10 fauli Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-portage/pfl/ChangeLog,v 1.13 2010/07/18 13:14:15 billie Exp $ + + 18 Jul 2010; Daniel Pielmeier <billie@gentoo.org> -pfl-1.8.1.ebuild, + -pfl-1.8.1-r1.ebuild: + Remove old. 17 Jul 2010; Christian Faulhammer <fauli@gentoo.org> pfl-2.0.ebuild: stable x86, bug 328159 diff --git a/app-portage/pfl/pfl-1.8.1-r1.ebuild b/app-portage/pfl/pfl-1.8.1-r1.ebuild deleted file mode 100644 index 6924d3deee98..000000000000 --- a/app-portage/pfl/pfl-1.8.1-r1.ebuild +++ /dev/null @@ -1,68 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-portage/pfl/pfl-1.8.1-r1.ebuild,v 1.5 2010/05/28 18:31:11 billie Exp $ - -PYTHON_DEPEND=2 - -inherit python multilib - -MY_PV=20081201 - -DESCRIPTION="PFL is an online searchable file/package database for Gentoo" -HOMEPAGE="http://www.portagefilelist.de/index.php/Special:PFLQuery2" -SRC_URI="http://files.portagefilelist.de/${P} - http://files.portagefilelist.de/e-file-${MY_PV}" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="network-cron" - -DEPEND="" -RDEPEND="${DEPEND} - net-misc/curl - sys-apps/portage" - -RESTRICT="mirror" - -src_unpack() { - cp "${DISTDIR}/${P}" "${WORKDIR}/${PN}.py" - cp "${DISTDIR}/e-file-${MY_PV}" "${WORKDIR}/e-file" -} - -pkg_setup() { - python_set_active_version 2 -} - -src_install() { - if use network-cron ; then - cat >> "${T}/${PN}" <<- EOF - #!/bin/sh - exec nice $(PYTHON) -O $(python_get_sitedir)/${PN}/${PN}.py >/dev/null - EOF - - exeinto /etc/cron.weekly - doexe "${T}/${PN}" || die "install ${PN} cron file failed" - fi - - exeinto $(python_get_sitedir)/${PN} - doexe ${PN}.py || die "install ${PN}.py failed" - - dobin e-file || die "install e-file failed" - - dodir /var/lib/${PN} || die "directory creation failed" -} - -pkg_postinst() { - python_mod_optimize $(python_get_sitedir)/${PN} - - if [[ ! -e "${ROOT%/}/var/lib/${PN}/lastrun" ]]; then - echo -n 0 > "${ROOT%/}/var/lib/${PN}/lastrun" - chown -R 0:portage "${ROOT%/}/var/lib/${PN}" - chmod 775 "${ROOT%/}/var/lib/${PN}" - fi -} - -pkg_postrm() { - python_mod_cleanup $(python_get_sitedir)/${PN} -} diff --git a/app-portage/pfl/pfl-1.8.1.ebuild b/app-portage/pfl/pfl-1.8.1.ebuild deleted file mode 100644 index 0fc33eeb87a7..000000000000 --- a/app-portage/pfl/pfl-1.8.1.ebuild +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-portage/pfl/pfl-1.8.1.ebuild,v 1.6 2010/06/04 20:42:35 arfrever Exp $ - -inherit python multilib - -MY_PV=20081201 - -DESCRIPTION="PFL is an online searchable file/package database for Gentoo" -HOMEPAGE="http://www.portagefilelist.de/index.php/Special:PFLQuery2" -SRC_URI="http://files.portagefilelist.de/${P} - http://files.portagefilelist.de/e-file-${MY_PV}" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="network-cron" - -DEPEND="virtual/python" -RDEPEND="${DEPEND} - net-misc/curl - sys-apps/portage" - -RESTRICT="mirror" - -src_unpack() { - cp "${DISTDIR}/${P}" "${WORKDIR}/${PN}.py" - cp "${DISTDIR}/e-file-${MY_PV}" "${WORKDIR}/e-file" -} - -src_install() { - if use network-cron ; then - cat >> "${T}/${PN}" <<- EOF - #!/bin/sh - exec nice $(PYTHON) -O $(python_get_sitedir)/${PN}/${PN}.py >/dev/null - EOF - - exeinto /etc/cron.weekly - doexe "${T}/${PN}" || die "install ${PN} cron file failed" - fi - - exeinto $(python_get_sitedir)/${PN} - doexe ${PN}.py || die "install ${PN}.py failed" - - dobin e-file || die "install e-file failed" - - dodir /var/lib/${PN} || die "directory creation failed" - fowners 0:portage /var/lib/${PN} - fperms 0775 /var/lib/${PN} -} - -pkg_postinst() { - python_mod_optimize $(python_get_sitedir)/${PN} - - if [[ ! -e "${ROOT%/}/var/lib/${PN}/lastrun" ]]; then - echo -n 0 > "${ROOT%/}/var/lib/${PN}/lastrun" - chown -R 0:portage "${ROOT%/}/var/lib/${PN}" - chmod -R 775 "${ROOT%/}/var/lib/${PN}" - fi -} - -pkg_postrm() { - python_mod_cleanup $(python_get_sitedir)/${PN} -} |