diff options
author | 2014-11-26 14:45:22 +0000 | |
---|---|---|
committer | 2014-11-26 14:45:22 +0000 | |
commit | ddab893953382a71b057aba1ba75afbf1b13bddd (patch) | |
tree | 5030e2c73fa566749f9105f895134415d35e1772 /app-misc/vifm | |
parent | Bump to version 0.7.8 (diff) | |
download | gentoo-2-ddab893953382a71b057aba1ba75afbf1b13bddd.tar.gz gentoo-2-ddab893953382a71b057aba1ba75afbf1b13bddd.tar.bz2 gentoo-2-ddab893953382a71b057aba1ba75afbf1b13bddd.zip |
Drop old
(Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key F253DB15)
Diffstat (limited to 'app-misc/vifm')
-rw-r--r-- | app-misc/vifm/ChangeLog | 6 | ||||
-rw-r--r-- | app-misc/vifm/vifm-0.7.1.ebuild | 63 | ||||
-rw-r--r-- | app-misc/vifm/vifm-0.7.4b-r1.ebuild | 80 | ||||
-rw-r--r-- | app-misc/vifm/vifm-0.7.5.ebuild | 84 | ||||
-rw-r--r-- | app-misc/vifm/vifm-0.7.6.ebuild | 85 |
5 files changed, 5 insertions, 313 deletions
diff --git a/app-misc/vifm/ChangeLog b/app-misc/vifm/ChangeLog index cdf8b5b56bf3..fc0b6862ac78 100644 --- a/app-misc/vifm/ChangeLog +++ b/app-misc/vifm/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-misc/vifm # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/vifm/ChangeLog,v 1.45 2014/11/26 14:41:05 nimiux Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/vifm/ChangeLog,v 1.46 2014/11/26 14:45:22 nimiux Exp $ + + 26 Nov 2014; Chema Alonso <nimiux@gentoo.org> -vifm-0.7.1.ebuild, + -vifm-0.7.4b-r1.ebuild, -vifm-0.7.5.ebuild, -vifm-0.7.6.ebuild: + Drop old *vifm-0.7.8 (26 Nov 2014) diff --git a/app-misc/vifm/vifm-0.7.1.ebuild b/app-misc/vifm/vifm-0.7.1.ebuild deleted file mode 100644 index 33b7cc3fde87..000000000000 --- a/app-misc/vifm/vifm-0.7.1.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/vifm/vifm-0.7.1.ebuild,v 1.2 2014/07/15 09:42:05 nimiux Exp $ - -EAPI=4 - -inherit base - -DESCRIPTION="Console file manager with vi(m)-like keybindings" -HOMEPAGE="http://vifm.sourceforge.net/" -SRC_URI="mirror://sourceforge/vifm/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~s390 ~x86" -IUSE="+compatibility +extended-keys +magic vim-plugin vim-syntax" - -DEPEND=" - >=sys-libs/ncurses-5.7-r7 - magic? ( sys-apps/file ) -" -RDEPEND=" - ${DEPEND} - vim-plugin? ( >=app-editors/vim-7.3 ) - vim-syntax? ( || ( app-editors/vim app-editors/gvim ) ) -" - -DOCS=( AUTHORS FAQ NEWS README TODO ) - -src_configure() { - econf \ - $(use_enable compatibility compatibility-mode) \ - $(use_enable extended-keys) \ - $(use_with magic libmagic) -} - -src_install() { - base_src_install - - if use vim-syntax; then - local t - for t in ftdetect ftplugin syntax; do - insinto /usr/share/vim/vimfiles/"${t}" - doins "${S}"/data/vim/"${t}"/"${PN}".vim - done - fi - if use vim-plugin; then - local t - for t in doc plugin; do - insinto /usr/share/vim/vimfiles/"${t}" - doins "${S}"/data/vim/"${t}"/"${PN}".* - done - fi -} - -pkg_postinst() { - elog "To use vim to view the vifm help, copy /usr/share/${P}/vifm.txt" - elog " to ~/.vim/doc/ and run ':helptags ~/.vim/doc' in vim," - elog "then edit ~/.vifm/vifmrc${PV/a/} and set USE_VIM_HELP=1" - elog "" - elog "To use the vifm plugin in vim, copy /usr/share/${P}/vifm.vim to" - elog " /usr/share/vim/vimXX/" -} diff --git a/app-misc/vifm/vifm-0.7.4b-r1.ebuild b/app-misc/vifm/vifm-0.7.4b-r1.ebuild deleted file mode 100644 index 7b322cdcf9f3..000000000000 --- a/app-misc/vifm/vifm-0.7.4b-r1.ebuild +++ /dev/null @@ -1,80 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/vifm/vifm-0.7.4b-r1.ebuild,v 1.2 2014/07/15 09:42:05 nimiux Exp $ - -EAPI=5 - -inherit base vim-doc - -DESCRIPTION="Console file manager with vi(m)-like keybindings" -HOMEPAGE="http://vifm.sourceforge.net/" -SRC_URI="mirror://sourceforge/vifm/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~s390 ~x86" -IUSE="X +extended-keys gtk +magic vim vim-syntax" - -DEPEND=" - >=sys-libs/ncurses-5.7-r7 - magic? ( sys-apps/file ) - gtk? ( x11-libs/gtk+:2 ) - X? ( x11-libs/libX11 ) -" -RDEPEND=" - ${DEPEND} - vim? ( || ( app-editors/vim app-editors/gvim ) ) - vim-syntax? ( || ( app-editors/vim app-editors/gvim ) ) -" - -DOCS=( AUTHORS FAQ NEWS README TODO ) - -src_configure() { - econf \ - $(use_enable extended-keys) \ - $(use_with magic libmagic) \ - $(use_with gtk) \ - $(use_with X X11) -} - -src_install() { - base_src_install - - if use vim; then - local t - for t in doc plugin; do - insinto /usr/share/vim/vimfiles/"${t}" - doins "${S}"/data/vim/"${t}"/"${PN}".* - done - fi - - if use vim-syntax; then - local t - for t in ftdetect ftplugin syntax; do - insinto /usr/share/vim/vimfiles/"${t}" - doins "${S}"/data/vim/"${t}"/"${PN}".vim - done - fi -} - -pkg_postinst() { - if use vim; then - update_vim_helptags - - if [[ -n ${REPLACING_VERSIONS} ]]; then - elog - elog "You don't need to copy or link any files for" - elog " the vim plugin and documentation to work anymore." - elog "If you copied any vifm files to ~/.vim/ manually" - elog " in earlier vifm versions, please delete them." - fi - elog - elog "To use vim in vifm to view the documentation" - elog " edit ~/.vifm/vifmrc and set vimhelp instead of novimhelp" - elog - fi -} - -pkg_postrm() { - use vim && update_vim_helptags -} diff --git a/app-misc/vifm/vifm-0.7.5.ebuild b/app-misc/vifm/vifm-0.7.5.ebuild deleted file mode 100644 index 94c15df8d9b2..000000000000 --- a/app-misc/vifm/vifm-0.7.5.ebuild +++ /dev/null @@ -1,84 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/vifm/vifm-0.7.5.ebuild,v 1.3 2014/07/15 09:42:05 nimiux Exp $ - -EAPI=5 - -inherit base vim-doc - -DESCRIPTION="Console file manager with vi(m)-like keybindings" -HOMEPAGE="http://vifm.sourceforge.net/" -SRC_URI="mirror://sourceforge/vifm/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~s390 ~x86" -IUSE="X +extended-keys gtk +magic vim vim-syntax" - -DEPEND=" - >=sys-libs/ncurses-5.7-r7 - magic? ( sys-apps/file ) - gtk? ( x11-libs/gtk+:2 ) - X? ( x11-libs/libX11 ) -" -RDEPEND=" - ${DEPEND} - vim? ( || ( app-editors/vim app-editors/gvim ) ) - vim-syntax? ( || ( app-editors/vim app-editors/gvim ) ) -" - -DOCS=( AUTHORS FAQ NEWS README TODO ) - -src_configure() { - econf \ - $(use_enable extended-keys) \ - $(use_with magic libmagic) \ - $(use_with gtk) \ - $(use_with X X11) -} - -src_install() { - base_src_install - - if use vim; then - local t - for t in doc plugin; do - insinto /usr/share/vim/vimfiles/"${t}" - doins "${S}"/data/vim/"${t}"/"${PN}".* - done - fi - - if use vim-syntax; then - local t - for t in ftdetect ftplugin syntax; do - insinto /usr/share/vim/vimfiles/"${t}" - doins "${S}"/data/vim/"${t}"/"${PN}".vim - done - fi -} - -src_test() { - emake check -} - -pkg_postinst() { - if use vim; then - update_vim_helptags - - if [[ -n ${REPLACING_VERSIONS} ]]; then - elog - elog "You don't need to copy or link any files for" - elog " the vim plugin and documentation to work anymore." - elog "If you copied any vifm files to ~/.vim/ manually" - elog " in earlier vifm versions, please delete them." - fi - elog - elog "To use vim in vifm to view the documentation" - elog " edit ~/.vifm/vifmrc and set vimhelp instead of novimhelp" - elog - fi -} - -pkg_postrm() { - use vim && update_vim_helptags -} diff --git a/app-misc/vifm/vifm-0.7.6.ebuild b/app-misc/vifm/vifm-0.7.6.ebuild deleted file mode 100644 index 1787e55c6c52..000000000000 --- a/app-misc/vifm/vifm-0.7.6.ebuild +++ /dev/null @@ -1,85 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/vifm/vifm-0.7.6.ebuild,v 1.5 2014/07/15 23:10:35 zlogene Exp $ - -EAPI=5 - -inherit base vim-doc - -DESCRIPTION="Console file manager with vi(m)-like keybindings" -HOMEPAGE="http://vifm.sourceforge.net/" -SRC_URI="mirror://sourceforge/vifm/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc ~s390 x86" -IUSE="X developer +extended-keys gtk +magic vim vim-syntax" - -DEPEND=" - >=sys-libs/ncurses-5.7-r7 - magic? ( sys-apps/file ) - gtk? ( x11-libs/gtk+:2 ) - X? ( x11-libs/libX11 ) -" -RDEPEND=" - ${DEPEND} - vim? ( || ( app-editors/vim app-editors/gvim ) ) - vim-syntax? ( || ( app-editors/vim app-editors/gvim ) ) -" - -DOCS=( AUTHORS FAQ NEWS README TODO ) - -src_configure() { - econf \ - $(use_enable developer) \ - $(use_enable extended-keys) \ - $(use_with magic libmagic) \ - $(use_with gtk) \ - $(use_with X X11) -} - -src_install() { - base_src_install - - if use vim; then - local t - for t in doc plugin; do - insinto /usr/share/vim/vimfiles/"${t}" - doins "${S}"/data/vim/"${t}"/"${PN}".* - done - fi - - if use vim-syntax; then - local t - for t in ftdetect ftplugin syntax; do - insinto /usr/share/vim/vimfiles/"${t}" - doins "${S}"/data/vim/"${t}"/"${PN}".vim - done - fi -} - -src_test() { - emake check -} - -pkg_postinst() { - if use vim; then - update_vim_helptags - - if [[ -n ${REPLACING_VERSIONS} ]]; then - elog - elog "You don't need to copy or link any files for" - elog " the vim plugin and documentation to work anymore." - elog "If you copied any vifm files to ~/.vim/ manually" - elog " in earlier vifm versions, please delete them." - fi - elog - elog "To use vim in vifm to view the documentation" - elog " edit ~/.vifm/vifmrc and set vimhelp instead of novimhelp" - elog - fi -} - -pkg_postrm() { - use vim && update_vim_helptags -} |