diff options
author | Justin Lecher <jlec@gentoo.org> | 2014-01-06 20:12:09 +0100 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2014-01-06 20:12:09 +0100 |
commit | 219ea7e351f36b42a07a07af487d3e950ea156e5 (patch) | |
tree | 6f94ca5132a20b55adf9670c04d0571006f85ec9 /app-vim | |
parent | dev-lang/julia: Switch from git-2 to git-r3 (diff) | |
download | sci-219ea7e351f36b42a07a07af487d3e950ea156e5.tar.gz sci-219ea7e351f36b42a07a07af487d3e950ea156e5.tar.bz2 sci-219ea7e351f36b42a07a07af487d3e950ea156e5.zip |
app-vim/vim-gromacs: Switch from git-2 to git-r3
Package-Manager: portage-2.2.8
Diffstat (limited to 'app-vim')
-rw-r--r-- | app-vim/vim-gromacs/ChangeLog | 6 | ||||
-rw-r--r-- | app-vim/vim-gromacs/metadata.xml | 4 | ||||
-rw-r--r-- | app-vim/vim-gromacs/vim-gromacs-9999.ebuild | 10 |
3 files changed, 12 insertions, 8 deletions
diff --git a/app-vim/vim-gromacs/ChangeLog b/app-vim/vim-gromacs/ChangeLog index f360e2199..7d0a3889a 100644 --- a/app-vim/vim-gromacs/ChangeLog +++ b/app-vim/vim-gromacs/ChangeLog @@ -1,7 +1,11 @@ # ChangeLog for app-vim/vim-gromacs -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ + 06 Jan 2014; Justin Lecher <jlec@gentoo.org> vim-gromacs-9999.ebuild, + metadata.xml: + Switch from git-2 to git-r3 + 09 Oct 2012; Alexey Shvetsov <alexxy@gentoo.org> vim-gromacs-9999.ebuild: [app-vim/vim-gromacs] Fix typo diff --git a/app-vim/vim-gromacs/metadata.xml b/app-vim/vim-gromacs/metadata.xml index 9a7156930..046c58b8a 100644 --- a/app-vim/vim-gromacs/metadata.xml +++ b/app-vim/vim-gromacs/metadata.xml @@ -1,8 +1,8 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> <pkgmetadata> -<herd>sci-chemistry</herd> -<longdescription lang="en"> + <herd>sci-chemistry</herd> + <longdescription lang="en"> VIM syntax plugin which provides syntax highlighting for the gromacs files. </longdescription> </pkgmetadata> diff --git a/app-vim/vim-gromacs/vim-gromacs-9999.ebuild b/app-vim/vim-gromacs/vim-gromacs-9999.ebuild index 465c9db1e..018070c67 100644 --- a/app-vim/vim-gromacs/vim-gromacs-9999.ebuild +++ b/app-vim/vim-gromacs/vim-gromacs-9999.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: Exp $ -EAPI=4 +EAPI=5 -inherit git-2 vim-plugin +inherit git-r3 vim-plugin DESCRIPTION="vim plugin: Gromacs file syntax highlighting and some macros" HOMEPAGE="https://github.com/HubLot/vim-gromacs" @@ -23,6 +23,6 @@ VIM_PLUGIN_MESSAGES="filetype" pkg_preinst () { # Remove git files - rm "${D}/usr/share/vim/vimfiles/.gitignore" - rm -r "${D}/usr/share/vim/vimfiles/.git" + rm "${ED}/usr/share/vim/vimfiles/.gitignore" || die + rm -r "${ED}/usr/share/vim/vimfiles/.git" || die } |