Karsten Hopp 987fd5
To: vim_dev@googlegroups.com
Karsten Hopp 987fd5
Subject: Patch 7.4.872
Karsten Hopp 987fd5
Fcc: outbox
Karsten Hopp 987fd5
From: Bram Moolenaar <Bram@moolenaar.net>
Karsten Hopp 987fd5
Mime-Version: 1.0
Karsten Hopp 987fd5
Content-Type: text/plain; charset=UTF-8
Karsten Hopp 987fd5
Content-Transfer-Encoding: 8bit
Karsten Hopp 987fd5
------------
Karsten Hopp 987fd5
Karsten Hopp 987fd5
Patch 7.4.872
Karsten Hopp 987fd5
Problem:    Not using CI services available.
Karsten Hopp 987fd5
Solution:   Add configuration files for travis and appveyor. (PR #401)
Karsten Hopp 987fd5
Files:      .travis.yml, appveyor.yml, Filelist
Karsten Hopp 987fd5
Karsten Hopp 987fd5
Karsten Hopp 987fd5
*** ../vim-7.4.871/.travis.yml	2015-09-15 19:17:22.019085105 +0200
Karsten Hopp 987fd5
--- .travis.yml	2015-09-15 19:15:43.168128234 +0200
Karsten Hopp 987fd5
***************
Karsten Hopp 987fd5
*** 0 ****
Karsten Hopp 987fd5
--- 1,37 ----
Karsten Hopp 987fd5
+ language: c
Karsten Hopp 987fd5
+ 
Karsten Hopp 987fd5
+ compiler:
Karsten Hopp 987fd5
+   - clang
Karsten Hopp 987fd5
+   - gcc
Karsten Hopp 987fd5
+ 
Karsten Hopp 987fd5
+ env:
Karsten Hopp 987fd5
+   - COVERAGE=yes CFLAGS=--coverage LDFLAGS=--coverage FEATURES=huge
Karsten Hopp 987fd5
+     "CONFOPT='--enable-perlinterp --enable-pythoninterp --enable-python3interp --enable-rubyinterp --enable-luainterp'"
Karsten Hopp 987fd5
+   - COVERAGE=no FEATURES=small CONFOPT=
Karsten Hopp 987fd5
+   - COVERAGE=no FEATURES=tiny  CONFOPT=
Karsten Hopp 987fd5
+ 
Karsten Hopp 987fd5
+ sudo: false
Karsten Hopp 987fd5
+ 
Karsten Hopp 987fd5
+ addons:
Karsten Hopp 987fd5
+   apt:
Karsten Hopp 987fd5
+     packages:
Karsten Hopp 987fd5
+       - lcov
Karsten Hopp 987fd5
+       - libperl-dev
Karsten Hopp 987fd5
+       - python-dev
Karsten Hopp 987fd5
+       - python3-dev
Karsten Hopp 987fd5
+       - liblua5.1-0-dev
Karsten Hopp 987fd5
+       - lua5.1
Karsten Hopp 987fd5
+ 
Karsten Hopp 987fd5
+ before_install:
Karsten Hopp 987fd5
+   - pip install --user cpp-coveralls
Karsten Hopp 987fd5
+ 
Karsten Hopp 987fd5
+ script:
Karsten Hopp 987fd5
+   - NPROC=$(getconf _NPROCESSORS_ONLN)
Karsten Hopp 987fd5
+   - ./configure --with-features=$FEATURES $CONFOPT --enable-fail-if-missing && make -j$NPROC
Karsten Hopp 987fd5
+   - ./src/vim --version
Karsten Hopp 987fd5
+   - make test
Karsten Hopp 987fd5
+ 
Karsten Hopp 987fd5
+ after_success:
Karsten Hopp 987fd5
+   - if [ x"$COVERAGE" = "xyes" ]; then ~/.local/bin/coveralls -b src -x .xs -e src/xxd -e src/if_perl.c --encodings utf-8 latin-1 EUC-KR; fi
Karsten Hopp 987fd5
+ 
Karsten Hopp 987fd5
+ # vim:set sts=2 sw=2 tw=0 et:
Karsten Hopp 987fd5
*** ../vim-7.4.871/appveyor.yml	2015-09-15 19:17:22.027085021 +0200
Karsten Hopp 987fd5
--- appveyor.yml	2015-09-15 19:15:43.168128234 +0200
Karsten Hopp 987fd5
***************
Karsten Hopp 987fd5
*** 0 ****
Karsten Hopp 987fd5
--- 1,15 ----
Karsten Hopp 987fd5
+ version: "{build}"
Karsten Hopp 987fd5
+ 
Karsten Hopp 987fd5
+ before_build:
Karsten Hopp 987fd5
+   - '"C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x64 /release'
Karsten Hopp 987fd5
+ 
Karsten Hopp 987fd5
+ build_script:
Karsten Hopp 987fd5
+   - cd src
Karsten Hopp 987fd5
+   - sed -e "s/\$(LINKARGS2)/\$(LINKARGS2) | sed -e 's#.*\\\\r.*##'/" Make_mvc.mak > Make_mvc2.mak
Karsten Hopp 987fd5
+   - nmake -f Make_mvc2.mak CPU=AMD64 GUI=yes IME=yes MBYTE=yes ICONV=yes DEBUG=no PYTHON_VER=27 DYNAMIC_PYTHON=yes PYTHON=C:\Python27-x64 PYTHON3_VER=34 DYNAMIC_PYTHON3=yes PYTHON3=C:\Python34-x64
Karsten Hopp 987fd5
+   - .\gvim -u NONE -c "redir @a | ver | 0put a | wq!" ver.txt
Karsten Hopp 987fd5
+   - type ver.txt
Karsten Hopp 987fd5
+ 
Karsten Hopp 987fd5
+ test_script:
Karsten Hopp 987fd5
+   - cd testdir
Karsten Hopp 987fd5
+   - nmake -f Make_dos.mak VIMPROG=..\gvim
Karsten Hopp 987fd5
*** ../vim-7.4.871/Filelist	2015-09-01 17:50:32.476494002 +0200
Karsten Hopp 987fd5
--- Filelist	2015-09-15 19:16:22.327714977 +0200
Karsten Hopp 987fd5
***************
Karsten Hopp 987fd5
*** 4,9 ****
Karsten Hopp 987fd5
--- 4,11 ----
Karsten Hopp 987fd5
  # source files for all source archives
Karsten Hopp 987fd5
  SRC_ALL =	\
Karsten Hopp 987fd5
  		.hgignore \
Karsten Hopp 987fd5
+ 		.travis.yml \
Karsten Hopp 987fd5
+ 		appveyor.yml \
Karsten Hopp 987fd5
  		src/README.txt \
Karsten Hopp 987fd5
  		src/arabic.c \
Karsten Hopp 987fd5
  		src/arabic.h \
Karsten Hopp 987fd5
*** ../vim-7.4.871/src/version.c	2015-09-15 19:05:49.250365080 +0200
Karsten Hopp 987fd5
--- src/version.c	2015-09-15 19:17:34.998948148 +0200
Karsten Hopp 987fd5
***************
Karsten Hopp 987fd5
*** 743,744 ****
Karsten Hopp 987fd5
--- 743,746 ----
Karsten Hopp 987fd5
  {   /* Add new patch number below this line */
Karsten Hopp 987fd5
+ /**/
Karsten Hopp 987fd5
+     872,
Karsten Hopp 987fd5
  /**/
Karsten Hopp 987fd5
Karsten Hopp 987fd5
-- 
Karsten Hopp 987fd5
The acknowledged parents of reengineering are Michael Hammer and James Champy.
Karsten Hopp 987fd5
When I say they're the "parents" I don't mean they had sex - and I apologize
Karsten Hopp 987fd5
for making you think about it.  I mean they wrote the best-selling business
Karsten Hopp 987fd5
book _Reengineering the Corporation_, which was published in 1993.
Karsten Hopp 987fd5
   Businesses flocked to reengineering like frat boys to a drunken
Karsten Hopp 987fd5
cheerleader.  (This analogy wasn't necessary, but I'm trying to get my mind
Karsten Hopp 987fd5
off that Hammer and Champy thing.)
Karsten Hopp 987fd5
				(Scott Adams - The Dilbert principle)
Karsten Hopp 987fd5
Karsten Hopp 987fd5
 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
Karsten Hopp 987fd5
///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
Karsten Hopp 987fd5
\\\  an exciting new programming language -- http://www.Zimbu.org        ///
Karsten Hopp 987fd5
 \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///