-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use release tarballs from Github tags, because mirror sites are still on 9.0. Refresh patch: - 002-remove_helptags_generation.patch Signed-off-by: Ryan Keane <[email protected]>
- Loading branch information
Showing
2 changed files
with
8 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,19 +8,18 @@ | |
include $(TOPDIR)/rules.mk | ||
|
||
PKG_NAME:=vim | ||
PKG_VERSION:=9.0 | ||
PKG_VERSION:=9.1.0888 | ||
PKG_RELEASE:=1 | ||
VIMVER:=90 | ||
VIMVER:=91 | ||
|
||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 | ||
PKG_SOURCE_URL:=http://ftp.vim.org/pub/vim/unix | ||
PKG_HASH:=a6456bc154999d83d0c20d968ac7ba6e7df0d02f3cb6427fb248660bacfb336e | ||
PKG_SOURCE:=v$(PKG_VERSION).tar.gz | ||
PKG_SOURCE_URL:=https://github.com/vim/vim/archive/refs/tags | ||
PKG_HASH:=skip | ||
PKG_MAINTAINER:=Marko Ratkaj <[email protected]> | ||
PKG_LICENSE:=Vim | ||
PKG_LICENSE_FILES:=LICENSE | ||
PKG_CPE_ID:=cpe:/a:vim:vim | ||
|
||
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)$(VIMVER) | ||
PKG_BUILD_PARALLEL:=1 | ||
|
||
include $(INCLUDE_DIR)/package.mk | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
--- a/runtime/doc/Makefile | ||
+++ b/runtime/doc/Makefile | ||
@@ -345,7 +345,6 @@ all: tags vim.man evim.man vimdiff.man v | ||
@@ -24,7 +24,6 @@ all: tags vim.man evim.man vimdiff.man v | ||
# Use Vim to generate the tags file. Can only be used when Vim has been | ||
# compiled and installed. Supports multiple languages. | ||
# compiled. Supports multiple languages. | ||
vimtags: $(DOCS) | ||
- @$(VIMEXE) --clean -esX -V1 -u doctags.vim | ||
- @$(VIMPROG) --clean -esX -V1 -u doctags.vim | ||
|
||
# Use "doctags" to generate the tags file. Only works for English! | ||
tags: doctags $(DOCS) |