summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2010-10-14 17:05:53 +0000
committerUlrich Müller <ulm@gentoo.org>2010-10-14 17:05:53 +0000
commite14f5ffe2fc6ad18c0b8fa4c419058980b4b937d (patch)
treece7ebcd3baef43846b7f597c72329688afec19b6 /app-emacs/cedet
parentstable ppc, bug 339778 (diff)
downloadhistorical-e14f5ffe2fc6ad18c0b8fa4c419058980b4b937d.tar.gz
historical-e14f5ffe2fc6ad18c0b8fa4c419058980b4b937d.tar.bz2
historical-e14f5ffe2fc6ad18c0b8fa4c419058980b4b937d.zip
Remove old.
Package-Manager: portage-2.1.9.18/cvs/Linux x86_64
Diffstat (limited to 'app-emacs/cedet')
-rw-r--r--app-emacs/cedet/ChangeLog8
-rw-r--r--app-emacs/cedet/cedet-1.0_pre6.ebuild83
-rw-r--r--app-emacs/cedet/cedet-1.0_pre7-r1.ebuild83
-rw-r--r--app-emacs/cedet/files/50cedet-gentoo-1.0_pre6.el10
-rw-r--r--app-emacs/cedet/files/cedet-1.0_pre6-fix-eieio-comp.patch18
-rw-r--r--app-emacs/cedet/files/cedet-1.0_pre7-cogre-srecode-init.patch14
6 files changed, 7 insertions, 209 deletions
diff --git a/app-emacs/cedet/ChangeLog b/app-emacs/cedet/ChangeLog
index 80c267c81ea5..781391e24fdd 100644
--- a/app-emacs/cedet/ChangeLog
+++ b/app-emacs/cedet/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for app-emacs/cedet
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emacs/cedet/ChangeLog,v 1.60 2010/10/14 16:54:16 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emacs/cedet/ChangeLog,v 1.61 2010/10/14 17:05:53 ulm Exp $
+
+ 14 Oct 2010; Ulrich Mueller <ulm@gentoo.org> -cedet-1.0_pre6.ebuild,
+ -cedet-1.0_pre7-r1.ebuild, -files/cedet-1.0_pre6-fix-eieio-comp.patch,
+ -files/50cedet-gentoo-1.0_pre6.el,
+ -files/cedet-1.0_pre7-cogre-srecode-init.patch:
+ Remove old.
14 Oct 2010; Brent Baude <ranger@gentoo.org> cedet-1.0.ebuild:
stable ppc, bug 338525
diff --git a/app-emacs/cedet/cedet-1.0_pre6.ebuild b/app-emacs/cedet/cedet-1.0_pre6.ebuild
deleted file mode 100644
index 7cd7e4d4c09f..000000000000
--- a/app-emacs/cedet/cedet-1.0_pre6.ebuild
+++ /dev/null
@@ -1,83 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emacs/cedet/cedet-1.0_pre6.ebuild,v 1.12 2010/09/11 10:20:20 ulm Exp $
-
-NEED_EMACS=22
-
-inherit elisp
-
-MY_P=${P/_}
-DESCRIPTION="CEDET: Collection of Emacs Development Environment Tools"
-HOMEPAGE="http://cedet.sourceforge.net/"
-SRC_URI="mirror://sourceforge/cedet/${MY_P}.tar.gz"
-
-LICENSE="GPL-2 FDL-1.2"
-SLOT="0"
-KEYWORDS="amd64 ppc sparc x86 ~amd64-linux ~x86-linux ~x86-macos ~sparc-solaris"
-IUSE=""
-
-DEPEND=""
-RDEPEND="!app-emacs/semantic
- !app-emacs/eieio
- !app-emacs/speedbar"
-
-S="${WORKDIR}/${MY_P}"
-ELISP_PATCHES="${P}-fix-eieio-comp.patch"
-SITEFILE="50${PN}-gentoo-${PV}.el"
-
-src_compile() {
- emake -j1 \
- EMACS="${EMACS}" \
- EMACSFLAGS="${EMACSFLAGS}" \
- || die "emake failed"
-}
-
-src_test() {
- emake -j1 \
- EMACS="${EMACS}" \
- EMACSFLAGS="${EMACSFLAGS} -L srecode" \
- utest || die "make utest failed"
-}
-
-src_install() {
- local target file dir
- find . -type d -name tests -prune -o -type f -print | while read target
- do
- file=${target##*/}
- dir=${target%/*}; dir=${dir#./}
- case "${file}" in
- *~ | Makefile | *.texi | *-script | PRERELEASE_CHECKLIST \
- | Project.ede | USING_CEDET_FROM_CVS | grammar-fw-ov.txt)
- ;;
- ChangeLog | README | AUTHORS | *NEWS | INSTALL \
- | renamelist.txt | semanticdb.sh)
- docinto "${dir}"
- dodoc "${target}" || die ;;
- *.el | *.by | *.wy)
- # install grammar sources along with the elisp files, since
- # the location where semantic expects them is not configurable
- insinto "${SITELISP}/${PN}/${dir}"
- doins "${target}" || die ;;
- *.elc)
- # we are in a subshell, so collecting in a variable won't work
- echo "${target}" >>"${T}/elc-list.txt" ;;
- *.srt | *.xpm)
- insinto "${SITEETC}/${PN}/${dir}"
- doins "${target}" || die ;;
- *.info* | grammar-fw-ov.png)
- doinfo "${target}" || die ;;
- *)
- die "Unrecognised file ${target}" ;;
- esac
- done
-
- # make sure that the compiled elisp files have a later time stamp than
- # the corresponding sources, in order to suppress warnings at run time
- while read target; do
- dir=${target%/*}; dir=${dir#./}
- insinto "${SITELISP}/${PN}/${dir}"
- doins "${target}" || die
- done <"${T}/elc-list.txt"
-
- elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die
-}
diff --git a/app-emacs/cedet/cedet-1.0_pre7-r1.ebuild b/app-emacs/cedet/cedet-1.0_pre7-r1.ebuild
deleted file mode 100644
index be9e118a8ddd..000000000000
--- a/app-emacs/cedet/cedet-1.0_pre7-r1.ebuild
+++ /dev/null
@@ -1,83 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emacs/cedet/cedet-1.0_pre7-r1.ebuild,v 1.7 2010/09/11 10:20:20 ulm Exp $
-
-NEED_EMACS=22
-
-inherit elisp
-
-MY_P=${P/_}
-DESCRIPTION="CEDET: Collection of Emacs Development Environment Tools"
-HOMEPAGE="http://cedet.sourceforge.net/"
-SRC_URI="mirror://sourceforge/cedet/${MY_P}.tar.gz"
-
-LICENSE="GPL-2 FDL-1.2"
-SLOT="0"
-KEYWORDS="amd64 ppc sparc x86 ~amd64-linux ~x86-linux ~x86-macos ~sparc-solaris"
-IUSE=""
-
-DEPEND=""
-RDEPEND="!app-emacs/semantic
- !app-emacs/eieio
- !app-emacs/speedbar"
-
-S="${WORKDIR}/${MY_P}"
-ELISP_PATCHES="${P}-cogre-srecode-init.patch"
-SITEFILE="50${PN}-gentoo.el"
-
-src_compile() {
- emake -j1 \
- EMACS="${EMACS}" \
- EMACSFLAGS="${EMACSFLAGS}" \
- || die "emake failed"
-}
-
-src_test() {
- emake -j1 \
- EMACS="${EMACS}" \
- EMACSFLAGS="${EMACSFLAGS} -L srecode" \
- utest || die "make utest failed"
-}
-
-src_install() {
- local target file dir
- find . -type d -name tests -prune -o -type f -print | while read target
- do
- file=${target##*/}
- dir=${target%/*}; dir=${dir#./}
- case "${file}" in
- *~ | Makefile | *.texi | *-script | PRERELEASE_CHECKLIST \
- | Project.ede | USING_CEDET_FROM_CVS | grammar-fw-ov.txt)
- ;;
- ChangeLog | README | AUTHORS | *NEWS | INSTALL \
- | renamelist.txt | semanticdb.sh)
- docinto "${dir}"
- dodoc "${target}" || die ;;
- *.el | *.by | *.wy)
- # install grammar sources along with the elisp files, since
- # the location where semantic expects them is not configurable
- insinto "${SITELISP}/${PN}/${dir}"
- doins "${target}" || die ;;
- *.elc)
- # we are in a subshell, so collecting in a variable won't work
- echo "${target}" >>"${T}/elc-list.txt" ;;
- *.srt | *.xpm)
- insinto "${SITEETC}/${PN}/${dir}"
- doins "${target}" || die ;;
- *.info* | grammar-fw-ov.png)
- doinfo "${target}" || die ;;
- *)
- die "Unrecognised file ${target}" ;;
- esac
- done
-
- # make sure that the compiled elisp files have a later time stamp than
- # the corresponding sources, in order to suppress warnings at run time
- while read target; do
- dir=${target%/*}; dir=${dir#./}
- insinto "${SITELISP}/${PN}/${dir}"
- doins "${target}" || die
- done <"${T}/elc-list.txt"
-
- elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die
-}
diff --git a/app-emacs/cedet/files/50cedet-gentoo-1.0_pre6.el b/app-emacs/cedet/files/50cedet-gentoo-1.0_pre6.el
deleted file mode 100644
index 6b7abf49da30..000000000000
--- a/app-emacs/cedet/files/50cedet-gentoo-1.0_pre6.el
+++ /dev/null
@@ -1,10 +0,0 @@
-(load "@SITELISP@/common/cedet" nil t)
-(add-to-list 'image-load-path "@SITEETC@/common/icons" t)
-(setq srecode-map-load-path
- (list "@SITEETC@/srecode/templates"
- "@SITEETC@/ede/templates"
- (expand-file-name "~/.srecode")))
-
-;; If you wish to customize CEDET, you will need to follow the
-;; directions in the INSTALL (installed in the documentation) file and
-;; customize your ~/.emacs /before/ site-gentoo is loaded.
diff --git a/app-emacs/cedet/files/cedet-1.0_pre6-fix-eieio-comp.patch b/app-emacs/cedet/files/cedet-1.0_pre6-fix-eieio-comp.patch
deleted file mode 100644
index 6dcd2b2235d5..000000000000
--- a/app-emacs/cedet/files/cedet-1.0_pre6-fix-eieio-comp.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-http://bugs.gentoo.org/280984
-Fix byte-compilation of EIEIO with Emacs 23.1.50 (as of 2009-07-23).
-Patch from upstream CVS.
-
---- cedet/eieio/eieio-comp.el 2008/09/29 00:18:57 1.14
-+++ cedet/eieio/eieio-comp.el 2009/07/27 11:32:06 1.15
-@@ -78,7 +78,10 @@
- (class (if (listp arg1) (nth 1 arg1) nil))
- (my-outbuffer (if (eval-when-compile
- (string-match "XEmacs" emacs-version))
-- byte-compile-outbuffer outbuffer))
-+ byte-compile-outbuffer
-+ (condition-case nil
-+ bytecomp-outbuffer
-+ (error outbuffer))))
- )
- (let ((name (format "%s::%s" (or class "#<generic>") meth)))
- (if byte-compile-verbose
diff --git a/app-emacs/cedet/files/cedet-1.0_pre7-cogre-srecode-init.patch b/app-emacs/cedet/files/cedet-1.0_pre7-cogre-srecode-init.patch
deleted file mode 100644
index 8447542d5216..000000000000
--- a/app-emacs/cedet/files/cedet-1.0_pre7-cogre-srecode-init.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-http://bugs.gentoo.org/307321
-http://sourceforge.net/mailarchive/message.php?msg_name=4B91BD19.2010900%40siege-engine.com
-
---- cedet-1.0pre7-orig/cogre/cogre-srecode.el
-+++ cedet-1.0pre7/cogre/cogre-srecode.el
-@@ -71,7 +71,7 @@
- ))
-
- ;;;###autoload
--(eval-after-load "srecode-map" (cogre-srecode-setup))
-+(eval-after-load "srecode-map" '(cogre-srecode-setup))
-
- ;;;###autoload
- (defun srecode-semantic-handle-:dot (dict)