diff options
author | Tim Harder <radhermit@gentoo.org> | 2013-06-01 09:25:59 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2013-06-01 09:25:59 +0000 |
commit | 8227c2a62177033b243f1a4dd9ae9e1ca363f4d2 (patch) | |
tree | cc0e1e5a14efff1e728f9a2ccfad74ab4b8b588e /eclass | |
parent | Remove icon from files/ dir and mirror it manually instead. Fixes #471886 (diff) | |
download | gentoo-2-8227c2a62177033b243f1a4dd9ae9e1ca363f4d2.tar.gz gentoo-2-8227c2a62177033b243f1a4dd9ae9e1ca363f4d2.tar.bz2 gentoo-2-8227c2a62177033b243f1a4dd9ae9e1ca363f4d2.zip |
Don't set SRC_URI for live ebuilds.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 5 | ||||
-rw-r--r-- | eclass/vim-plugin.eclass | 8 |
2 files changed, 9 insertions, 4 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index f44721e716c0..0574f3a2bc07 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for eclass directory # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.844 2013/05/31 17:50:33 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.845 2013/06/01 09:25:59 radhermit Exp $ + + 01 Jun 2013; Tim Harder <radhermit@gentoo.org> vim-plugin.eclass: + Don't set SRC_URI for live ebuilds. 31 May 2013; Michał Górny <mgorny@gentoo.org> multilib-build.eclass, python-utils-r1.eclass: diff --git a/eclass/vim-plugin.eclass b/eclass/vim-plugin.eclass index 01e070b3e935..84995f474068 100644 --- a/eclass/vim-plugin.eclass +++ b/eclass/vim-plugin.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/vim-plugin.eclass,v 1.34 2013/01/27 23:59:35 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/vim-plugin.eclass,v 1.35 2013/06/01 09:25:59 radhermit Exp $ # # This eclass simplifies installation of app-vim plugins into # /usr/share/vim/vimfiles. This is a version-independent directory @@ -16,8 +16,10 @@ IUSE="" DEPEND="|| ( >=app-editors/vim-${VIM_PLUGIN_VIM_VERSION} >=app-editors/gvim-${VIM_PLUGIN_VIM_VERSION} )" RDEPEND="${DEPEND}" -SRC_URI="mirror://gentoo/${P}.tar.bz2 - http://dev.gentoo.org/~radhermit/vim/${P}.tar.bz2" +if [[ ${PV} != 9999* ]] ; then + SRC_URI="mirror://gentoo/${P}.tar.bz2 + http://dev.gentoo.org/~radhermit/vim/${P}.tar.bz2" +fi SLOT="0" vim-plugin_src_install() { |