summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLisa M. Seelye <lisa@gentoo.org>2007-03-05 00:53:56 +0000
committerLisa M. Seelye <lisa@gentoo.org>2007-03-05 00:53:56 +0000
commitd6b73911dba730486c10a03937a4bc3ae7907f75 (patch)
tree71c653a2bf58699c979e29252892a4692ac4c910 /dev-util/ccache
parentReally removing old ebuilds (diff)
downloadgentoo-2-d6b73911dba730486c10a03937a4bc3ae7907f75.tar.gz
gentoo-2-d6b73911dba730486c10a03937a4bc3ae7907f75.tar.bz2
gentoo-2-d6b73911dba730486c10a03937a4bc3ae7907f75.zip
Pruning old versions and digets.
(Portage version: 2.1.2.1)
Diffstat (limited to 'dev-util/ccache')
-rw-r--r--dev-util/ccache/ChangeLog7
-rw-r--r--dev-util/ccache/ccache-2.2.ebuild69
-rw-r--r--dev-util/ccache/ccache-2.3.ebuild67
-rw-r--r--dev-util/ccache/ccache-2.4-r1.ebuild72
-rw-r--r--dev-util/ccache/ccache-2.4-r2.ebuild74
-rw-r--r--dev-util/ccache/ccache-2.4.ebuild66
-rw-r--r--dev-util/ccache/files/digest-ccache-2.23
-rw-r--r--dev-util/ccache/files/digest-ccache-2.33
-rw-r--r--dev-util/ccache/files/digest-ccache-2.43
-rw-r--r--dev-util/ccache/files/digest-ccache-2.4-r13
-rw-r--r--dev-util/ccache/files/digest-ccache-2.4-r23
11 files changed, 6 insertions, 364 deletions
diff --git a/dev-util/ccache/ChangeLog b/dev-util/ccache/ChangeLog
index 1c002de5575f..bf42569daa12 100644
--- a/dev-util/ccache/ChangeLog
+++ b/dev-util/ccache/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for dev-util/ccache
# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/ccache/ChangeLog,v 1.58 2007/03/04 23:46:35 redhatter Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/ccache/ChangeLog,v 1.59 2007/03/05 00:53:56 lisa Exp $
+
+ 05 Mar 2007; Lisa Seelye <lisa@gentoo.org> -ccache-2.2.ebuild,
+ -ccache-2.3.ebuild, -ccache-2.4.ebuild, -ccache-2.4-r1.ebuild,
+ -ccache-2.4-r2.ebuild:
+ Pruning old ebuilds
04 Mar 2007; Stuart Longland <redhatter@gentoo.org> ccache-2.4-r6.ebuild:
Tested and working on mips. No bugs in the last 30 days. Marking stable as
diff --git a/dev-util/ccache/ccache-2.2.ebuild b/dev-util/ccache/ccache-2.2.ebuild
deleted file mode 100644
index 0f24e12a902a..000000000000
--- a/dev-util/ccache/ccache-2.2.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/ccache/ccache-2.2.ebuild,v 1.11 2007/02/28 22:08:18 genstef Exp $
-
-DESCRIPTION="ccache is a fast compiler cache. It is used as a front end to your
-compiler to safely cache compilation output. When the same code is compiled
-again the cached output is used giving a significant speedup."
-SRC_URI="http://samba.org/ftp/ccache/${P}.tar.gz"
-HOMEPAGE="http://ccache.samba.org/"
-
-IUSE=""
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="alpha amd64 hppa mips ppc sparc x86"
-DEPEND="virtual/libc \
- >=sys-apps/portage-2.0.46-r11"
-
-# Note: this version is designed to be auto-detected and used if
-# you happen to have Portage 2.0.X+ installed.
-
-src_compile() {
- econf || die
- emake || die
-}
-
-src_install () {
- exeinto /usr/bin
- doexe ccache
- doman ccache.1
- dodoc COPYING README
-
- diropts -m0755
- dodir /usr/lib/ccache/bin
- keepdir /usr/lib/ccache/bin
-
- exeinto /usr/bin
- doexe ${FILESDIR}/ccache-config
-
- diropts -m0700
- dodir /root/.ccache
- keepdir /root/.ccache
-}
-
-pkg_preinst() {
- # Portage doesn't handle replacing a non-empty dir with a file!
- [ -e /usr/bin/ccache ] && rm -rf /usr/bin/ccache
- [ -e /usr/bin/ccache.backup ] && rm -rf /usr/bin/ccache.backup
-}
-
-pkg_postinst() {
- if [ "${ROOT}" = "/" ]; then
- einfo "Scanning for compiler front-ends..."
- /usr/bin/ccache-config --install-links
- /usr/bin/ccache-config --install-links ${CHOST}
- else
- ewarn "Install is incomplete; you must run the following commands:"
- ewarn " # ccache-config --install-links"
- ewarn " # ccache-config --install-links ${CHOST}"
- ewarn "after booting or chrooting to ${ROOT} to complete installation."
- fi
-
- einfo "To use ccache with **non-Portage** C compiling, add"
- einfo "/usr/lib/ccache/bin to the beginning of your path, before /usr/bin."
- einfo "Portage 2.0.46-r11+ will automatically take advantage of ccache with"
- einfo "no additional steps. If this is your first install of ccache, type"
- einfo "something like this to set a maximum cache size of 2GB:"
- einfo "# ccache -M 2G"
-}
-
diff --git a/dev-util/ccache/ccache-2.3.ebuild b/dev-util/ccache/ccache-2.3.ebuild
deleted file mode 100644
index 3741cba2480c..000000000000
--- a/dev-util/ccache/ccache-2.3.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/ccache/ccache-2.3.ebuild,v 1.24 2007/02/28 22:08:18 genstef Exp $
-
-DESCRIPTION="fast compiler cache"
-HOMEPAGE="http://ccache.samba.org/"
-SRC_URI="http://samba.org/ftp/ccache/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 mips ppc ppc64 s390 sh sparc x86"
-IUSE=""
-
-DEPEND="virtual/libc
- >=sys-apps/portage-2.0.46-r11"
-
-# Note: this version is designed to be auto-detected and used if
-# you happen to have Portage 2.0.X+ installed.
-
-src_install() {
- dobin ccache || die
- doman ccache.1
- dodoc README
- dohtml web/*.html
-
- diropts -m0755
- dodir /usr/lib/ccache/bin
- keepdir /usr/lib/ccache/bin
-
- exeinto /usr/bin
- doexe ${FILESDIR}/ccache-config
-
- diropts -m0700
- if use ppc-macos; then
- dodir /var/root/.ccache
- keepdir /var/root/.ccache
- else
- dodir /root/.ccache
- keepdir /root/.ccache
- fi
-}
-
-pkg_preinst() {
- # Portage doesn't handle replacing a non-empty dir with a file!
- [[ -e ${ROOT}/usr/bin/ccache ]] && rm -r "${ROOT}"/usr/bin/ccache
- [[ -e ${ROOT}/usr/bin/ccache.backup ]] && rm -r "${ROOT}"/usr/bin/ccache.backup
-}
-
-pkg_postinst() {
- if [[ ${ROOT} = "/" ]] ; then
- einfo "Scanning for compiler front-ends..."
- /usr/bin/ccache-config --install-links
- /usr/bin/ccache-config --install-links ${CHOST}
- else
- ewarn "Install is incomplete; you must run the following commands:"
- ewarn " # ccache-config --install-links"
- ewarn " # ccache-config --install-links ${CHOST}"
- ewarn "after booting or chrooting to ${ROOT} to complete installation."
- fi
-
- einfo "To use ccache with **non-Portage** C compiling, add"
- einfo "/usr/lib/ccache/bin to the beginning of your path, before /usr/bin."
- einfo "Portage 2.0.46-r11+ will automatically take advantage of ccache with"
- einfo "no additional steps. If this is your first install of ccache, type"
- einfo "something like this to set a maximum cache size of 2GB:"
- einfo "# ccache -M 2G"
-}
diff --git a/dev-util/ccache/ccache-2.4-r1.ebuild b/dev-util/ccache/ccache-2.4-r1.ebuild
deleted file mode 100644
index a72edbffc814..000000000000
--- a/dev-util/ccache/ccache-2.4-r1.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/ccache/ccache-2.4-r1.ebuild,v 1.3 2007/02/28 22:08:18 genstef Exp $
-
-inherit eutils
-
-DESCRIPTION="fast compiler cache"
-HOMEPAGE="http://ccache.samba.org/"
-SRC_URI="http://samba.org/ftp/ccache/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~x86-fbsd"
-IUSE=""
-
-# Note: this version is designed to be auto-detected and used if
-# you happen to have Portage 2.0.X+ installed.
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- epatch ${FILESDIR}/ccache-2.4-respectflags.patch
-}
-
-src_install() {
- dobin ccache || die
- doman ccache.1
- dodoc README
- dohtml web/*.html
-
- diropts -m0755
- dodir /usr/lib/ccache/bin
- keepdir /usr/lib/ccache/bin
-
- exeinto /usr/bin
- doexe ${FILESDIR}/ccache-config
-
- diropts -m0700
- if use ppc-macos; then
- dodir /var/root/.ccache
- keepdir /var/root/.ccache
- else
- dodir /root/.ccache
- keepdir /root/.ccache
- fi
-}
-
-pkg_preinst() {
- # Portage doesn't handle replacing a non-empty dir with a file!
- [[ -e ${ROOT}/usr/bin/ccache ]] && rm -r "${ROOT}"/usr/bin/ccache
- [[ -e ${ROOT}/usr/bin/ccache.backup ]] && rm -r "${ROOT}"/usr/bin/ccache.backup
-}
-
-pkg_postinst() {
- if [[ ${ROOT} = "/" ]] ; then
- einfo "Scanning for compiler front-ends..."
- /usr/bin/ccache-config --install-links
- /usr/bin/ccache-config --install-links ${CHOST}
- else
- ewarn "Install is incomplete; you must run the following commands:"
- ewarn " # ccache-config --install-links"
- ewarn " # ccache-config --install-links ${CHOST}"
- ewarn "after booting or chrooting to ${ROOT} to complete installation."
- fi
-
- einfo "To use ccache with **non-Portage** C compiling, add"
- einfo "/usr/lib/ccache/bin to the beginning of your path, before /usr/bin."
- einfo "Portage 2.0.46-r11+ will automatically take advantage of ccache with"
- einfo "no additional steps. If this is your first install of ccache, type"
- einfo "something like this to set a maximum cache size of 2GB:"
- einfo "# ccache -M 2G"
-}
diff --git a/dev-util/ccache/ccache-2.4-r2.ebuild b/dev-util/ccache/ccache-2.4-r2.ebuild
deleted file mode 100644
index 13cd0c5592e0..000000000000
--- a/dev-util/ccache/ccache-2.4-r2.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/ccache/ccache-2.4-r2.ebuild,v 1.4 2007/02/28 22:08:18 genstef Exp $
-
-inherit eutils autotools
-
-DESCRIPTION="fast compiler cache"
-HOMEPAGE="http://ccache.samba.org/"
-SRC_URI="http://samba.org/ftp/ccache/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~hppa ia64 m68k ~mips ~ppc ~ppc64 s390 sh ~sparc ~x86 ~x86-fbsd"
-IUSE=""
-
-# Note: this version is designed to be auto-detected and used if
-# you happen to have Portage 2.0.X+ installed.
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- epatch ${FILESDIR}/ccache-2.4-respectflags.patch
- epatch ${FILESDIR}/ccache-2.4-utimes.patch
- eautoconf
-}
-
-src_install() {
- dobin ccache || die
- doman ccache.1
- dodoc README
- dohtml web/*.html
-
- diropts -m0755
- dodir /usr/lib/ccache/bin
- keepdir /usr/lib/ccache/bin
-
- exeinto /usr/bin
- doexe ${FILESDIR}/ccache-config
-
- diropts -m0700
- if use ppc-macos; then
- dodir /var/root/.ccache
- keepdir /var/root/.ccache
- else
- dodir /root/.ccache
- keepdir /root/.ccache
- fi
-}
-
-pkg_preinst() {
- # Portage doesn't handle replacing a non-empty dir with a file!
- [[ -e ${ROOT}/usr/bin/ccache ]] && rm -r "${ROOT}"/usr/bin/ccache
- [[ -e ${ROOT}/usr/bin/ccache.backup ]] && rm -r "${ROOT}"/usr/bin/ccache.backup
-}
-
-pkg_postinst() {
- if [[ ${ROOT} = "/" ]] ; then
- einfo "Scanning for compiler front-ends..."
- /usr/bin/ccache-config --install-links
- /usr/bin/ccache-config --install-links ${CHOST}
- else
- ewarn "Install is incomplete; you must run the following commands:"
- ewarn " # ccache-config --install-links"
- ewarn " # ccache-config --install-links ${CHOST}"
- ewarn "after booting or chrooting to ${ROOT} to complete installation."
- fi
-
- einfo "To use ccache with **non-Portage** C compiling, add"
- einfo "/usr/lib/ccache/bin to the beginning of your path, before /usr/bin."
- einfo "Portage 2.0.46-r11+ will automatically take advantage of ccache with"
- einfo "no additional steps. If this is your first install of ccache, type"
- einfo "something like this to set a maximum cache size of 2GB:"
- einfo "# ccache -M 2G"
-}
diff --git a/dev-util/ccache/ccache-2.4.ebuild b/dev-util/ccache/ccache-2.4.ebuild
deleted file mode 100644
index e3cc678cc3cf..000000000000
--- a/dev-util/ccache/ccache-2.4.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/ccache/ccache-2.4.ebuild,v 1.4 2007/02/28 22:08:18 genstef Exp $
-
-DESCRIPTION="fast compiler cache"
-HOMEPAGE="http://ccache.samba.org/"
-SRC_URI="http://samba.org/ftp/ccache/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
-IUSE=""
-
-DEPEND="virtual/libc"
-
-# Note: this version is designed to be auto-detected and used if
-# you happen to have Portage 2.0.X+ installed.
-
-src_install() {
- dobin ccache || die
- doman ccache.1
- dodoc README
- dohtml web/*.html
-
- diropts -m0755
- dodir /usr/lib/ccache/bin
- keepdir /usr/lib/ccache/bin
-
- exeinto /usr/bin
- doexe ${FILESDIR}/ccache-config
-
- diropts -m0700
- if use ppc-macos; then
- dodir /var/root/.ccache
- keepdir /var/root/.ccache
- else
- dodir /root/.ccache
- keepdir /root/.ccache
- fi
-}
-
-pkg_preinst() {
- # Portage doesn't handle replacing a non-empty dir with a file!
- [[ -e ${ROOT}/usr/bin/ccache ]] && rm -r "${ROOT}"/usr/bin/ccache
- [[ -e ${ROOT}/usr/bin/ccache.backup ]] && rm -r "${ROOT}"/usr/bin/ccache.backup
-}
-
-pkg_postinst() {
- if [[ ${ROOT} = "/" ]] ; then
- einfo "Scanning for compiler front-ends..."
- /usr/bin/ccache-config --install-links
- /usr/bin/ccache-config --install-links ${CHOST}
- else
- ewarn "Install is incomplete; you must run the following commands:"
- ewarn " # ccache-config --install-links"
- ewarn " # ccache-config --install-links ${CHOST}"
- ewarn "after booting or chrooting to ${ROOT} to complete installation."
- fi
-
- einfo "To use ccache with **non-Portage** C compiling, add"
- einfo "/usr/lib/ccache/bin to the beginning of your path, before /usr/bin."
- einfo "Portage 2.0.46-r11+ will automatically take advantage of ccache with"
- einfo "no additional steps. If this is your first install of ccache, type"
- einfo "something like this to set a maximum cache size of 2GB:"
- einfo "# ccache -M 2G"
-}
diff --git a/dev-util/ccache/files/digest-ccache-2.2 b/dev-util/ccache/files/digest-ccache-2.2
deleted file mode 100644
index 01040468c321..000000000000
--- a/dev-util/ccache/files/digest-ccache-2.2
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 3b98afe5e966ccd37f4d2b102d6ac8ac ccache-2.2.tar.gz 81666
-RMD160 b11b73da75dda1330046c840e211b5c23b83ac79 ccache-2.2.tar.gz 81666
-SHA256 3bd9b69f7129bcb5b40ed1fb9851ac1a0b21edb7cbc41a1f76db30867fbd8c41 ccache-2.2.tar.gz 81666
diff --git a/dev-util/ccache/files/digest-ccache-2.3 b/dev-util/ccache/files/digest-ccache-2.3
deleted file mode 100644
index 3fe390cb0e62..000000000000
--- a/dev-util/ccache/files/digest-ccache-2.3
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 5e4afc0b170bf282d1813aeaf3d577d2 ccache-2.3.tar.gz 84386
-RMD160 dc922891110a47271c8fa46f35b6bbd4d67dbfa7 ccache-2.3.tar.gz 84386
-SHA256 7d88dbae69cb3490360b05b4040e4640509eec55ea87de15f4c659a24345cfef ccache-2.3.tar.gz 84386
diff --git a/dev-util/ccache/files/digest-ccache-2.4 b/dev-util/ccache/files/digest-ccache-2.4
deleted file mode 100644
index 3615329bad9d..000000000000
--- a/dev-util/ccache/files/digest-ccache-2.4
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 73c1ed1e767c1752dd0f548ec1e66ce7 ccache-2.4.tar.gz 86363
-RMD160 43a0647c7faf659121a53a92ec45d245b8140124 ccache-2.4.tar.gz 86363
-SHA256 435f862ca5168c346f5aa9e242174bbf19a5abcaeecfceeac2f194558827aaa0 ccache-2.4.tar.gz 86363
diff --git a/dev-util/ccache/files/digest-ccache-2.4-r1 b/dev-util/ccache/files/digest-ccache-2.4-r1
deleted file mode 100644
index 3615329bad9d..000000000000
--- a/dev-util/ccache/files/digest-ccache-2.4-r1
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 73c1ed1e767c1752dd0f548ec1e66ce7 ccache-2.4.tar.gz 86363
-RMD160 43a0647c7faf659121a53a92ec45d245b8140124 ccache-2.4.tar.gz 86363
-SHA256 435f862ca5168c346f5aa9e242174bbf19a5abcaeecfceeac2f194558827aaa0 ccache-2.4.tar.gz 86363
diff --git a/dev-util/ccache/files/digest-ccache-2.4-r2 b/dev-util/ccache/files/digest-ccache-2.4-r2
deleted file mode 100644
index 3615329bad9d..000000000000
--- a/dev-util/ccache/files/digest-ccache-2.4-r2
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 73c1ed1e767c1752dd0f548ec1e66ce7 ccache-2.4.tar.gz 86363
-RMD160 43a0647c7faf659121a53a92ec45d245b8140124 ccache-2.4.tar.gz 86363
-SHA256 435f862ca5168c346f5aa9e242174bbf19a5abcaeecfceeac2f194558827aaa0 ccache-2.4.tar.gz 86363