pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/editors/vim-share Bump to 6.3.045 for recent security ...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/efe11d3bb307
branches:  trunk
changeset: 487009:efe11d3bb307
user:      adrianp <adrianp%pkgsrc.org@localhost>
date:      Thu Jan 06 20:38:06 2005 +0000

description:
Bump to 6.3.045 for recent security issue

  2672  6.3.001  ":browse split" gives file selection dialog twice
  3913  6.3.002  utf-8 detection in translated help files is wrong
  1891  6.3.003  crash when using console dialog without default choice
  2438  6.3.004  too many hit-enter prompts when searching for long string
  2809  6.3.005  crash when searching with character offset in closed fold
  1566  6.3.006  the current directory is prepended to the ":breakadd" argument
  1755  6.3.007  swap file is not deleted for a "nofile" buffer after ":cd"
  1865  6.3.008  OS/2: can't compile, missing error message
  3670  6.3.009  (after 6.3.006) ":breakadd file" does not match for a symlink
  2450  6.3.010  writing to a named pipe causes an error message for fsync()
  1896  6.3.011  crash when user command completion uses "normal :cmd"
  2882  6.3.012  lalloc(0) error for substitute command with multi-line pattern
 11947  6.3.013  crash when using CTRL-R = in command line uses "normal :cmd"
  1566  6.3.014  default value of 'helplang' is wrong for Chinese and Taiwanese
  1207  6.3.015  the string returned by winrestcmd() may end in garbage
  1735  6.3.016  'define' default had "\s" before #, breaks "[d"
  1364  6.3.017  "9zz" could place the cursor beyond the end of a line
  1844  6.3.018  ":0argadd zero" added the argument after the first one
  1992  6.3.019  crash during startup when compiled for debugging
  1915  6.3.020  "dw" doesn't work right for UTF-8 when 'delcombine' is set
  2822  6.3.021  can't edit file with path separator in trail byte of last char
  6419  6.3.023  when <Space> is remapped abbreviations are not expanded
  2456  6.3.024  missing NUL for strings created with ga_concat()
  3070  6.3.026  setting 'bg' in syncolor.vim may cause endless loop or crash
  7500  6.3.027  VMS: Writing a file may insert extra CR characters
  2128  6.3.028  the BOM marker is written when appending to a file
  2173  6.3.029  crash in syntax highlighting code when inserting a line break
  4579  6.3.030  GTK 2: crash when 'enc' is set to "utf-8" and menus redefined
  1483  6.3.031  pressing Tab when entering a mapping may cause a display error
  2094  6.3.032  with Python 2.3 using threads doesn't work
  1552  6.3.033  mapping ending in two-char command doesn't restart Insert mode
  1618  6.3.034  VMS: crash in RTL when using :help, caused by ? wildcard
  1770  6.3.036  ml_get errors when fold was deleted
  2889  6.3.037  (after 6.3.032) warning for unused variable
  2749  6.3.039  line numbers not updated when inserting a line above window
 18020  6.3.040  window count for a buffer was wrong after error handling
  1760  6.3.042  CTRL-X CTRL-E in Insert mode does not scroll fold correctly
  8053  6.3.043  'hlsearch' highlighting sometimes disappears
 12283  6.3.045  some option values may cause trouble in a modeline

diffstat:

 editors/vim-share/Makefile.common |  17 ++++---
 editors/vim-share/distinfo        |  80 ++++++++++++++++++++++++++++++++++++++-
 2 files changed, 88 insertions(+), 9 deletions(-)

diffs (123 lines):

diff -r 27b702930417 -r efe11d3bb307 editors/vim-share/Makefile.common
--- a/editors/vim-share/Makefile.common Thu Jan 06 18:41:55 2005 +0000
+++ b/editors/vim-share/Makefile.common Thu Jan 06 20:38:06 2005 +0000
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile.common,v 1.38 2005/01/05 11:03:44 cjs Exp $
+# $NetBSD: Makefile.common,v 1.39 2005/01/06 20:38:06 adrianp Exp $
 
 VIM_VERSION=           6.3
-VIM_PATCHLEVEL=                0
+VIM_PATCHLEVEL=                045
 DISTNAME=              vim-${VIM_VERSION}
 CATEGORIES=            editors
 MASTER_SITES=          ftp://ftp.vim.org/pub/editors/vim/unix/ \
@@ -10,12 +10,13 @@
 DIST_SUBDIR=           vim
 EXTRACT_SUFX=          .tar.bz2
 
