# ChangeLog for app-emacs/cedet
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emacs/cedet/ChangeLog,v 1.19 2007/03/27 18:49:09 welp Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emacs/cedet/ChangeLog,v 1.20 2007/03/30 15:20:14 opfer Exp $
+
+ 30 Mar 2007; Christian Faulhammer <opfer@gentoo.org>
+ -cedet-1.0_beta3.ebuild, -cedet-1.0_pre3.ebuild,
+ -cedet-1.0_pre3-r1.ebuild:
+ clean up
27 Mar 2007; Peter Weller <welp@gentoo.org> cedet-1.0_pre3-r2.ebuild:
Stable on amd64 wrt bug 168422
+++ /dev/null
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emacs/cedet/cedet-1.0_beta3.ebuild,v 1.8 2005/04/24 10:59:51 hansmi Exp $
-
-inherit elisp
-
-MY_SUBPV=a
-MY_PV=${PV:0:3}${PV:4:5}${MY_SUBPV}
-
-IUSE=""
-DESCRIPTION="CEDET: Collection of Emacs Development Tools"
-HOMEPAGE="http://cedet.sourceforge.net/"
-SRC_URI="mirror://sourceforge/cedet/${PN}-${MY_PV}.tar.gz"
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="x86 ppc amd64"
-DEPEND="virtual/emacs
- !app-emacs/semantic
- !app-emacs/eieio
- !app-emacs/speedbar"
-
-S="${WORKDIR}/${PN}-${MY_PV}"
-
-SITEFILE="60cedet-gentoo.el"
-
-src_compile() {
- make EMACS=/usr/bin/emacs || die
-}
-
-src_install() {
- dodir /usr/share/emacs/site-lisp/cedet
- tar --create --verbose \
- --exclude=Makefile \
- --exclude=\*texi \
- --exclude=\*info\* \
- --exclude=README \
- --exclude=INSTALL \
- --exclude=\*NEWS \
- --exclude=ChangeLog \
- --exclude=\*~ \
- . | tar --extract --directory ${D}/usr/share/emacs/site-lisp/cedet/
- dodoc INSTALL
- doinfo `find . -type f -name \*.info\*`
- # The following finds documentation in sub-directories and flattens
- # the path names for dodoc
- mkdir docs || true
- find . -type f \( -name ChangeLog -o -name README -o -name AUTHORS -o -name \*NEWS \) -print \
- | sed -e 's,^./\(.*\)/\(.*\),cp \0 docs/\2.\1,g' \
- | sh -x
- dodoc docs/*
- elisp-site-file-install ${FILESDIR}/${SITEFILE}
-}
+++ /dev/null
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emacs/cedet/cedet-1.0_pre3-r1.ebuild,v 1.2 2006/08/09 05:17:14 mkennedy Exp $
-
-inherit elisp eutils
-
-MY_PV=${PV:0:3}${PV:4:5}
-
-IUSE=""
-DESCRIPTION="CEDET: Collection of Emacs Development Tools"
-HOMEPAGE="http://cedet.sourceforge.net/"
-SRC_URI="mirror://sourceforge/cedet/${PN}-${MY_PV}.tar.gz"
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~x86 ~ppc ~amd64 ~ppc-macos"
-DEPEND="virtual/emacs
- !app-emacs/semantic
- !app-emacs/eieio
- !app-emacs/speedbar"
-
-S="${WORKDIR}/${PN}-${MY_PV}"
-
-SITEFILE="60cedet-gentoo.el"
-
-src_unpack() {
- unpack ${A}
- epatch ${FILESDIR}/1.0_pre3-eieio-tests-gentoo.patch # Bug #124598
- epatch ${FILESDIR}/1.0_pre3-sb-info-circular-dep-gentoo.patch # Bug #138190
-}
-
-src_compile() {
- make EMACS=/usr/bin/emacs || die
-}
-
-src_install() {
- find ${S} -type f -print \
- | while read target; do
- local directory=`dirname $target` file=`basename $target`
- local sub_directory=`basename $directory`
- case $file in
- *~ | Makefile | *.texi | *-script | PRERELEASE_CHECKLIST | Project.ede)
- rm -f $file
- ;;
- ChangeLog | README | AUTHORS | *NEWS | INSTALL)
- docinto $sub_directory
- dodoc $target
- ;;
- *.png)
- insinto /usr/share/doc/${PF}/$sub_directory
- doins $target
- ;;
- IMPLICIT_TARGETS)
- ;;
- *.el | *.elc)
- insinto /usr/share/emacs/site-lisp/cedet/$sub_directory
- doins $target
- ;;
- *.info*)
- doinfo $target
- ;;
- *)
- insinto /usr/share/emacs/site-lisp/cedet/$sub_directory
- doins $target
- echo $target >>${S}/IMPLICIT_TARGETS
- ;;
- esac
- done
- elisp-site-file-install ${FILESDIR}/${SITEFILE}
-}
+++ /dev/null
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emacs/cedet/cedet-1.0_pre3.ebuild,v 1.3 2005/09/06 05:30:54 mkennedy Exp $
-
-inherit elisp
-
-MY_PV=${PV:0:3}${PV:4:5}
-
-IUSE=""
-DESCRIPTION="CEDET: Collection of Emacs Development Tools"
-HOMEPAGE="http://cedet.sourceforge.net/"
-SRC_URI="mirror://sourceforge/cedet/${PN}-${MY_PV}.tar.gz"
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="x86 ppc amd64 ~ppc-macos"
-DEPEND="virtual/emacs
- !app-emacs/semantic
- !app-emacs/eieio
- !app-emacs/speedbar"
-
-S="${WORKDIR}/${PN}-${MY_PV}"
-
-SITEFILE="60cedet-gentoo.el"
-
-src_compile() {
- make EMACS=/usr/bin/emacs || die
-}
-
-src_install() {
- find ${S} -type f -print \
- | while read target; do
- local directory=`dirname $target` file=`basename $target`
- local sub_directory=`basename $directory`
- case $file in
- *~ | Makefile | *.texi | *-script | PRERELEASE_CHECKLIST | Project.ede)
- rm -f $file
- ;;
- ChangeLog | README | AUTHORS | *NEWS | INSTALL)
- docinto $sub_directory
- dodoc $target
- ;;
- *.png)
- insinto /usr/share/doc/${PF}/$sub_directory
- doins $target
- ;;
- IMPLICIT_TARGETS)
- ;;
- *.el | *.elc)
- insinto /usr/share/emacs/site-lisp/cedet/$sub_directory
- doins $target
- ;;
- *.info*)
- doinfo $target
- ;;
- *)
- insinto /usr/share/emacs/site-lisp/cedet/$sub_directory
- doins $target
- echo $target >>${S}/IMPLICIT_TARGETS
- ;;
- esac
- done
- elisp-site-file-install ${FILESDIR}/${SITEFILE}
-}
+++ /dev/null
-MD5 968735c91b470baf3f8a51081bb995e3 cedet-1.0beta3a.tar.gz 1270296
-RMD160 b5c1da94ff1ff97a3a5cd64cafca5098f9cf06d2 cedet-1.0beta3a.tar.gz 1270296
-SHA256 09decfa251b3edfa36dfd14b9b261e8343f6ca58b967308c7e4c13a8840fd6ba cedet-1.0beta3a.tar.gz 1270296
+++ /dev/null
-MD5 2932fa2a8ab8fc63402ecb8194ca26b4 cedet-1.0pre3.tar.gz 1357388
-RMD160 5d71c5b966c162f86038e43988c5a890f43ccd2b cedet-1.0pre3.tar.gz 1357388
-SHA256 e62dfd7ce6761ee1df1b5abb17ce0693ecc59dfcc18803f00e1c5ce1f4096c82 cedet-1.0pre3.tar.gz 1357388
+++ /dev/null
-MD5 2932fa2a8ab8fc63402ecb8194ca26b4 cedet-1.0pre3.tar.gz 1357388
-RMD160 5d71c5b966c162f86038e43988c5a890f43ccd2b cedet-1.0pre3.tar.gz 1357388
-SHA256 e62dfd7ce6761ee1df1b5abb17ce0693ecc59dfcc18803f00e1c5ce1f4096c82 cedet-1.0pre3.tar.gz 1357388
# ChangeLog for app-emacs/pymacs
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emacs/pymacs/ChangeLog,v 1.15 2007/03/27 18:11:08 welp Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emacs/pymacs/ChangeLog,v 1.16 2007/03/30 15:25:02 opfer Exp $
+
+ 30 Mar 2007; Christian Faulhammer <opfer@gentoo.org> -pymacs-0.22.ebuild:
+ clean up
27 Mar 2007; Peter Weller <welp@gentoo.org> pymacs-0.22-r1.ebuild:
Stable on amd64 wrt bug 167807
+++ /dev/null
-MD5 73b7a641be100fd90a9be59ecf01fd98 Pymacs-0.22.tar.gz 363119
-RMD160 bb74fe8724f6c2a579724114356a2c49673d17fc Pymacs-0.22.tar.gz 363119
-SHA256 71b465f81366a4bea4a519781e1d9cb1ad067280e86f9b385d57b74c32bf7a75 Pymacs-0.22.tar.gz 363119
+++ /dev/null
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emacs/pymacs/pymacs-0.22.ebuild,v 1.8 2005/04/24 11:04:25 hansmi Exp $
-
-inherit distutils elisp
-
-DESCRIPTION="Pymacs is a tool that allows both-side communication beetween Python and Emacs-lisp"
-HOMEPAGE="http://pymacs.progiciels-bpi.ca"
-SRC_URI="http://pymacs.progiciels-bpi.ca/archives/${P/pymacs/Pymacs}.tar.gz"
-
-DEPEND="virtual/emacs
- virtual/python"
-LICENSE="as-is"
-IUSE="doc"
-SLOT="0"
-KEYWORDS="x86 ~ppc-macos amd64 ppc"
-
-S=${WORKDIR}/Pymacs-${PV}
-
-src_compile() {
- distutils_src_compile
- elisp-compile pymacs.el
-}
-
-src_install() {
- elisp-install ${PN} pymacs.el pymacs.elc
- elisp-site-file-install ${FILESDIR}/50pymacs-gentoo.el
- distutils_src_install
- if use doc ; then
- insinto /usr/share/doc/${PF}
- doins ./pymacs.pdf
- fi
- cd ${S}
- dodoc PKG-INFO MANIFEST README THANKS TODO THANKS-rebox ChangeLog ChangeLog-rebox
-}