You are not logged in.

#1 2009-10-21 22:23:34

akuschki
Member
Registered: 2009-10-17
Posts: 40

[solved] vim build failed

Hi
I am trying to build vim because the version in the repo lacks a couple of options I need (x11...). The build fails without a clear error message, below are the last lines before the makepkg -s fails:

patching file src/cleanlint.vim
Reversed (or previously applied) patch detected!  Skipping patch.
1 out of 1 hunk ignored -- saving rejects to file src/cleanlint.vim.rej
patching file src/diff.c
patching file src/edit.c
patching file src/ex_cmds.c
patching file src/ex_cmds2.c
patching file src/ex_docmd.c
patching file src/proto/ex_cmds.pro
patching file src/proto/spell.pro
patching file src/quickfix.c
patching file src/spell.c
patching file src/structs.h
patching file src/term.h
patching file src/vim.h
patching file src/version.c
==> ERROR: Build Failed.
    Aborting...

If the reason is the failed patch is there a way to correct things manually?

This it the (slightly modified) PKGBUILD I am using:

# $Id: PKGBUILD 53395 2009-09-30 20:20:00Z francois $
# Maintainer: tobias [ tobias at archlinux org ]

pkgname=vim
_srcver=7.2
_patchlevel=267
pkgver=${_srcver}.${_patchlevel}
pkgrel=1
pkgdesc='Vi Improved, a highly configurable, improved version of the vi text editor'
arch=(i686 x86_64)
license=('custom:vim')
url="http://www.vim.org"
depends=('gpm' 'coreutils')
makedepends=('wget' 'sed' 'grep' 'gettext' 'perl')
optdepends=('perl:    the runtime provides a view useful perl scripts')
backup=(etc/vimrc)
install=${pkgname}.install
# we need the extra-stuff to get all patches applied smoothly
source=(ftp://ftp.vim.org/pub/vim/unix/vim-${_srcver}.tar.bz2 \
        ftp://ftp.vim.org/pub/vim/extra/vim-${_srcver}-extra.tar.gz \
        ftp://ftp.vim.org/pub/vim/extra/vim-${_srcver}-lang.tar.gz \
        fetch_patches.sh fetch_runtime.sh vimrc archlinux.vim)
md5sums=('f0901284b338e448bfd79ccca0041254' '35e04482f07c57221c9a751aaa3b8dac' \
         'd8884786979e0e520c112faf2e176f05' '6d7e8d7868e8bfaa9a5880cd9c439320' \
         '45c1c3c6aff7de0d8fc2a9d8cd5cec7d' '29125bedc96f2a58c772ee0455a333bc' \
         '10353a61aadc3f276692d0e17db1478e')

build()
{
  _versiondir="vim"$(echo ${_srcver} | sed "s/\.//")
  # pull in patches from vim.org (or the src cache alternatively)
  . ${srcdir}/fetch_patches.sh
  . ${srcdir}/fetch_runtime.sh
  get_patches || return 1
  cd ${srcdir}/${_versiondir}
  sed -i 's|^.*\(#define SYS_.*VIMRC_FILE.*"\) .*$|\1|' src/feature.h
  sed -i 's|^.*\(#define VIMRC_FILE.*"\) .*$|\1|' src/feature.h
  # build party
  ./configure --prefix=/usr --localstatedir=/var/lib/vim --mandir=/usr/share/man \
    --with-compiledby=Arian --with-features=huge \
    --enable-gpm --enable-acl --with-x=yes \
    --enable-multibyte --enable-cscope \
    --enable-perlinterp --enable-pythoninterpr \
    --enable-fontset
    #--with-global-runtime=/usr/share/vim --with-vim-name=vim \
  make || return 1
  make  VIMRCLOC=/etc DESTDIR=${pkgdir} install
  cd ${pkgdir}/usr/bin
  rm ex view          # provided by (n)vi in core
  mv vim vim-normal   # we create a vim-symlink on post_install
  ln -sf vim-normal vim
  # ... make g* related symlinks point directly to the actual binary
  ln -sf vim-normal rview
  ln -sf vim-normal rvim
  ln -sf vim-normal vimdiff

  # delete some manpages
  find ${pkgdir}/usr/share/man -type d -name 'man1' 2> /dev/null | \
   while read mandir; do
    cd ${mandir}
    rm -f ex.1 view.1       # provided by (n)vi
    rm -f evim.1            # this does not make sense in the console version
  done

  _runtimedir="${pkgdir}/usr/share/vim/${_versiondir}/"
  update_runtime
  cd ${srcdir}/${_versiondir}
  install -Dm644 ${srcdir}/vimrc  ${pkgdir}/etc/vimrc
  install -Dm644 ${srcdir}/archlinux.vim  \
                 ${pkgdir}/usr/share/vim/vimfiles/archlinux.vim
  install -dm755 ${pkgdir}/usr/share/licenses/vim
  cd ${pkgdir}/usr/share/licenses/vim
  ln -s ../../vim/${_versiondir}/doc/uganda.txt license.txt
}

Any help appreciated.

Last edited by akuschki (2009-10-22 16:43:34)

Offline

#2 2009-10-22 00:40:49

Allan
Pacman
From: Brisbane, AU
Registered: 2007-06-09
Posts: 11,425
Website

Re: [solved] vim build failed

You may want to look at the "gvim" package if you want X11 support...

Offline

#3 2009-10-22 16:41:51

akuschki
Member
Registered: 2009-10-17
Posts: 40

Re: [solved] vim build failed

thanks, that solved it. Sorry I didn't try that obvious solution myself, I didn't realise that installing gvim would also change the features of the console vim version. I thought those two packages are independent.
Cheers

Offline

Board footer

Powered by FluxBB