diff options
author | Ulrich Müller <ulm@gentoo.org> | 2011-04-17 15:32:04 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2011-04-17 15:32:04 +0000 |
commit | 0120e9f0f93abc442cb03de6e47897a94e222e61 (patch) | |
tree | f3e9fe800598a8e1861f5695e7670b7681c3f5a8 /app-emacs | |
parent | x86 stable per bug 349268 (diff) | |
download | gentoo-2-0120e9f0f93abc442cb03de6e47897a94e222e61.tar.gz gentoo-2-0120e9f0f93abc442cb03de6e47897a94e222e61.tar.bz2 gentoo-2-0120e9f0f93abc442cb03de6e47897a94e222e61.zip |
Version bump, bug 363923.
(Portage version: 2.1.9.46/cvs/Linux x86_64)
Diffstat (limited to 'app-emacs')
-rw-r--r-- | app-emacs/magit/ChangeLog | 9 | ||||
-rw-r--r-- | app-emacs/magit/magit-1.0.0.ebuild | 29 |
2 files changed, 36 insertions, 2 deletions
diff --git a/app-emacs/magit/ChangeLog b/app-emacs/magit/ChangeLog index f3792acf170c..3eef06f380a6 100644 --- a/app-emacs/magit/ChangeLog +++ b/app-emacs/magit/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-emacs/magit -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/magit/ChangeLog,v 1.5 2010/07/18 06:30:51 fauli Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/magit/ChangeLog,v 1.6 2011/04/17 15:32:02 ulm Exp $ + +*magit-1.0.0 (17 Apr 2011) + + 17 Apr 2011; Ulrich Mueller <ulm@gentoo.org> +magit-1.0.0.ebuild: + Version bump, bug 363923. 18 Jul 2010; Christian Faulhammer <fauli@gentoo.org> -magit-0.7.ebuild: clean up diff --git a/app-emacs/magit/magit-1.0.0.ebuild b/app-emacs/magit/magit-1.0.0.ebuild new file mode 100644 index 000000000000..b7cb7bb8737f --- /dev/null +++ b/app-emacs/magit/magit-1.0.0.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/magit/magit-1.0.0.ebuild,v 1.1 2011/04/17 15:32:04 ulm Exp $ + +EAPI=4 + +inherit elisp + +DESCRIPTION="An Emacs mode for GIT" +HOMEPAGE="http://philjackson.github.com/magit/" +SRC_URI="http://github.com/downloads/philjackson/magit/${P}.tar.gz" + +LICENSE="GPL-3 FDL-1.2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +SITEFILE="50magit-gentoo.el" + +src_compile() { + default +} + +src_install() { + elisp-install ${PN} magit{,-svn,-topgit,-key-mode}.{el,elc} || die + elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die + doinfo magit.info + dodoc README.md +} |