It's short enough, I'm not bothering to post a code review. It's mostly the usual stuff, with a few runtime files added, and I've tweaked the code that helps me maintain this a bit.
For those that are curious: Bram often updates the runtime files at the end of a day of patches, but the that change doesn't get a patch designation (or tag) of its own, so I typically exclude that for lack of a version, and just roll it up into the next batch. This change ignores the untagged version when telling me about runtime file changes. Thanks, Danek diff --git a/components/vim/Makefile b/components/vim/Makefile --- a/components/vim/Makefile +++ b/components/vim/Makefile @@ -34,10 +34,10 @@ COMPONENT_SRC= vim-$(COMPONENT_HG_REV) COMPONENT_PROJECT_URL= http://www.vim.org/ COMPONENT_ARCHIVE= vim-$(COMPONENT_HG_REV).tar.bz2 COMPONENT_ARCHIVE_URL= $(EXTERNAL_ARCHIVE_MIRROR)/$(COMPONENT_ARCHIVE) -COMPONENT_ARCHIVE_HASH= sha256:809275aa3c59a658c16e53cc6f61736251201892519fc29721cba97afe54417c +COMPONENT_ARCHIVE_HASH= sha256:08875264e852cc2021e605f26353ba64874064d59dd8ec1ff5fc62265c4be3ac COMPONENT_HG_URL= https://vim.googlecode.com/hg -COMPONENT_HG_REV= v7-3-600 -COMPONENT_HG_REV_OLD= v7-3-600 +COMPONENT_HG_REV= v7-3-684 +COMPONENT_HG_REV_OLD= v7-3-684 include ../../make-rules/prep.mk include ../../make-rules/configure.mk @@ -63,7 +63,7 @@ hgball: hgball-pull hg clone -u $(COMPONENT_HG_REV) $(HGREPODIR) $(TARBALLDIR) rm -rf $(TARBALLDIR)/.hg tar jcf $(COMPONENT_ARCHIVE) $(TARBALLDIR) - hg --cwd $(HGREPODIR) stat -ar --rev $(COMPONENT_HG_REV_OLD):tip runtime src/po + hg --cwd $(HGREPODIR) stat -ar --rev $(COMPONENT_HG_REV_OLD):$(COMPONENT_HG_REV) runtime src/po digest=$$(digest -a sha256 $(COMPONENT_ARCHIVE)); \ /usr/gnu/bin/sed -i \ -e "s/^COMPONENT_ARCHIVE_HASH=.*/COMPONENT_ARCHIVE_HASH= sha256:$$digest/" \ diff --git a/components/vim/vim.p5m b/components/vim/vim.p5m --- a/components/vim/vim.p5m +++ b/components/vim/vim.p5m @@ -732,6 +732,7 @@ file path=usr/share/vim/$(VIMVER)/keymap file path=usr/share/vim/$(VIMVER)/keymap/accents.vim file path=usr/share/vim/$(VIMVER)/keymap/arabic.vim file path=usr/share/vim/$(VIMVER)/keymap/arabic_utf-8.vim +file path=usr/share/vim/$(VIMVER)/keymap/belarusian-jcuken.vim file path=usr/share/vim/$(VIMVER)/keymap/bulgarian-bds.vim file path=usr/share/vim/$(VIMVER)/keymap/bulgarian-phonetic.vim file path=usr/share/vim/$(VIMVER)/keymap/canfr-win.vim @@ -1039,6 +1040,7 @@ file path=usr/share/vim/$(VIMVER)/spell/ file path=usr/share/vim/$(VIMVER)/spell/en.utf-8.sug file path=usr/share/vim/$(VIMVER)/spell/fixdup.vim file path=usr/share/vim/$(VIMVER)/spell/he.vim +file path=usr/share/vim/$(VIMVER)/spell/spell.vim file path=usr/share/vim/$(VIMVER)/spell/yi.vim file path=usr/share/vim/$(VIMVER)/synmenu.vim file path=usr/share/vim/$(VIMVER)/syntax/2html.vim @@ -1062,6 +1064,7 @@ file path=usr/share/vim/$(VIMVER)/syntax file path=usr/share/vim/$(VIMVER)/syntax/antlr.vim file path=usr/share/vim/$(VIMVER)/syntax/apache.vim file path=usr/share/vim/$(VIMVER)/syntax/apachestyle.vim +file path=usr/share/vim/$(VIMVER)/syntax/aptconf.vim file path=usr/share/vim/$(VIMVER)/syntax/arch.vim file path=usr/share/vim/$(VIMVER)/syntax/art.vim file path=usr/share/vim/$(VIMVER)/syntax/asm.vim @@ -1170,6 +1173,7 @@ file path=usr/share/vim/$(VIMVER)/syntax file path=usr/share/vim/$(VIMVER)/syntax/dtd.vim file path=usr/share/vim/$(VIMVER)/syntax/dtml.vim file path=usr/share/vim/$(VIMVER)/syntax/dtrace.vim +file path=usr/share/vim/$(VIMVER)/syntax/dts.vim file path=usr/share/vim/$(VIMVER)/syntax/dylan.vim file path=usr/share/vim/$(VIMVER)/syntax/dylanintr.vim file path=usr/share/vim/$(VIMVER)/syntax/dylanlid.vim @@ -1237,6 +1241,7 @@ file path=usr/share/vim/$(VIMVER)/syntax file path=usr/share/vim/$(VIMVER)/syntax/help.vim file path=usr/share/vim/$(VIMVER)/syntax/hercules.vim file path=usr/share/vim/$(VIMVER)/syntax/hex.vim +file path=usr/share/vim/$(VIMVER)/syntax/hgcommit.vim file path=usr/share/vim/$(VIMVER)/syntax/hitest.vim file path=usr/share/vim/$(VIMVER)/syntax/hog.vim file path=usr/share/vim/$(VIMVER)/syntax/hostconf.vim @@ -1666,7 +1671,8 @@ file path=usr/share/vim/$(VIMVER)/tutor/ file path=usr/share/vim/$(VIMVER)/tutor/tutor.vim file path=usr/share/vim/$(VIMVER)/tutor/tutor.zh.big5 file path=usr/share/vim/$(VIMVER)/tutor/tutor.zh.euc -file path=usr/share/vim/$(VIMVER)/tutor/tutor.zh.utf-8 +file path=usr/share/vim/$(VIMVER)/tutor/tutor.zh_cn.utf-8 +file path=usr/share/vim/$(VIMVER)/tutor/tutor.zh_tw.utf-8 file path=usr/share/vim/$(VIMVER)/vimrc_example.vim link path=usr/bin/rview target=vim link path=usr/bin/rvim target=vim _______________________________________________ userland-discuss mailing list [email protected] http://mail.opensolaris.org/mailman/listinfo/userland-discuss