-##PATCH_SITES+=                ${MASTER_SITES:S/unix/patches/}
-##PATCHFILES!=         jot -s " " -w ${VIM_VERSION}.%03d ${VIM_PATCHLEVEL}
-##SKIP_PATCHES=                
-##.for p in ${SKIP_PATCHES}
-##PATCHFILES:=         ${PATCHFILES:N${VIM_VERSION}.${p}}
-##.endif
+PATCH_SITES=           ftp://ftp.vim.org/pub/editors/vim/patches/${VIM_VERSION}/
+PATCHFILES+=           6.3.001 6.3.002 6.3.003 6.3.004 6.3.005 6.3.006 6.3.007\
+                       6.3.008 6.3.009 6.3.010 6.3.011 6.3.012 6.3.013 6.3.014\
+                       6.3.015 6.3.016 6.3.017 6.3.018 6.3.019 6.3.020 6.3.021\
+                       6.3.023 6.3.024 6.3.026 6.3.027 6.3.028 6.3.029 6.3.030\
+                       6.3.031 6.3.032 6.3.033 6.3.034 6.3.036 6.3.037 6.3.039\
+                       6.3.040 6.3.042 6.3.043 6.3.045
 
 MAINTAINER=            martti%NetBSD.org@localhost
 HOMEPAGE=              http://www.vim.org/
diff -r 27b702930417 -r efe11d3bb307 editors/vim-share/distinfo
--- a/editors/vim-share/distinfo        Thu Jan 06 18:41:55 2005 +0000
+++ b/editors/vim-share/distinfo        Thu Jan 06 20:38:06 2005 +0000
@@ -1,7 +1,85 @@
-$NetBSD: distinfo,v 1.28 2004/06/21 08:23:48 martti Exp $
+$NetBSD: distinfo,v 1.29 2005/01/06 20:38:06 adrianp Exp $
 
 SHA1 (vim/vim-6.3.tar.bz2) = 76f663277140d314ecfafecb0307e832bdbbaf06
 Size (vim/vim-6.3.tar.bz2) = 3699397 bytes
