mirror of
https://github.com/vim/vim.git
synced 2025-10-15 07:14:09 -04:00
nsis: Getting the Vim version number via makensis
closes: #18470 Signed-off-by: RestorerZ <restorer@mail2k.ru> Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
committed by
Christian Brabandt
parent
8feaa94e77
commit
fabe9a4c88
1
Filelist
1
Filelist
@@ -641,7 +641,6 @@ SRC_DOS = \
|
|||||||
src/xxd/Make_mvc.mak \
|
src/xxd/Make_mvc.mak \
|
||||||
nsis/auxiliary.nsh \
|
nsis/auxiliary.nsh \
|
||||||
nsis/gvim.nsi \
|
nsis/gvim.nsi \
|
||||||
nsis/gvim_version.nsh \
|
|
||||||
nsis/Makefile \
|
nsis/Makefile \
|
||||||
nsis/Make_mvc.mak \
|
nsis/Make_mvc.mak \
|
||||||
nsis/README.txt \
|
nsis/README.txt \
|
||||||
|
8
Makefile
8
Makefile
@@ -105,7 +105,7 @@ MINOR = 1
|
|||||||
# - Update Vim version number. For a test version in: src/version.h,
|
# - Update Vim version number. For a test version in: src/version.h,
|
||||||
# READMEdir/Contents, MAJOR/MINOR above, VIMMAJOR and VIMMINOR in
|
# READMEdir/Contents, MAJOR/MINOR above, VIMMAJOR and VIMMINOR in
|
||||||
# src/Makefile, README.txt, README.md, src/README.md, READMEdir/README*.txt,
|
# src/Makefile, README.txt, README.md, src/README.md, READMEdir/README*.txt,
|
||||||
# runtime/doc/*.txt and make nsis/gvim_version.nsh.
|
# runtime/doc/*.txt.
|
||||||
# For a minor/major version: src/GvimExt/GvimExt.reg, src/vim.manifest.
|
# For a minor/major version: src/GvimExt/GvimExt.reg, src/vim.manifest.
|
||||||
# - Compile Vim with GTK, Perl, Python, Python3, TCL, Ruby, Lua, Cscope and
|
# - Compile Vim with GTK, Perl, Python, Python3, TCL, Ruby, Lua, Cscope and
|
||||||
# "huge" features. Add MZscheme if you can make it work.
|
# "huge" features. Add MZscheme if you can make it work.
|
||||||
@@ -410,7 +410,7 @@ amisrc: dist prepare
|
|||||||
mv dist/vim$(VERSION)src.tar.gz dist/vim$(VERSION)src.tgz
|
mv dist/vim$(VERSION)src.tar.gz dist/vim$(VERSION)src.tgz
|
||||||
|
|
||||||
# MS-DOS sources
|
# MS-DOS sources
|
||||||
dossrc: dist dist/$(COMMENT_SRC) license nsis/gvim_version.nsh
|
dossrc: dist dist/$(COMMENT_SRC) license
|
||||||
-rm -rf dist/vim$(VERSION)src.zip
|
-rm -rf dist/vim$(VERSION)src.zip
|
||||||
-rm -rf dist/vim
|
-rm -rf dist/vim
|
||||||
mkdir dist/vim
|
mkdir dist/vim
|
||||||
@@ -423,7 +423,6 @@ dossrc: dist dist/$(COMMENT_SRC) license nsis/gvim_version.nsh
|
|||||||
$(SRC_DOS_UNIX) \
|
$(SRC_DOS_UNIX) \
|
||||||
lang/LICENSE.*.txt \
|
lang/LICENSE.*.txt \
|
||||||
lang/README.*.txt \
|
lang/README.*.txt \
|
||||||
nsis/gvim_version.nsh \
|
|
||||||
| (cd dist/vim/$(VIMRTDIR); tar xf -)
|
| (cd dist/vim/$(VIMRTDIR); tar xf -)
|
||||||
mv dist/vim/$(VIMRTDIR)/runtime/* dist/vim/$(VIMRTDIR)
|
mv dist/vim/$(VIMRTDIR)/runtime/* dist/vim/$(VIMRTDIR)
|
||||||
rmdir dist/vim/$(VIMRTDIR)/runtime
|
rmdir dist/vim/$(VIMRTDIR)/runtime
|
||||||
@@ -432,9 +431,6 @@ dossrc: dist dist/$(COMMENT_SRC) license nsis/gvim_version.nsh
|
|||||||
license:
|
license:
|
||||||
cd nsis && $(MAKE) -f Makefile $@
|
cd nsis && $(MAKE) -f Makefile $@
|
||||||
|
|
||||||
nsis/gvim_version.nsh: Makefile
|
|
||||||
cd nsis && $(MAKE) -f Makefile $(@F)
|
|
||||||
|
|
||||||
dosrt: dist dist/$(COMMENT_RT) dosrt_files
|
dosrt: dist dist/$(COMMENT_RT) dosrt_files
|
||||||
-rm -rf dist/vim$(VERSION)rt.zip
|
-rm -rf dist/vim$(VERSION)rt.zip
|
||||||
cd dist && zip -9 -rD -z vim$(VERSION)rt.zip vim <$(COMMENT_RT)
|
cd dist && zip -9 -rD -z vim$(VERSION)rt.zip vim <$(COMMENT_RT)
|
||||||
|
@@ -1,60 +1,12 @@
|
|||||||
#
|
#
|
||||||
# Makefile for MS Windows for create self-installing exe of Vim.
|
# Makefile for MS Windows for create self-installing exe of Vim.
|
||||||
# 2024‐04-05, Restorer, restorer@mail2k.ru
|
# 2025-10-03, Restorer, restorer@mail2k.ru
|
||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
# included common tools
|
# included common tools
|
||||||
!INCLUDE ..\src\auto\nmake\tools.mak
|
!INCLUDE ..\src\auto\nmake\tools.mak
|
||||||
|
|
||||||
# Read MAJOR and MINOR from version.h.
|
|
||||||
!IFNDEF MAJOR
|
|
||||||
! IF ![for /F "tokens=3" %G in \
|
|
||||||
('findstr /RC:"VIM_VERSION_MAJOR[ ^]*[0-9^]" ..\src\version.h') \
|
|
||||||
do @(echo:MAJOR=%G>> .\_major.tmp)]
|
|
||||||
! INCLUDE .\_major.tmp
|
|
||||||
! IF [$(RM) .\_major.tmp]
|
|
||||||
! ENDIF
|
|
||||||
! ELSE
|
|
||||||
MAJOR = 9
|
|
||||||
! ENDIF
|
|
||||||
!ENDIF
|
|
||||||
|
|
||||||
!IFNDEF MINOR
|
|
||||||
! IF ![for /F "tokens=3" %G in \
|
|
||||||
('findstr /RC:"VIM_VERSION_MINOR[ ^]*[0-9^]" ..\src\version.h') \
|
|
||||||
do @(echo:MINOR=%G>> .\_minor.tmp)]
|
|
||||||
! INCLUDE .\_minor.tmp
|
|
||||||
! IF [$(RM) .\_minor.tmp]
|
|
||||||
! ENDIF
|
|
||||||
! ELSE
|
|
||||||
MINOR = 1
|
|
||||||
! ENDIF
|
|
||||||
!ENDIF
|
|
||||||
|
|
||||||
# Read PATCHLEVEL from version.c
|
|
||||||
!IFNDEF PATCHLEVEL
|
|
||||||
! IF ![for /F %G in \
|
|
||||||
('findstr /NBLC:"static int included_patches" ..\src\version.c \
|
|
||||||
^| (set /p "_t=" ^& set /a _t+=2 ^)') do \
|
|
||||||
@$(CMD) $(CMDFLAGS) "for /F "skip=%G delims=, " %H in \
|
|
||||||
(..\src\version.c) do (echo:PATCHLEVEL=%H> .\_patchlvl.tmp & exit /b)"]
|
|
||||||
! INCLUDE .\_patchlvl.tmp
|
|
||||||
! IF [$(RM) .\_patchlvl.tmp]
|
|
||||||
! ENDIF
|
|
||||||
! ELSE
|
|
||||||
PATCHLEVEL = 0
|
|
||||||
! ENDIF
|
|
||||||
!ENDIF
|
|
||||||
|
|
||||||
!IF $(PATCHLEVEL) < 10
|
|
||||||
PATCHLEVEL = 000$(PATCHLEVEL)
|
|
||||||
!ELSEIF $(PATCHLEVEL) < 100
|
|
||||||
PATCHLEVEL = 00$(PATCHLEVEL)
|
|
||||||
!ELSEIF $(PATCHLEVEL) < 1000
|
|
||||||
PATCHLEVEL = 0$(PATCHLEVEL)
|
|
||||||
!ENDIF
|
|
||||||
|
|
||||||
.SUFFIXES :
|
.SUFFIXES :
|
||||||
|
|
||||||
!IFDEF PROGRAMW6432
|
!IFDEF PROGRAMW6432
|
||||||
@@ -119,23 +71,13 @@ all : makeinst
|
|||||||
makeinst : prepare
|
makeinst : prepare
|
||||||
^"$(MKNSIS)" $(MKNSISFLAGS) gvim.nsi $(XX)
|
^"$(MKNSIS)" $(MKNSISFLAGS) gvim.nsi $(XX)
|
||||||
|
|
||||||
prepare : unzipicons gvim_version.nsh license rename
|
prepare : unzipicons license rename
|
||||||
|
|
||||||
unzipicons : icons.zip
|
unzipicons : icons.zip
|
||||||
@ if exist %|fF\nul $(RD) %|fF
|
@ if exist %|fF\nul $(RD) %|fF
|
||||||
@ $(PS) $(PSFLAGS) \
|
@ $(PS) $(PSFLAGS) \
|
||||||
Add-Type -AssemblyName 'System.IO.Compression.FileSystem'; \
|
Add-Type -AssemblyName 'System.IO.Compression.FileSystem'; \
|
||||||
[System.IO.Compression.ZipFile]::ExtractToDirectory(\"$**\", \
|
[System.IO.Compression.ZipFile]::ExtractToDirectory('$**', '.')
|
||||||
\".\")
|
|
||||||
|
|
||||||
gvim_version.nsh : Make_mvc.mak
|
|
||||||
@ 1> $@ echo:^# Generated from Makefile: define the version numbers
|
|
||||||
@ 1>> $@ echo:^!ifndef __GVIM_VER__NSH__
|
|
||||||
@ 1>> $@ echo:^!define __GVIM_VER__NSH__
|
|
||||||
@ 1>> $@ echo:^!define VER_MAJOR $(MAJOR)
|
|
||||||
@ 1>> $@ echo:^!define VER_MINOR $(MINOR)
|
|
||||||
@ 1>> $@ echo:^!define PATCHLEVEL $(PATCHLEVEL)
|
|
||||||
@ 1>> $@ echo:^!endif
|
|
||||||
|
|
||||||
license : ..\lang\LICENSE.*.txt ..\LICENSE
|
license : ..\lang\LICENSE.*.txt ..\LICENSE
|
||||||
!@ $(PS) $(PSFLAGS) \
|
!@ $(PS) $(PSFLAGS) \
|
||||||
@@ -146,7 +88,6 @@ rename :
|
|||||||
@ ..\tools\rename.bat "$(SRC)" "$(DST)" 1> nul
|
@ ..\tools\rename.bat "$(SRC)" "$(DST)" 1> nul
|
||||||
|
|
||||||
clean :
|
clean :
|
||||||
@ if exist .\gvim_version.nsh $(RM) .\gvim_version.nsh
|
|
||||||
@ if exist ..\lang\LICENSE*.nsis.txt $(RM) ..\lang\LICENSE*.nsis.txt
|
@ if exist ..\lang\LICENSE*.nsis.txt $(RM) ..\lang\LICENSE*.nsis.txt
|
||||||
@ if exist .\icons\nul $(RD) .\icons
|
@ if exist .\icons\nul $(RD) .\icons
|
||||||
@ if exist .\gvim??.exe $(RM) .\gvim??.exe
|
@ if exist .\gvim??.exe $(RM) .\gvim??.exe
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
#
|
#
|
||||||
# Makefile for UNIX-like for create self-installing exe of Vim.
|
# Makefile for UNIX-like for create self-installing exe of Vim.
|
||||||
# 15/12/2024, Restorer restorer@mail2k.ru
|
# 2025-10-03, Restorer, restorer@mail2k.ru
|
||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
@@ -51,13 +51,6 @@ ifdef X
|
|||||||
XX := -X"$(X:;=" -X")"
|
XX := -X"$(X:;=" -X")"
|
||||||
endif
|
endif
|
||||||
|
|
||||||
MAJOR != grep -E 'VIM_VERSION_MAJOR\s{2,}' ../src/version.h | \
|
|
||||||
awk '{ printf "%d",$$3 }'
|
|
||||||
MINOR != grep -E 'VIM_VERSION_MINOR\s{2,}' ../src/version.h | \
|
|
||||||
awk '{ printf "%d",$$3 }'
|
|
||||||
PATCH != awk '/number below this line/,/,/' ../src/version.c | \
|
|
||||||
awk 'NR == 3 { printf "%04d",$$1 }' | sed -e 's/[ ,]//g'
|
|
||||||
|
|
||||||
MKNSISFLAGS := -INPUTCHARSET UTF8 $(MKNSISFLAGS)
|
MKNSISFLAGS := -INPUTCHARSET UTF8 $(MKNSISFLAGS)
|
||||||
|
|
||||||
all: makeinst
|
all: makeinst
|
||||||
@@ -65,21 +58,12 @@ all: makeinst
|
|||||||
makeinst: prepare
|
makeinst: prepare
|
||||||
makensis $(MKNSISFLAGS) gvim.nsi $(XX)
|
makensis $(MKNSISFLAGS) gvim.nsi $(XX)
|
||||||
|
|
||||||
prepare: unzipicons gvim_version.nsh license rename
|
prepare: unzipicons license rename
|
||||||
|
|
||||||
unzipicons: icons.zip
|
unzipicons: icons.zip
|
||||||
if test -d `basename $? .zip` ; then rm -rf `basename $? .zip` ; fi
|
if test -d `basename $? .zip` ; then rm -rf `basename $? .zip` ; fi
|
||||||
unzip $?
|
unzip $?
|
||||||
|
|
||||||
gvim_version.nsh: Makefile
|
|
||||||
echo "# Generated from Makefile: define the version numbers" > $@
|
|
||||||
echo "!ifndef __GVIM_VER__NSH__" >> $@
|
|
||||||
echo "!define __GVIM_VER__NSH__" >> $@
|
|
||||||
echo "!define VER_MAJOR $(MAJOR)" >> $@
|
|
||||||
echo "!define VER_MINOR $(MINOR)" >> $@
|
|
||||||
echo "!define PATCHLEVEL $(PATCH)" >> $@
|
|
||||||
echo "!endif" >> $@
|
|
||||||
|
|
||||||
license: ../lang/LICENSE.*.txt ../LICENSE
|
license: ../lang/LICENSE.*.txt ../LICENSE
|
||||||
for lic in $? ; do \
|
for lic in $? ; do \
|
||||||
bn=`basename $$lic .txt` ; \
|
bn=`basename $$lic .txt` ; \
|
||||||
@@ -91,7 +75,6 @@ rename:
|
|||||||
../tools/rename.bat "$(SRC)" "$(DST)"
|
../tools/rename.bat "$(SRC)" "$(DST)"
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
if test -f gvim_version.nsh ; then rm -f gvim_version.nsh ; fi
|
|
||||||
rm -f ../lang/LICENSE*.nsis.txt
|
rm -f ../lang/LICENSE*.nsis.txt
|
||||||
if test -d icons ; then rm -rf icons ; fi
|
if test -d icons ; then rm -rf icons ; fi
|
||||||
if test -f gvim??.exe ; then rm -f gvim??.exe ; fi
|
if test -f gvim??.exe ; then rm -f gvim??.exe ; fi
|
||||||
|
@@ -73,11 +73,18 @@ Unicode true ; !include defaults to UTF-8 after Unicode True since 3.0 Alpha 2
|
|||||||
!define INCLUDE_LIBGCC 1
|
!define INCLUDE_LIBGCC 1
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
!include .\gvim_version.nsh ; for version numbers
|
# Get version numbers
|
||||||
|
!getdllversion "${VIMSRC}\gvim_ole.exe" VimVer_
|
||||||
|
!echo "Vim version MAJOR=${VimVer_1} MINOR=${VimVer_2} PATCHLEVEL=${VimVer_3}"
|
||||||
|
|
||||||
# Definition of Patch for Vim.
|
!ifndef VER_MAJOR
|
||||||
|
!define VER_MAJOR ${VimVer_1}
|
||||||
|
!endif
|
||||||
|
!ifndef VER_MINOR
|
||||||
|
!define VER_MINOR ${VimVer_2}
|
||||||
|
!endif
|
||||||
!ifndef PATCHLEVEL
|
!ifndef PATCHLEVEL
|
||||||
!define PATCHLEVEL 0
|
!define PATCHLEVEL ${VimVer_3}
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
# ----------- No configurable settings below this line -----------
|
# ----------- No configurable settings below this line -----------
|
||||||
|
@@ -1,7 +0,0 @@
|
|||||||
# Generated from Makefile: define the version numbers
|
|
||||||
!ifndef __GVIM_VER__NSH__
|
|
||||||
!define __GVIM_VER__NSH__
|
|
||||||
!define VER_MAJOR 9
|
|
||||||
!define VER_MINOR 1
|
|
||||||
!define PATCHLEVEL 0
|
|
||||||
!endif
|
|
Reference in New Issue
Block a user