summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2009-10-17 19:20:40 +0000
committerArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2009-10-17 19:20:40 +0000
commit8d31768b58a7b413d3ef2c74d4f86cdd151e1f05 (patch)
tree2ed23cd6c67d214889c0e6c4fb8da9c0d4f27267 /app-admin
parentFix building with >=net-misc/neon-0.29.0 (bug #286171). (diff)
downloadgentoo-2-8d31768b58a7b413d3ef2c74d4f86cdd151e1f05.tar.gz
gentoo-2-8d31768b58a7b413d3ef2c74d4f86cdd151e1f05.tar.bz2
gentoo-2-8d31768b58a7b413d3ef2c74d4f86cdd151e1f05.zip
Delete older ebuilds.
Diffstat (limited to 'app-admin')
-rw-r--r--app-admin/python-updater/files/python-updater-r133-custom-package-manager-command.patch51
-rw-r--r--app-admin/python-updater/python-updater-0.2.ebuild22
-rw-r--r--app-admin/python-updater/python-updater-0.5.ebuild23
-rw-r--r--app-admin/python-updater/python-updater-0.6-r1.ebuild31
-rw-r--r--app-admin/python-updater/python-updater-0.6.ebuild23
5 files changed, 0 insertions, 150 deletions
diff --git a/app-admin/python-updater/files/python-updater-r133-custom-package-manager-command.patch b/app-admin/python-updater/files/python-updater-r133-custom-package-manager-command.patch
deleted file mode 100644
index 6569614f74a3..000000000000
--- a/app-admin/python-updater/files/python-updater-r133-custom-package-manager-command.patch
+++ /dev/null
@@ -1,51 +0,0 @@
-------------------------------------------------------------------------
-r134 | robbat2 | 2008-12-05 11:58:43 -0800 (Fri, 05 Dec 2008) | 1 line
-
-Bug #249891 - Add support for just calling another binary with the identical
-syntax to the package manager. Infra-requested feature, commit acked by
-hawking@gentoo.org.
-------------------------------------------------------------------------
-Index: python-updater
-===================================================================
---- python-updater (revision 133)
-+++ python-updater (revision 134)
-@@ -39,6 +39,7 @@
- SUPPORTED_PMS="portage pkgcore paludis"
- PMS_COMMAND=( "emerge" "pmerge" "paludis" )
- PMS_OPTIONS=( "-vD1" "-Do" "-i1" )
-+CUSTOM_PMS_COMMAND=""
-
- # Checks
- CHECK_ECLASS=0
-@@ -86,6 +87,9 @@
- -c CMD, --command CMD
- Pipe found packages to command CMD instead of invoking package
- manager. Only for debug and script use.
-+ --package-manager-command CMD
-+ Call CMD instead of the default command for the specified
-+ package manager.
- -eCHECK --enable-CHECK
- Enable CHECK where CHECK can be one of:
- * eclass (Disabled by default)
-@@ -220,6 +224,10 @@
- PMS_INDEX=$((${PMS_INDEX} + 1))
- done
- ;;
-+ --package-manager-command)
-+ shift
-+ CUSTOM_PMS_COMMAND="$1"
-+ ;;
- -c|--command)
- shift
- PIPE_COMMAND="$1"
-@@ -429,7 +437,9 @@
-
- # (Pretend to) remerge packages
- if [[ -n "${PKGS_TO_REMERGE}" ]]; then
-- cmd="${PMS_COMMAND[${PMS_INDEX}]} ${PMS_OPTIONS[${PMS_INDEX}]} ${PKGS_TO_REMERGE}"
-+ pmscmd="${CUSTOM_PMS_COMMAND}"
-+ [ -z "${pmscmd}" ] && pmscmd="${PMS_COMMAND[${PMS_INDEX}]}"
-+ cmd="${pmscmd} ${PMS_OPTIONS[${PMS_INDEX}]} ${PKGS_TO_REMERGE}"
- einfo ${cmd}
- ${cmd}
- else
diff --git a/app-admin/python-updater/python-updater-0.2.ebuild b/app-admin/python-updater/python-updater-0.2.ebuild
deleted file mode 100644
index 96642644b38b..000000000000
--- a/app-admin/python-updater/python-updater-0.2.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/python-updater/python-updater-0.2.ebuild,v 1.20 2008/04/24 04:40:45 ricmm Exp $
-
-DESCRIPTION="Script used to remerge python packages when changing Python version."
-HOMEPAGE="http://www.gentoo.org/proj/en/Python"
-SRC_URI="mirror://gentoo/${P}.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc ~sparc-fbsd x86 ~x86-fbsd"
-IUSE=""
-
-DEPEND=""
-RDEPEND="!<dev-lang/python-2.3.6-r2
- || ( >=sys-apps/portage-2.1.2 sys-apps/pkgcore sys-apps/paludis )"
-
-src_install()
-{
- cd "${WORKDIR}"
- newsbin ${P} ${PN}
-}
diff --git a/app-admin/python-updater/python-updater-0.5.ebuild b/app-admin/python-updater/python-updater-0.5.ebuild
deleted file mode 100644
index 23d21aae4bbb..000000000000
--- a/app-admin/python-updater/python-updater-0.5.ebuild
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/python-updater/python-updater-0.5.ebuild,v 1.8 2008/10/25 21:40:38 vapier Exp $
-
-DESCRIPTION="Script used to remerge python packages when changing Python version."
-HOMEPAGE="http://www.gentoo.org/proj/en/Python"
-SRC_URI="mirror://gentoo/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc ~sparc-fbsd x86 ~x86-fbsd"
-IUSE=""
-
-DEPEND=""
-RDEPEND="!<dev-lang/python-2.3.6-r2
- || ( >=sys-apps/portage-2.1.2 sys-apps/pkgcore sys-apps/paludis )"
-
-src_install()
-{
- dosbin ${PN} || die "dosbin failed"
- doman ${PN}.1 || die "doman failed"
- dodoc AUTHORS ChangeLog || die "dodoc failed"
-}
diff --git a/app-admin/python-updater/python-updater-0.6-r1.ebuild b/app-admin/python-updater/python-updater-0.6-r1.ebuild
deleted file mode 100644
index dbf64c8bdc0f..000000000000
--- a/app-admin/python-updater/python-updater-0.6-r1.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/python-updater/python-updater-0.6-r1.ebuild,v 1.2 2008/12/05 20:04:22 robbat2 Exp $
-
-inherit eutils
-
-DESCRIPTION="Script used to remerge python packages when changing Python version."
-HOMEPAGE="http://www.gentoo.org/proj/en/Python"
-SRC_URI="mirror://gentoo/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
-IUSE=""
-
-DEPEND=""
-RDEPEND="!<dev-lang/python-2.3.6-r2
- || ( >=sys-apps/portage-2.1.2 sys-apps/pkgcore sys-apps/paludis )"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}"/${PN}-r133-custom-package-manager-command.patch
-}
-
-src_install()
-{
- dosbin ${PN} || die "dosbin failed"
- doman ${PN}.1 || die "doman failed"
- dodoc AUTHORS ChangeLog || die "dodoc failed"
-}
diff --git a/app-admin/python-updater/python-updater-0.6.ebuild b/app-admin/python-updater/python-updater-0.6.ebuild
deleted file mode 100644
index d1e632cfc6d7..000000000000
--- a/app-admin/python-updater/python-updater-0.6.ebuild
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/python-updater/python-updater-0.6.ebuild,v 1.1 2008/08/25 09:56:28 hawking Exp $
-
-DESCRIPTION="Script used to remerge python packages when changing Python version."
-HOMEPAGE="http://www.gentoo.org/proj/en/Python"
-SRC_URI="mirror://gentoo/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
-IUSE=""
-
-DEPEND=""
-RDEPEND="!<dev-lang/python-2.3.6-r2
- || ( >=sys-apps/portage-2.1.2 sys-apps/pkgcore sys-apps/paludis )"
-
-src_install()
-{
- dosbin ${PN} || die "dosbin failed"
- doman ${PN}.1 || die "doman failed"
- dodoc AUTHORS ChangeLog || die "dodoc failed"
-}