+SHA1 (vim/6.3.001) = 09a75ac41d4c454092b716ff6838768ef8665e5c
+Size (vim/6.3.001) = 2672 bytes
+SHA1 (vim/6.3.002) = 12f439f886151c85b29ab3db58a2fefc88c32ee4
+Size (vim/6.3.002) = 3913 bytes
+SHA1 (vim/6.3.003) = a65e590e48497aedb989fed46dcbcb149f4c3798
+Size (vim/6.3.003) = 1891 bytes
+SHA1 (vim/6.3.004) = 010b948a80976578332fc16a8296e0f0859078c1
+Size (vim/6.3.004) = 2438 bytes
+SHA1 (vim/6.3.005) = 9aaa3c327e3348c5c17ea32bc3689d43ac5fccaf
+Size (vim/6.3.005) = 2809 bytes
+SHA1 (vim/6.3.006) = 9fe6f70ba7ebfe94509037525cc5588cdf402d1c
+Size (vim/6.3.006) = 1566 bytes
+SHA1 (vim/6.3.007) = 9dac94e8da5aa4ee4170126c0e6b159ec1ec3205
+Size (vim/6.3.007) = 1755 bytes
+SHA1 (vim/6.3.008) = a6b6d109acf38dc6f563d164b5eabd0e00f9e58f
+Size (vim/6.3.008) = 1865 bytes
+SHA1 (vim/6.3.009) = 0f9bc4330cacf5229765c248b83ecc71a1f0e873
+Size (vim/6.3.009) = 3670 bytes
+SHA1 (vim/6.3.010) = 8668bb2c08e1c89dee85faef2d61c64287edc92e
+Size (vim/6.3.010) = 2450 bytes
+SHA1 (vim/6.3.011) = 8ba388268773323f242cdc999658e807a0d03940
+Size (vim/6.3.011) = 1896 bytes
+SHA1 (vim/6.3.012) = cd6033a41b70de956a4113dbd6f29c9eed8893cc
+Size (vim/6.3.012) = 2882 bytes
+SHA1 (vim/6.3.013) = 8a66ee66cbcf67fb95b91e010e5f2bdf06b7dace
+Size (vim/6.3.013) = 11947 bytes
+SHA1 (vim/6.3.014) = 3438ee1ec543852a539f1f16b4d7f8c37d1c32b0
+Size (vim/6.3.014) = 1566 bytes
+SHA1 (vim/6.3.015) = 7e6cff03e6e428a906471f930ba15fd3af5cce02
+Size (vim/6.3.015) = 1207 bytes
+SHA1 (vim/6.3.016) = bbb5ce23e394b07e288ae2aab1c48f4b88cc18a9
+Size (vim/6.3.016) = 1735 bytes
+SHA1 (vim/6.3.017) = eca6d058184e0beb5dca8333c9550cf800127ea2
+Size (vim/6.3.017) = 1364 bytes
+SHA1 (vim/6.3.018) = 477f288aad3b16df988875b8f7a4c998a7ce0cc9
+Size (vim/6.3.018) = 1844 bytes
+SHA1 (vim/6.3.019) = a03681db9f12402bc67d52604912e707c317e12e
+Size (vim/6.3.019) = 1992 bytes
+SHA1 (vim/6.3.020) = 76ac9c7a6a9446e555b9fb768f2e6f84f6aff2d8
+Size (vim/6.3.020) = 1915 bytes
+SHA1 (vim/6.3.021) = b00ed5c710ef3bfb517e2d909e8b331f2baae9fb
+Size (vim/6.3.021) = 2822 bytes
+SHA1 (vim/6.3.023) = 7a85db8fba2ba8cbbe8482b3d811bd58c5aac49f
+Size (vim/6.3.023) = 6419 bytes
+SHA1 (vim/6.3.024) = 761ba6711beb4556ff9d2f7d676b549cf98eafaf
+Size (vim/6.3.024) = 2456 bytes
+SHA1 (vim/6.3.026) = 8b3119de38548b81df1fb2d9d717511eecafeb29
+Size (vim/6.3.026) = 3070 bytes
+SHA1 (vim/6.3.027) = 2ce1df5151b1f84731e599bb7fd8313c264ac733
+Size (vim/6.3.027) = 7500 bytes
+SHA1 (vim/6.3.028) = e80fd139422059f69a59dcf77f01b81a5583a15e
+Size (vim/6.3.028) = 2128 bytes
+SHA1 (vim/6.3.029) = 893c33c802f79830278475a313734b225f02d336
+Size (vim/6.3.029) = 2173 bytes
+SHA1 (vim/6.3.030) = d01dc7d392cef1a6661bc05e4859a915e592679a
+Size (vim/6.3.030) = 4579 bytes
+SHA1 (vim/6.3.031) = 23f492500186564660907078e8a2e5c5c4fab3c1
+Size (vim/6.3.031) = 1483 bytes
+SHA1 (vim/6.3.032) = c6079719111ac1804383c620e08a0aa5fce8f3e3
+Size (vim/6.3.032) = 2094 bytes
+SHA1 (vim/6.3.033) = cfa3f49b01bf12e48f7281d4f27dacacd1f7bb04
+Size (vim/6.3.033) = 1552 bytes
+SHA1 (vim/6.3.034) = 05482ed58f6a6b5ee062de585152f1ea00825ed6
+Size (vim/6.3.034) = 1618 bytes
+SHA1 (vim/6.3.036) = 443822a03fc7313e97459a2142a4078103f03b91
+Size (vim/6.3.036) = 1770 bytes
+SHA1 (vim/6.3.037) = b8dba3125202799bf56d5c6e71382e2c4987ee33
+Size (vim/6.3.037) = 2889 bytes
+SHA1 (vim/6.3.039) = 21b8d58ad5e2f6d5ad16e7cd421c6614997c0762
+Size (vim/6.3.039) = 2749 bytes
+SHA1 (vim/6.3.040) = bafa7413ad7af8d8a9cdbfd06a12faf5278ad4e4
+Size (vim/6.3.040) = 18020 bytes
+SHA1 (vim/6.3.042) = 54f7e15ce39b7fcc5408fd11cb406e567fc03be7
+Size (vim/6.3.042) = 1760 bytes
+SHA1 (vim/6.3.043) = 0f158d92782f1b11e6be3b8664c8dd2cff7a0efd
+Size (vim/6.3.043) = 8053 bytes
+SHA1 (vim/6.3.045) = 6354d0a0353055052d4e53c53b2c79e8964cd37a
+Size (vim/6.3.045) = 12283 bytes
 SHA1 (patch-aa) = 226983cd130c91de83f46baa38d18b243bd029c8
 SHA1 (patch-ad) = 305b3f9cd2837482362c0176b8e2025ffb0eb254
 SHA1 (patch-zb) = 3966ea9713cbf5d26072592443080c1884f48e75



Home | Main Index | Thread Index | Old Index