pkgsrc-WIP-changes archive

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

vimb3: Update wip/vimb3 to 3.3.0



Module Name:	pkgsrc-wip
Committed By:	Leonardo Taccari <leot%NetBSD.org@localhost>
Pushed By:	leot
Date:		Tue Nov 6 23:46:16 2018 +0100
Changeset:	fbd242a379dcf674dedc8014bec4c12fc24d403f

Modified Files:
	vimb3/Makefile
	vimb3/distinfo
Removed Files:
	vimb3/patches/patch-src_Makefile

Log Message:
vimb3: Update wip/vimb3 to 3.3.0

Changes:
* Allow to change following webkit settings during runtime
  * allow-file-access-from-file-urls
  * allow-universal-access-from-file-urls
* Added `#define CHECK_WEBEXTENSION_ON_STARTUP 1` to config.def.h to enable
  checks during runtime if the webextension file could be found. Hope that
  this helps user to fix compile/installation issues easier.
* Re-Added support for page marks to jump around within long single pages by
  using names marks.
  Set a marks by `m{a-z}` in normal mode. Jump to marks by `'{a-z}`.
* Re-Added `gf` to show page source (Thanks to Leonardo Taccari) #361.
  Webkit2 does not allow to show tha page in the source view mode so the `gf`
  writes the HTML to a temporary files and opens it in the editor configured
  by `:set editor-command=...`
* New created files in `$XDG_CONFIG_HOME/vimb` are generated with `0600`
  permission to prevent cookies be observed on multi users systems. Existing
  files are not affected by this change. It's a good advice to change the
  permission of all the files in `$XDG_CONFIG_HOME/vimb` to `0600` by
  hand.
* Fixed missing dependency in Makefile which possibly caused broken builds
  (Thanks to Patrick Steinhardt).
* Fixed weird scroll position values shown in scroll indicator on some pages #501.
* Fixed wrong hint label position on xkcd.com #506.
* Fixed wrong hint label position in case of hints within iframes.

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=fbd242a379dcf674dedc8014bec4c12fc24d403f

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 vimb3/Makefile                   |  2 +-
 vimb3/distinfo                   |  9 ++++-----
 vimb3/patches/patch-src_Makefile | 17 -----------------
 3 files changed, 5 insertions(+), 23 deletions(-)

diffs:
diff --git a/vimb3/Makefile b/vimb3/Makefile
index 66d72e51d2..6ad1f77caf 100644
--- a/vimb3/Makefile
+++ b/vimb3/Makefile
@@ -5,7 +5,7 @@ PKGNAME=	${DISTNAME:S/vimb/vimb3/}
 CATEGORIES=	www
 MASTER_SITES=	${MASTER_SITE_GITHUB:=fanglingsu/}
 GITHUB_PROJECT=	vimb
-GITHUB_TAG=	3.2.0
+GITHUB_TAG=	3.3.0
 
 MAINTAINER=	pkgsrc-users%NetBSD.org@localhost
 HOMEPAGE=	https://fanglingsu.github.io/vimb/
diff --git a/vimb3/distinfo b/vimb3/distinfo
index 038b719743..d1d01931e5 100644
--- a/vimb3/distinfo
+++ b/vimb3/distinfo
@@ -1,7 +1,6 @@
 $NetBSD$
 
-SHA1 (vimb-3.2.0.tar.gz) = 92f2d5524de5df5916d20ea92151c05a74851172
-RMD160 (vimb-3.2.0.tar.gz) = fdb9d4aa25a909cda4718de6a563f1504c4935db
-SHA512 (vimb-3.2.0.tar.gz) = 4a2c02f5edabe087839009e352ae741e42a5c903c3b73a27d8936fc6cf83026af43453bb684e1f340ef1e332ca16eef188a38da84fc506d29c61f866f00f03a5
-Size (vimb-3.2.0.tar.gz) = 131034 bytes
-SHA1 (patch-src_Makefile) = 09a533bb7e819b82705208f0cd4dbfe3e59b6733
+SHA1 (vimb-3.3.0.tar.gz) = 32e730b01b12fb647ded33569765947bb75dae50
+RMD160 (vimb-3.3.0.tar.gz) = de57de2e19398e71fc8f7ef5a3f575d7b87291b7
+SHA512 (vimb-3.3.0.tar.gz) = 9bdf89455504ed6fff11d8b33a0c8faa9b84bdb432f1e6ebb4ec6611c29b796ae8dd6ed3536b4e421291d239de603e8a902b2665263b9db91bfcb11204d848a0
+Size (vimb-3.3.0.tar.gz) = 136151 bytes
diff --git a/vimb3/patches/patch-src_Makefile b/vimb3/patches/patch-src_Makefile
deleted file mode 100644
index 9b0aa0e8a9..0000000000
--- a/vimb3/patches/patch-src_Makefile
+++ /dev/null
@@ -1,17 +0,0 @@
-$NetBSD$
-
-Add dependency on scripts.h to input.o to avoid build failure.
-
-From upstream commit d2664c07b5b41293f3786f6c292be6186f8cfb14.
-
---- src/Makefile.orig	2018-06-16 20:47:57.000000000 +0000
-+++ src/Makefile
-@@ -16,6 +16,8 @@ vimb.so: $(OBJ)
- 
- $(OBJ): config.h ../config.mk
- 
-+input.o: scripts/scripts.h
-+
- normal.o: scripts/scripts.h
- 
- setting.o: scripts/scripts.h


Home | Main Index | Thread Index | Old Index