summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2009-04-16 08:42:38 +0000
committerUlrich Müller <ulm@gentoo.org>2009-04-16 08:42:38 +0000
commit80e2531c5821c455247427292e3f38d66cbdbb91 (patch)
tree0caf1085a7eccc29f2714ddf150099a6b70a9345 /app-emacs/company-mode
parentdo not run ldconfig at install, bug #266220 (diff)
downloadgentoo-2-80e2531c5821c455247427292e3f38d66cbdbb91.tar.gz
gentoo-2-80e2531c5821c455247427292e3f38d66cbdbb91.tar.bz2
gentoo-2-80e2531c5821c455247427292e3f38d66cbdbb91.zip
Version bump. Remove old.
(Portage version: 2.2_rc30/cvs/Linux i686)
Diffstat (limited to 'app-emacs/company-mode')
-rw-r--r--app-emacs/company-mode/ChangeLog8
-rw-r--r--app-emacs/company-mode/company-mode-0.2.1.ebuild36
-rw-r--r--app-emacs/company-mode/company-mode-0.3.1.ebuild (renamed from app-emacs/company-mode/company-mode-0.3.ebuild)4
3 files changed, 9 insertions, 39 deletions
diff --git a/app-emacs/company-mode/ChangeLog b/app-emacs/company-mode/ChangeLog
index ca196218f547..ac6260db0c3e 100644
--- a/app-emacs/company-mode/ChangeLog
+++ b/app-emacs/company-mode/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for app-emacs/company-mode
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emacs/company-mode/ChangeLog,v 1.2 2009/04/14 15:06:39 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emacs/company-mode/ChangeLog,v 1.3 2009/04/16 08:42:38 ulm Exp $
+
+*company-mode-0.3.1 (16 Apr 2009)
+
+ 16 Apr 2009; Ulrich Mueller <ulm@gentoo.org> -company-mode-0.2.1.ebuild,
+ -company-mode-0.3.ebuild, +company-mode-0.3.1.ebuild:
+ Version bump. Remove old.
*company-mode-0.3 (14 Apr 2009)
diff --git a/app-emacs/company-mode/company-mode-0.2.1.ebuild b/app-emacs/company-mode/company-mode-0.2.1.ebuild
deleted file mode 100644
index 9c9527a4da9c..000000000000
--- a/app-emacs/company-mode/company-mode-0.2.1.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emacs/company-mode/company-mode-0.2.1.ebuild,v 1.1 2009/04/08 16:20:59 ulm Exp $
-
-EAPI=2
-NEED_EMACS=22
-
-inherit elisp
-
-DESCRIPTION="In-buffer completion front-end"
-HOMEPAGE="http://nschum.de/src/emacs/company-mode/"
-SRC_URI="http://nschum.de/src/emacs/${PN}/company-${PV}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="semantic"
-
-DEPEND="semantic? ( app-emacs/cedet )"
- #oddmuse? ( app-emacs/oddmuse )
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}"
-SITEFILE="50${PN}-gentoo.el"
-
-src_configure() {
- # Disable backends that require extra dependencies, unless they are
- # selected by the respective USE flag
- local backend
- for backend in oddmuse semantic; do
- [ "${backend}" = semantic ] && use "${backend}" && continue
- elog "Disabling ${backend} backend"
- rm "company-${backend}.el" || die
- sed -i -e "s/company-${backend} *//" company.el || die
- done
-}
diff --git a/app-emacs/company-mode/company-mode-0.3.ebuild b/app-emacs/company-mode/company-mode-0.3.1.ebuild
index 8b400f4459a3..b5dcfc12baa8 100644
--- a/app-emacs/company-mode/company-mode-0.3.ebuild
+++ b/app-emacs/company-mode/company-mode-0.3.1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emacs/company-mode/company-mode-0.3.ebuild,v 1.1 2009/04/14 15:06:39 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emacs/company-mode/company-mode-0.3.1.ebuild,v 1.1 2009/04/16 08:42:38 ulm Exp $
EAPI=2
NEED_EMACS=22
@@ -27,7 +27,7 @@ SITEFILE="50${PN}-gentoo.el"
src_configure() {
# Disable semantic backend, unless selected by its USE flag
if ! use semantic; then
- elog "Disabling semantic backend"
+ elog "Disabling semantic backend, as requested by USE=-semantic"
rm "company-semantic.el" || die
sed -i -e "s/company-semantic *//" company.el || die
fi